diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index e8b8ab2c7f52..5278f6232bd1 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -15,7 +15,7 @@ ] }, "microsoft.dotnet.xharness.cli": { - "version": "1.0.0-prerelease.22270.1", + "version": "1.0.0-prerelease.22358.1", "commands": [ "xharness" ] diff --git a/.github/DEVELOPMENT.md b/.github/DEVELOPMENT.md index c057ddcc4220..3518bbd871c9 100644 --- a/.github/DEVELOPMENT.md +++ b/.github/DEVELOPMENT.md @@ -121,6 +121,13 @@ dotnet tool restore dotnet cake --target=VS-NET6 ``` +You can also run: + +```dotnetcli +dotnet tool restore +dotnet cake --target=VS +``` + _NOTES:_ - _If the IDE doesn't show any Android devices try unloading and reloading the `Sample.Droid-net6` project._ @@ -135,7 +142,7 @@ dotnet build src\DotNet\DotNet.csproj # Builds the rest of Maui .\bin\dotnet\dotnet build Microsoft.Maui.sln # (Windows-only) to launch Visual Studio -dotnet cake --target=VS-DOGFOOD +dotnet cake --target=VS ``` To build & run .NET 6 sample apps, you will also need to use `.\bin\dotnet\dotnet` or just `dotnet` if you've @@ -208,6 +215,76 @@ public static int foo = 2130771968; 5. Restore the commented code in `Directory.Build.targets`. +## What branch should I use? + +- net7.0 + - I want to use the net7.0 sdk and make changes that will be released with the .NET 7 release of MAUI +- net6.0 + - This PR seems like it should go out with a net6.0 service release +- main (start here if you don't know what to use) + - I want to use the net6.0 sdk and make changes that will be released with the .NET 7 release of MAUI + +## Repository projects + +### Samples + ``` +├── Controls +│ ├── samples +│ │ ├── Maui.Controls.Sample +│ │ ├── Maui.Controls.Sample.Sandbox +├── Essentials +│ ├── samples +│ │ ├── Essentials.Sample +├── BlazorWebView +│ ├── samples +│ │ ├── BlazorWinFormsApp +│ │ ├── BlazorWpfApp +``` + +- *Maui.Controls.Sample*: Full gallery sample with all of the controls and features of .NET MAUI +- *Maui.Controls.Sample.Sandbox*: Empty project useful for testing reproductions or use cases +- *Essentials.Sample*: Full gallery demonstrating the library previously known as essentials. These are all the non UI related MAUI APIs. + +### Device Test Projects + +These are tests that will run on an actual device + + ``` +├── Controls +│ ├── test +│ │ ├── Controls.DeviceTests +├── Core +│ ├── test +│ │ ├── Core.DeviceTests +├── Essentials +│ ├── test +│ │ ├── Essentials.DeviceTests +├── BlazorWebView +│ ├── test +│ │ ├── MauiBlazorWebView.DeviceTests +``` + +- *Controls.DeviceTests*: .NET MAUI Controls Visual Runner for running device based xunit tests. This is useful for tests that require XAML features +- *Core.DeviceTests*: .NET MAUI Core Visual Runner for running device based xunit tests. This is for tests that don't require any MAUI Controls based features +- *Essentials.DeviceTests*: Visual Runner running all the .NET MAUI essentials xunit tests. +- *MauiBlazorWebView.DeviceTests*: Visual Runner for BlazorWebView tests. + +### Unit Test Projects + +These are tests that will not run on a device. This is useful for testing device independent logic. + + ``` +├── Controls +│ ├── test +│ │ ├── Controls.Core.UnitTests +├── Core +│ ├── test +│ │ ├── Core.UnitTests +├── Essentials +│ ├── test +│ │ ├── Essentials.UnitTests +``` + ## Stats diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index dfbe0d8b1657..0e0afeff3c2c 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -34,11 +34,10 @@ body: label: Version with bug description: In what version do you see this issue? options: - - Preview 13 - - Preview 14 - - Release Candidate 1 - - Release Candidate 2 - - Release Candidate 3 (current) + - 6.0 Release Candidate 1 or older + - 6.0 Release Candidate 2 + - 6.0 Release Candidate 3 + - 6.0 (current) - Unknown/Other (please specify) validations: required: true diff --git a/.github/workflows/dotnet-format-daily.yml b/.github/workflows/dotnet-format-daily.yml index a87cb9bd77f1..a9a6685bb384 100644 --- a/.github/workflows/dotnet-format-daily.yml +++ b/.github/workflows/dotnet-format-daily.yml @@ -1,5 +1,6 @@ name: Daily code format check on: + workflow_dispatch: schedule: - cron: 0 0 * * * # Every day at midnight (UTC) @@ -11,22 +12,13 @@ jobs: dotnet-format: runs-on: windows-latest steps: - - name: Install dotnet-format - run: dotnet tool install -g dotnet-format - - name: Checkout repo uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} - name: Run dotnet format - id: format - uses: jfversluis/dotnet-format@v1.0.5 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - action: "fix" - #only-changed-files: true # only works for PRs - workspace: "Microsoft.Maui.sln" + run: dotnet format whitespace ./src --folder - name: Commit files if: steps.format.outputs.has-changes == 'true' diff --git a/.nuspec/Microsoft.Maui.Controls.MultiTargeting.targets b/.nuspec/Microsoft.Maui.Controls.MultiTargeting.targets index 4a61874b157e..bfa81e0fadab 100644 --- a/.nuspec/Microsoft.Maui.Controls.MultiTargeting.targets +++ b/.nuspec/Microsoft.Maui.Controls.MultiTargeting.targets @@ -69,7 +69,7 @@ - + Platform\Windows\ @@ -96,38 +96,22 @@ $(DefineConstants);IOS + $(DefineConstants);MACCATALYST;IOS - + $(DefineConstants);TIZEN - - - - - - - - - - + WINDOWS;$(DefineConstants) WINDOWS_UWP;$(DefineConstants) - - - - - - - - - + diff --git a/.nuspec/Microsoft.Maui.Controls.SingleProject.props b/.nuspec/Microsoft.Maui.Controls.SingleProject.props index 5c9e1e424f02..64a7144978c8 100644 --- a/.nuspec/Microsoft.Maui.Controls.SingleProject.props +++ b/.nuspec/Microsoft.Maui.Controls.SingleProject.props @@ -2,10 +2,11 @@ WinExe - MSIX - false + MSIX + true + false true - <_SingleProjectRIDRequired Condition="'$(OutputType)' == 'Exe' or '$(OutputType)' == 'WinExe'">true + <_SingleProjectRIDRequired Condition="'$(OutputType)' == 'WinExe'">true <_SingleProjectRIDSpecified Condition="'$(RuntimeIdentifier)' != '' or '$(RuntimeIdentifiers)' != ''">true diff --git a/.nuspec/Microsoft.Maui.Controls.SingleProject.targets b/.nuspec/Microsoft.Maui.Controls.SingleProject.targets index 350d7877cec1..15f98664a1a3 100644 --- a/.nuspec/Microsoft.Maui.Controls.SingleProject.targets +++ b/.nuspec/Microsoft.Maui.Controls.SingleProject.targets @@ -140,6 +140,7 @@ Condition="'$(WindowsPackageType)' == 'None' and '@(AppxManifest)' != ''"> + <_MauiAppxManifest Include="@(AppxManifest)" /> diff --git a/.nuspec/Microsoft.Maui.Resizetizer.targets b/.nuspec/Microsoft.Maui.Resizetizer.targets index 9de479025ec2..603fa1c19e38 100644 --- a/.nuspec/Microsoft.Maui.Resizetizer.targets +++ b/.nuspec/Microsoft.Maui.Resizetizer.targets @@ -84,9 +84,7 @@ False - <_ResizetizerDefaultInvalidFilenamesErrorMessage> - One or more invalid file names were detected. File names must be lowercase, start and end with a letter character, and contain only alphanumeric characters or underscores: - + <_ResizetizerDefaultInvalidFilenamesErrorMessage>One or more invalid file names were detected. File names must be lowercase, start and end with a letter character, and contain only alphanumeric characters or underscores: @@ -306,7 +304,7 @@ @@ -636,12 +634,13 @@ on "_ValidatePresenceOfAppxManifestItems" and we need to get in before then. --> + DependsOnTargets="MauiGeneratePackageAppxManifest" + Condition="'$(_ResizetizerIsUWPApp)' == 'True' Or '$(_ResizetizerIsWindowsAppSdk)' == 'True'" /> @@ -651,7 +650,7 @@ - + + + <_MauiAppxManifest Remove="@(_MauiAppxManifest)" /> + <_MauiAppxManifest Include="$(_MauiIntermediateManifest)Package.appxmanifest" /> + + + + + + + + + + + <_MauiAppxManifestContents>$([System.IO.File]::ReadAllText('$(_MauiIntermediateManifest)Package.appxmanifest')) + + + + + + + + + + + + + + + + + + <_Parameter1>Microsoft.Maui.ApplicationModel.AppInfo.PackageName + <_Parameter2>@(_MauiAppxManifestIdentity) + + + <_Parameter1>Microsoft.Maui.ApplicationModel.AppInfo.PublisherName + <_Parameter2>@(_MauiAppxManifestPublisher) + + + <_Parameter1>Microsoft.Maui.ApplicationModel.AppInfo.Name + <_Parameter2>@(_MauiAppxManifestDisplayName) + + + <_Parameter1>Microsoft.Maui.ApplicationModel.AppInfo.Version + <_Parameter2>@(_MauiAppxManifestVersion) + + + diff --git a/Directory.Build.props b/Directory.Build.props index 078ff0522111..96db69c03405 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,9 @@ - <_MauiDotNetVersion Condition="'$(_MauiDotNetVersion)' == ''">6.0 + <_MauiDotNetVersionMajor Condition="'$(_MauiDotNetVersionMajor)' == ''">6 + <_MauiDotNetVersionMinor Condition="'$(_MauiDotNetVersionMinor)' == ''">0 + <_MauiDotNetVersion Condition="'$(_MauiDotNetVersion)' == ''">$(_MauiDotNetVersionMajor).$(_MauiDotNetVersionMinor) <_MauiDotNetTfm Condition="'$(_MauiDotNetTfm)' == ''">net$(_MauiDotNetVersion) <_MauiTargetPlatformIdentifier>$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) <_MauiNoTargetPlatform Condition="'$(_MauiTargetPlatformIdentifier)' == ''">True @@ -14,7 +16,7 @@ <_MauiTargetPlatformIsWindows Condition="$(_MauiTargetPlatformIdentifier.Contains('windows')) == 'True'">True <_MauiTargetPlatformIsTizen Condition="'$(_MauiTargetPlatformIdentifier)' == 'tizen'">True - true + true true @@ -27,6 +29,7 @@ true false + true diff --git a/Directory.Build.targets b/Directory.Build.targets index dc0e3527e735..34f4e5c3b0a5 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -64,7 +64,12 @@ - + + + + diff --git a/GitInfo.txt b/GitInfo.txt index 7839c8834842..4c2e8ca7b61f 100644 --- a/GitInfo.txt +++ b/GitInfo.txt @@ -1 +1 @@ -6.0.400-preview.1 +6.0.409 diff --git a/eng/AndroidX.targets b/eng/AndroidX.targets index 9183678db956..8f49a697621f 100644 --- a/eng/AndroidX.targets +++ b/eng/AndroidX.targets @@ -54,7 +54,7 @@ /> - + https://github.com/dotnet/installer - 3fed194c0b277b0ac0986f92401a50dd6c34f43d + c671341ee86ecdafde8791709c37487e3e377ca8 - + https://github.com/dotnet/runtime - a21b9a2dd4c31cf5bd37626562b7612faf21cee6 + 705ec75fc00dc5d62ffeae1b6d5439fd14ada9b4 - + https://github.com/xamarin/xamarin-android - 4c460a89cb070ee8dfd731842f36bc3dc68dc75c + d267a4f16d26dad98259a802fefb6bc12897ad68 - + https://github.com/xamarin/xamarin-macios - ce10c913a2921673b0caedcd268778b46d52c392 + 3c5ccbee4e53c331a4c534c18a7b7e006f0f668a - + https://github.com/xamarin/xamarin-macios - ce10c913a2921673b0caedcd268778b46d52c392 + 3c5ccbee4e53c331a4c534c18a7b7e006f0f668a - + https://github.com/xamarin/xamarin-macios - ce10c913a2921673b0caedcd268778b46d52c392 + 3c5ccbee4e53c331a4c534c18a7b7e006f0f668a - + https://github.com/xamarin/xamarin-macios - ce10c913a2921673b0caedcd268778b46d52c392 + 3c5ccbee4e53c331a4c534c18a7b7e006f0f668a https://github.com/dotnet/emsdk @@ -35,57 +35,57 @@ https://dev.azure.com/microsoft/ProjectReunion/_git/ProjectReunionInternal - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 - + https://github.com/dotnet/aspnetcore - 308378368c1182e98e7af93ed6e66c38f945837e + e8bba19667fae8b6f9cb154d2645d4550f235360 https://github.com/dotnet/templating 3f4da9ced34942d83054e647f3b1d9d7dde281e8 - + https://github.com/dotnet/Microsoft.Maui.Graphics - e15f2d552d851c28771e7fe092895e908395f8a4 + 691c654ff69df33f16f43b390ad6ef9b4ec03e6e - + https://github.com/dotnet/xharness - 9cacd2f874c946a6497110124a2369fb5131c68f + 8fda60c83422bbf6e31690c2d96ab8adb7e60c63 - + https://github.com/dotnet/xharness - 9cacd2f874c946a6497110124a2369fb5131c68f + 8fda60c83422bbf6e31690c2d96ab8adb7e60c63 - + https://github.com/dotnet/xharness - 9cacd2f874c946a6497110124a2369fb5131c68f + 8fda60c83422bbf6e31690c2d96ab8adb7e60c63 diff --git a/eng/Versions.props b/eng/Versions.props index 43c203311a06..01ff4462bed3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -1,42 +1,43 @@ - 6.0.301-rtm.22254.17 + 6.0.400-preview.22356.7 - 6.0.5 + 6.0.7 6.0.0 6.0.1 6.0.0 - 32.0.301 + 32.0.443 - 15.4.303 - 15.4.303 - 12.3.303 - 15.4.303 - 7.0.303 + 15.4.440 + 15.4.440 + 12.3.440 + 15.4.440 + + 7.0.400-preview.1.0 6.0.4 $(MicrosoftNETWorkloadEmscriptenManifest60300PackageVersion) - 1.0.3 + 1.1.2 10.0.22000.194 1.0.3.1 - 6.0.5 - 6.0.5 - 6.0.5 - 6.0.5 - 6.0.5 - 6.0.5 - 6.0.5 - 6.0.5 + 6.0.7 + 6.0.7 + 6.0.7 + 6.0.7 + 6.0.7 + 6.0.7 + 6.0.7 + 6.0.7 - 7.0.0-preview1.22229.1 + 7.0.0-preview1.22302.1 3.3.3 3.3.3 - 6.0.400-preview.1.1367 + 6.0.403 4.5.0 <_MicrosoftWebWebView2Version>1.0.1210.39 @@ -54,9 +55,9 @@ <_HarfBuzzSharpVersion>2.8.2 <_SkiaSharpNativeAssetsVersion>0.0.0-commit.2e12735359928ead60dd08cdf0b983c4e3d4dc56.268 7.0.100-preview.5.22226.1 - 1.0.0-prerelease.22270.1 - 1.0.0-prerelease.22270.1 - 1.0.0-prerelease.22270.1 + 1.0.0-prerelease.22276.1 + 1.0.0-prerelease.22276.1 + 1.0.0-prerelease.22276.1 0.8.1 0.5.13 1.2.0 @@ -64,13 +65,12 @@ - 6.0.300 - - $(DotNetVersionBand) - $(DotNetVersionBand) - $(DotNetVersionBand) - $(DotNetVersionBand) - $(DotNetVersionBand) - $(DotNetVersionBand) + 6.0.400 + 6.0.400 + 6.0.300 + 6.0.300 + 6.0.400 + 6.0.400 + 6.0.400 diff --git a/eng/automation/SignList.xml b/eng/automation/SignList.xml index 505864503fca..1b576315cf58 100644 --- a/eng/automation/SignList.xml +++ b/eng/automation/SignList.xml @@ -32,7 +32,6 @@ - diff --git a/eng/cake/dotnet.cake b/eng/cake/dotnet.cake index 433bdf9b34b0..afb1a420c480 100644 --- a/eng/cake/dotnet.cake +++ b/eng/cake/dotnet.cake @@ -6,8 +6,15 @@ string configuration = GetBuildVariable("configuration", GetBuildVariable("BUILD var localDotnet = GetBuildVariable("workloads", "local") == "local"; var vsVersion = GetBuildVariable("VS", ""); string MSBuildExe = Argument("msbuild", EnvironmentVariable("MSBUILD_EXE", "")); +string TestTFM = Argument("testtfm", ""); +if (TestTFM == "default") + TestTFM = ""; + Exception pendingException = null; +var NuGetOnlyPackages = new string[] { +}; + // Tasks for CI Task("dotnet") @@ -82,9 +89,12 @@ Task("dotnet-build") Task("dotnet-samples") .Does(() => { + var tempDir = PrepareSeparateBuildContext("samplesTest", false); + RunMSBuildWithDotNet("./Microsoft.Maui.Samples.slnf", new Dictionary { ["UseWorkload"] = "true", // ["GenerateAppxPackageOnBuild"] = "true", + ["RestoreConfigFile"] = tempDir.CombineWithFilePath("NuGet.config").FullPath, }); }); @@ -96,15 +106,7 @@ Task("dotnet-templates") var dn = localDotnet ? dotnetPath : "dotnet"; - var templatesTest = GetTempDirectory().Combine("templatesTest"); - - EnsureDirectoryExists(templatesTest); - CleanDirectories(templatesTest.FullPath); - - // Create empty Directory.Build.props/targets - FileWriteText(templatesTest.CombineWithFilePath("Directory.Build.props"), ""); - FileWriteText(templatesTest.CombineWithFilePath("Directory.Build.targets"), ""); - CopyFileToDirectory(File("./NuGet.config"), templatesTest); + var tempDir = PrepareSeparateBuildContext("templatesTest", true); // See: https://github.com/dotnet/project-system/blob/main/docs/design-time-builds.md var designTime = new Dictionary { @@ -120,8 +122,8 @@ Task("dotnet-templates") // Properties that ensure we don't use cached packages, and *only* the empty NuGet.config { "RestoreNoCache", "true" }, // { "GenerateAppxPackageOnBuild", "true" }, - { "RestorePackagesPath", MakeAbsolute(templatesTest.CombineWithFilePath("packages")).FullPath }, - { "RestoreConfigFile", MakeAbsolute(templatesTest.CombineWithFilePath("nuget.config")).FullPath }, + { "RestorePackagesPath", tempDir.Combine("packages").FullPath }, + { "RestoreConfigFile", tempDir.CombineWithFilePath("NuGet.config").FullPath }, // Avoid iOS build warning as error on Windows: There is no available connection to the Mac. Task 'VerifyXcodeVersion' will not be executed { "CustomBeforeMicrosoftCSharpTargets", MakeAbsolute(File("./src/Templates/TemplateTestExtraTargets.targets")).FullPath }, @@ -136,6 +138,12 @@ Task("dotnet-templates") ReplaceTextInFiles($"{dir}/*.csproj", "UseMaui", "UseMauiCore"); ReplaceTextInFiles($"{dir}/*.csproj", "SingleProject", "EnablePreviewMsixTooling"); } }, + { "mauiunpackaged:maui", dir => { + ReplaceTextInFiles($"{dir}/*.csproj", "true", "trueNone"); + } }, + { "mauiblazorunpackaged:maui-blazor", dir => { + ReplaceTextInFiles($"{dir}/*.csproj", "true", "trueNone"); + } }, }; var alsoPack = new [] { @@ -154,10 +162,13 @@ Task("dotnet-templates") var projectName = template.Key.Split(":")[0]; var templateName = template.Key.Split(":")[1]; - projectName = $"{templatesTest}/{projectName}_{type}"; + var framework = string.IsNullOrWhiteSpace(TestTFM) ? "" : $"--framework {TestTFM}"; + + projectName = $"{tempDir}/{projectName}_{type}"; + projectName += string.IsNullOrWhiteSpace(TestTFM) ? "" : $"_{TestTFM.Replace('.', '_')}"; // Create - StartProcess(dn, $"new {templateName} -o \"{projectName}\""); + StartProcess(dn, $"new {templateName} -o \"{projectName}\" {framework}"); // Modify if (template.Value != null) @@ -165,8 +176,11 @@ Task("dotnet-templates") // Enable Tizen ReplaceTextInFiles($"{projectName}/*.csproj", - "", - "$(TargetFrameworks);net6.0-tizen"); + "", + ""); // Build RunMSBuildWithDotNet(projectName, properties, warningsAsError: true, forceDotNetBuild: forceDotNetBuild); @@ -182,7 +196,7 @@ Task("dotnet-templates") try { - CleanDirectories(templatesTest.FullPath); + CleanDirectories(tempDir.FullPath); } catch { @@ -288,11 +302,36 @@ Task("dotnet-pack-library-packs") Download("Microsoft.Maui.Graphics.Win2D.WinUI.Desktop", "MicrosoftMauiGraphicsVersion", "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json", "https://api.nuget.org/v3/index.json"); }); +Task("dotnet-pack-docs") + .WithCriteria(RunPackTarget()) + .Does(() => + { + var tempDir = $"./artifacts/docs-packs-temp"; + EnsureDirectoryExists(tempDir); + CleanDirectories(tempDir); + + var destDir = $"./artifacts/docs-packs"; + EnsureDirectoryExists(destDir); + CleanDirectories(destDir); + + foreach (var nupkg in GetFiles("./artifacts/Microsoft.Maui.*.Ref.*.nupkg")) + { + var d = $"{tempDir}/{nupkg.GetFilename()}"; + Unzip(nupkg, d); + DeleteFiles($"{d}/**/*.pri"); + DeleteFiles($"{d}/**/*.aar"); + CopyDirectory($"{d}/ref", $"{destDir}"); + } + + CleanDirectories(tempDir); + }); + Task("dotnet-pack") .WithCriteria(RunPackTarget()) .IsDependentOn("dotnet-pack-maui") .IsDependentOn("dotnet-pack-additional") - .IsDependentOn("dotnet-pack-library-packs"); + .IsDependentOn("dotnet-pack-library-packs") + .IsDependentOn("dotnet-pack-docs"); Task("dotnet-build-test") .IsDependentOn("dotnet") @@ -439,29 +478,6 @@ bool RunPackTarget() return false; } -string FindMSBuild() -{ - if (!string.IsNullOrWhiteSpace(MSBuildExe)) - return MSBuildExe; - - if (IsRunningOnWindows()) - { - var vsInstallation = VSWhereLatest(new VSWhereLatestSettings { Requires = "Microsoft.Component.MSBuild", IncludePrerelease = true }); - if (vsInstallation != null) - { - var path = vsInstallation.CombineWithFilePath(@"MSBuild\Current\Bin\MSBuild.exe"); - if (FileExists(path)) - return path.FullPath; - - path = vsInstallation.CombineWithFilePath(@"MSBuild\15.0\Bin\MSBuild.exe"); - if (FileExists(path)) - return path.FullPath; - } - } - return "msbuild"; -} - - Dictionary GetDotNetEnvironmentVariables() { Dictionary envVariables = new Dictionary(); @@ -497,7 +513,7 @@ void SetDotNetEnvironmentVariables() SetEnvironmentVariable("PATH", dotnet, prepend: true); // Get "full" .binlog in Project System Tools - if (HasArgument("debug")) + if (HasArgument("dbg")) SetEnvironmentVariable("MSBuildDebugEngine", "1"); } @@ -571,83 +587,45 @@ void RunMSBuildWithDotNet( if(localDotnet) SetDotNetEnvironmentVariables(); - // If we're not on Windows, use ./bin/dotnet/dotnet - if (useDotNetBuild) - { - var msbuildSettings = new DotNetCoreMSBuildSettings() - .SetConfiguration(configuration) - .SetMaxCpuCount(0) - .WithTarget(target) - .EnableBinaryLogger(binlog); + var msbuildSettings = new DotNetCoreMSBuildSettings() + .SetConfiguration(configuration) + .SetMaxCpuCount(0) + .WithTarget(target) + .EnableBinaryLogger(binlog); - if (warningsAsError) - { - msbuildSettings.TreatAllWarningsAs(MSBuildTreatAllWarningsAs.Error); - } + if (warningsAsError) + { + msbuildSettings.TreatAllWarningsAs(MSBuildTreatAllWarningsAs.Error); + } - if (properties != null) + if (properties != null) + { + foreach (var property in properties) { - foreach (var property in properties) - { - msbuildSettings.WithProperty(property.Key, property.Value); - } + msbuildSettings.WithProperty(property.Key, property.Value); } + } - var dotnetBuildSettings = new DotNetCoreBuildSettings - { - MSBuildSettings = msbuildSettings, - }; - - dotnetBuildSettings.ArgumentCustomization = args => - { - if (!restore) - args.Append("--no-restore"); - - if (!string.IsNullOrEmpty(targetFramework)) - args.Append($"-f {targetFramework}"); - - return args; - }; - - if (localDotnet) - dotnetBuildSettings.ToolPath = dotnetPath; + var dotnetBuildSettings = new DotNetCoreBuildSettings + { + MSBuildSettings = msbuildSettings, + }; - DotNetCoreBuild(sln, dotnetBuildSettings); - } - else + dotnetBuildSettings.ArgumentCustomization = args => { - // Otherwise we need to run MSBuild for WinUI support - var msbuild = FindMSBuild(); - Information("Using MSBuild: {0}", msbuild); - var msbuildSettings = new MSBuildSettings { ToolPath = msbuild } - .SetConfiguration(configuration) - .SetMaxCpuCount(0) - .WithTarget(target) - .EnableBinaryLogger(binlog); - - if (warningsAsError) - { - msbuildSettings.WarningsAsError = true; - } - if (restore) - { - msbuildSettings.WithRestore(); - } + if (!restore) + args.Append("--no-restore"); + if (!string.IsNullOrEmpty(targetFramework)) - { - msbuildSettings.WithProperty("TargetFramework", targetFramework); - } + args.Append($"-f {targetFramework}"); - if (properties != null) - { - foreach (var property in properties) - { - msbuildSettings.WithProperty(property.Key, property.Value); - } - } + return args; + }; - MSBuild(sln, msbuildSettings); - } + if (localDotnet) + dotnetBuildSettings.ToolPath = dotnetPath; + + DotNetCoreBuild(sln, dotnetBuildSettings); } void RunTestWithLocalDotNet(string csproj) @@ -670,3 +648,34 @@ void RunTestWithLocalDotNet(string csproj) ArgumentCustomization = args => args.Append($"-bl:{binlog}") }); } + +DirectoryPath PrepareSeparateBuildContext(string dirName, bool generateDirectoryProps = false) +{ + var dir = GetTempDirectory().Combine(dirName); + EnsureDirectoryExists(dir); + CleanDirectories(dir.FullPath); + + var nugetOnly = dir.Combine("nuget-only"); + EnsureDirectoryExists(nugetOnly); + CleanDirectories(nugetOnly.FullPath); + + CopyFileToDirectory(File("./NuGet.config"), dir); + var config = dir.CombineWithFilePath("NuGet.config"); + + foreach (var pattern in NuGetOnlyPackages) + { + CopyFiles($"./artifacts/{pattern}", nugetOnly, false); + } + + // Add a specific folder for nuget-only packages + ReplaceTextInFiles( + config.FullPath, + $"", + $""); + + // Create empty Directory.Build.props/targets + FileWriteText(dir.CombineWithFilePath("Directory.Build.props"), ""); + FileWriteText(dir.CombineWithFilePath("Directory.Build.targets"), ""); + + return MakeAbsolute(dir); +} diff --git a/eng/devices/android.cake b/eng/devices/android.cake index 180536e67092..83296c895272 100644 --- a/eng/devices/android.cake +++ b/eng/devices/android.cake @@ -32,6 +32,10 @@ bool DEVICE_BOOT_WAIT = Argument("wait", true); var ANDROID_SDK_ROOT = GetAndroidSDKPath(); SetEnvironmentVariable("PATH", $"{ANDROID_SDK_ROOT}/tools/bin", prepend: true); +SetEnvironmentVariable("PATH", $"{ANDROID_SDK_ROOT}/cmdline-tools/5.0/bin", prepend: true); +SetEnvironmentVariable("PATH", $"{ANDROID_SDK_ROOT}/cmdline-tools/7.0/bin", prepend: true); +SetEnvironmentVariable("PATH", $"{ANDROID_SDK_ROOT}/cmdline-tools/latest/bin", prepend: true); + SetEnvironmentVariable("PATH", $"{ANDROID_SDK_ROOT}/platform-tools", prepend: true); SetEnvironmentVariable("PATH", $"{ANDROID_SDK_ROOT}/emulator", prepend: true); @@ -42,7 +46,10 @@ Information("Build Configuration: {0}", CONFIGURATION); var avdSettings = new AndroidAvdManagerToolSettings { SdkRoot = ANDROID_SDK_ROOT }; var adbSettings = new AdbToolSettings { SdkRoot = ANDROID_SDK_ROOT }; -var emuSettings = new AndroidEmulatorToolSettings { SdkRoot = ANDROID_SDK_ROOT, ArgumentCustomization = args => args.Append("-no-window") }; +var emuSettings = new AndroidEmulatorToolSettings { SdkRoot = ANDROID_SDK_ROOT }; + +if (IsCIBuild()) + emuSettings.ArgumentCustomization = args => args.Append("-no-window"); AndroidEmulatorProcess emulatorProcess = null; diff --git a/eng/package.ps1 b/eng/package.ps1 index ac0be1097351..519ce179c975 100644 --- a/eng/package.ps1 +++ b/eng/package.ps1 @@ -9,8 +9,11 @@ Write-Host "MSBUILD_EXE: $env:MSBUILD_EXE" $artifacts = Join-Path $PSScriptRoot ../artifacts $logsDirectory = Join-Path $artifacts logs -$sln = Join-Path $PSScriptRoot ../Microsoft.Maui.Packages.slnf -$slnMac = Join-Path $PSScriptRoot ../Microsoft.Maui.Packages-mac.slnf +if ($IsWindows) { + $sln = Join-Path $PSScriptRoot ../Microsoft.Maui.Packages.slnf +} else { + $sln = Join-Path $PSScriptRoot ../Microsoft.Maui.Packages-mac.slnf +} # Full path to dotnet folder $dotnet = Join-Path $PSScriptRoot ../bin/dotnet/ @@ -23,104 +26,26 @@ if (Test-Path -Path $dotnet) { $dotnet = (Get-Item $dotnet).FullName -if ($IsWindows) +$oldPATH=$env:PATH +$oldDOTNET_ROOT=$env:DOTNET_ROOT +try { - if (-not $msbuild) - { - $msbuild = $env:MSBUILD_EXE - } - - if (-not $msbuild) - { - # If MSBuild path isn't specified, use the standard location of 'vswhere' to determine an appropriate MSBuild to use. - # Learn more about VSWhere here: https://github.com/microsoft/vswhere/wiki/Find-MSBuild - $msbuild = & "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -prerelease -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe - - if (-not $msbuild) - { - throw 'Could not locate MSBuild automatically. Set the $msbuild parameter of this script to provide a location.' - } - Write-Host "Found MSBuild at ${msbuild}" - } - - # NOTE: I've not found a better way to do this - # see: https://github.com/PowerShell/PowerShell/issues/3316 - $oldDOTNET_INSTALL_DIR=$env:DOTNET_INSTALL_DIR - $oldDOTNET_ROOT=$env:DOTNET_ROOT - $oldDOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR=$env:DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR - $oldDOTNET_MULTILEVEL_LOOKUP=$env:DOTNET_MULTILEVEL_LOOKUP - $oldMSBuildEnableWorkloadResolver=$env:MSBuildEnableWorkloadResolver - $oldPATH=$env:PATH - try - { - $env:DOTNET_INSTALL_DIR=$dotnet - - # This tells .NET to use the bootstrapped runtime - $env:DOTNET_ROOT=$dotnet - - # This tells MSBuild to load the SDK from the directory of the bootstrapped SDK - $env:DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR=$env:DOTNET_ROOT - - # This tells .NET not to go looking for .NET in other places - $env:DOTNET_MULTILEVEL_LOOKUP=0 - - # This enables workload support inside the IDE - $env:MSBuildEnableWorkloadResolver=$true - - # Put our local dotnet.exe on PATH first so Visual Studio knows which one to use - $env:PATH=($dotnet + [IO.Path]::PathSeparator + $env:PATH) - - # Have to build the solution first so the xbf files are there for pack - & $msbuild $sln ` - /p:configuration=$configuration ` - /p:SymbolPackageFormat=snupkg ` - /restore ` - /t:Build ` - /p:Packing=true ` - /bl:"$logsDirectory/maui-build-$configuration.binlog" - if (!$?) { throw "Build .NET MAUI failed." } - - & $msbuild $sln ` - /p:configuration=$configuration ` - /p:SymbolPackageFormat=snupkg ` - /t:Pack ` - /p:Packing=true ` - /bl:"$logsDirectory/maui-pack-$configuration.binlog" - if (!$?) { throw "Pack .NET MAUI failed." } - } - finally - { - $env:DOTNET_INSTALL_DIR = $oldDOTNET_INSTALL_DIR - $env:DOTNET_ROOT=$oldDOTNET_ROOT - $env:DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR=$oldDOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR - $env:DOTNET_MULTILEVEL_LOOKUP=$oldDOTNET_MULTILEVEL_LOOKUP - $env:MSBuildEnableWorkloadResolver=$oldMSBuildEnableWorkloadResolver - $env:PATH=$oldPATH - } + # Put our local dotnet on $PATH + $env:PATH=($dotnet + [IO.Path]::PathSeparator + $env:PATH) + $dotnet_tool = Join-Path $dotnet dotnet + + # This tells .NET to use the bootstrapped runtime + $env:DOTNET_ROOT=$dotnet + + # Build with ./bin/dotnet/dotnet + & $dotnet_tool pack $sln ` + -c:$configuration ` + -p:SymbolPackageFormat=snupkg ` + -bl:$logsDirectory/maui-pack-$configuration.binlog + if (!$?) { throw "Pack failed." } } -else +finally { - $oldPATH=$env:PATH - $oldDOTNET_ROOT=$env:DOTNET_ROOT - try - { - # Put our local dotnet on $PATH - $env:PATH=($dotnet + [IO.Path]::PathSeparator + $env:PATH) - $dotnet_tool = Join-Path $dotnet dotnet - - # This tells .NET to use the bootstrapped runtime - $env:DOTNET_ROOT=$dotnet - - # Build with ./bin/dotnet/dotnet - & $dotnet_tool pack $slnMac ` - -c:$configuration ` - -p:SymbolPackageFormat=snupkg ` - -bl:$logsDirectory/maui-pack-$configuration.binlog - if (!$?) { throw "Pack failed." } - } - finally - { - $env:PATH=$oldPATH - $env:DOTNET_ROOT=$oldDOTNET_ROOT - } + $env:PATH=$oldPATH + $env:DOTNET_ROOT=$oldDOTNET_ROOT } diff --git a/eng/pipelines/common/insertion.yml b/eng/pipelines/common/insertion.yml index a0a8e58abb3e..38348463e0d8 100644 --- a/eng/pipelines/common/insertion.yml +++ b/eng/pipelines/common/insertion.yml @@ -21,7 +21,7 @@ stages: - stage: sdk_insertion displayName: 'SDK Insertion' dependsOn: nuget_signing - condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') )))) + condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/net6.0'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') ))))) jobs: - template: sdk-insertion.yml parameters: @@ -31,7 +31,7 @@ stages: - stage: sbom displayName: 'Software Bill of Materials' dependsOn: nuget_signing - condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') )))) + condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/net6.0'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') ))))) jobs: - template: compliance/sbom/job.v1.yml@xamarin-templates parameters: @@ -39,4 +39,4 @@ stages: artifactMap: [ nuget/signed ] # Use artifacts that match the filter from the signed directory and not the top-level directory for the nuget artifact packageName: 'Microsoft Maui' packageFilter: '*.msi;*.nupkg' - condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') )))) + condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/net6.0'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') ))))) diff --git a/eng/pipelines/common/localization-handback.yml b/eng/pipelines/common/localization-handback.yml index 38289e8bb571..6ff96f8d14d2 100644 --- a/eng/pipelines/common/localization-handback.yml +++ b/eng/pipelines/common/localization-handback.yml @@ -14,13 +14,31 @@ stages: persistCredentials: true clean: true + - powershell: | + $srcBranch = $(Build.SourceBranch) + Write-Host "Extracting branch name from $srcBranch..." + if ("$srcBranch" -eq "refs/heads/loc") { + $baseBranchName = "main" + $locBranchName = "loc" + } elseif ("$srcBranch".StartsWith("refs/heads/loc-")) { + $baseBranchName = "$srcBranch".SubString("refs/heads/loc-".Length) + $locBranchName = "loc-$baseBranchName" + } else { + throw "Invalid branch name $srcBranch." + } + Write-Host "Using base branch: $baseBranchName" + Write-Host "Using loc branch: $locBranchName" + Write-Host "##vso[task.setvariable variable=LOC_BASE_BRANCH_NAME;]$baseBranchName" + Write-Host "##vso[task.setvariable variable=LOC_BRANCH_NAME;]$locBranchName" + displayName: 'Extract branch name variables' + - powershell: | #-- Import Invoke-Git Module function Import-Module $(Build.SourcesDirectory)\eng\automation\scripts\Invoke-Git.psm1 -Force -DisableNameChecking git config user.email "vs-mobiletools-engineering-service2@microsoft.com" git config user.name "VS Mobile Engineering Serice Account" - Invoke-Git checkout main - Invoke-Git merge origin/$(LocBranch) --no-commit + Invoke-Git checkout $(LOC_BASE_BRANCH_NAME) + Invoke-Git merge origin/$(LOC_BRANCH_NAME) --no-commit displayName: 'Merge loc Branch' - task: cesve.one-loc-build.one-loc-build.OneLocBuild@2 @@ -44,7 +62,7 @@ stages: #--Clear Stage Invoke-Git reset HEAD -- . #-- Create new branch - $branchName = "$(LocBranchPrefix)/$(new-guid)" + $branchName = "$(LocBranchPrefix)/$(LOC_BASE_BRANCH_NAME)_$(new-guid)" Invoke-Git checkout -B ${branchName} Write-Host ("##vso[task.setvariable variable=HANDBACK_BRANCH_NAME;]$branchName") #-- Stage Build Changes @@ -64,7 +82,7 @@ stages: $payload=@{ title = "[LOC_HB] checkin of localized string files" head = "$(HANDBACK_BRANCH_NAME)" - base = "main" + base = "$(LOC_BASE_BRANCH_NAME)" maintainer_can_modify = $true } diff --git a/eng/pipelines/common/localization-handoff.yml b/eng/pipelines/common/localization-handoff.yml index c026de5a823b..bb1f34b07bdf 100644 --- a/eng/pipelines/common/localization-handoff.yml +++ b/eng/pipelines/common/localization-handoff.yml @@ -2,7 +2,7 @@ stages: - stage: localization_handoff displayName: Localization Handoff dependsOn: [] - condition: and(succeeded(), eq(variables.isMainBranch, true)) + condition: and(succeeded(), eq(variables.isLocHandoffBranch, true)) jobs: - job : generate_lci diff --git a/eng/pipelines/common/pack.yml b/eng/pipelines/common/pack.yml index 014269f3bf10..98b485584bfd 100644 --- a/eng/pipelines/common/pack.yml +++ b/eng/pipelines/common/pack.yml @@ -32,6 +32,7 @@ steps: - ${{ if eq(parameters.platform, 'Windows') }}: - pwsh: ./build.ps1 --target=dotnet-diff --configuration="Release" --verbosity=diagnostic displayName: 'Diff .NET Maui artifacts with NuGet' + # artifacts - task: CopyFiles@2 condition: always() displayName: 'Copy files to staging' @@ -42,6 +43,7 @@ steps: artifacts/vs-workload.props eng/automation/SignList.xml !artifacts/library-packs/** + !artifacts/docs-packs/** TargetFolder: $(build.artifactstagingdirectory) flattenFolders: true - task: CopyFiles@2 @@ -66,21 +68,19 @@ steps: displayName: publish artifacts inputs: ArtifactName: ${{ parameters.artifact }} - - task: DeleteFiles@1 - inputs: - SourceFolder: $(build.artifactstagingdirectory) - Contents: '**/*' - - task: CopyFiles@2 - condition: always() - displayName: 'Copy library packs to staging' - inputs: - Contents: | - artifacts/library-packs/** - TargetFolder: $(build.artifactstagingdirectory) - flattenFolders: true + # library-packs - task: PublishBuildArtifacts@1 condition: always() displayName: publish library packs artifacts inputs: + PathToPublish: artifacts/library-packs ArtifactName: ${{ parameters.libraryPacksArtifact }} + # xml-docs + - ${{ if eq(parameters.platform, 'Windows') }}: + - task: PublishBuildArtifacts@1 + condition: always() + displayName: publish library packs artifacts + inputs: + PathToPublish: artifacts/docs-packs + ArtifactName: xml-docs diff --git a/eng/pipelines/common/sign.yml b/eng/pipelines/common/sign.yml index 6f9b784f5afd..93a0088d6513 100644 --- a/eng/pipelines/common/sign.yml +++ b/eng/pipelines/common/sign.yml @@ -12,7 +12,7 @@ stages: signedArtifactName: nuget signedArtifactPath: signed displayName: Sign Phase - condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') )))) + condition: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/net6.0'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') ))))) - template: nuget-msi-convert/job/v2.yml@xamarin-templates parameters: diff --git a/eng/pipelines/common/variables.yml b/eng/pipelines/common/variables.yml index 4ae58563f859..dbba305b3b15 100644 --- a/eng/pipelines/common/variables.yml +++ b/eng/pipelines/common/variables.yml @@ -9,22 +9,25 @@ variables: value: 5.0.201 - name: LocBranchPrefix value: 'loc-hb' -- name: LocBranch - value: 'loc' - name: isMainBranch value: $[eq(variables['Build.SourceBranch'], 'refs/heads/main')] - name: isLocBranch - value: $[eq(variables['Build.SourceBranch'], 'refs/heads/loc')] + value: $[or(eq(variables['Build.SourceBranch'], 'refs/heads/loc'), startsWith(variables['Build.SourceBranch'], 'refs/heads/loc-'))] - name: isTargetMainBranch value: $[eq(variables['System.PullRequest.TargetBranch'], 'refs/heads/main')] -- name: isTargetLocBranch - value: $[eq(variables['System.PullRequest.TargetBranch'], 'refs/heads/loc')] - name: isLocPRBranch value: $[startsWith(variables['System.PullRequest.SourceBranch'], 'loc-hb')] - name: isPullRequest value: $[eq(variables['Build.Reason'], 'PullRequest')] +- name: isLocHandoffBranch + value: $[in(variables['Build.SourceBranch'], 'refs/heads/net6.0', 'refs/heads/net7.0', 'refs/heads/main')] - name: signingCondition - value: and(succeeded(), or(eq(variables['Sign'], 'true'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(startsWith(variables['Build.SourceBranch'],'refs/tags/'), startsWith(variables['Build.SourceBranch'],'refs/heads/release/') )))) + value: $[or( + eq(variables['Sign'], 'true'), + in(variables['Build.SourceBranch'], 'refs/heads/net6.0', 'refs/heads/net7.0', 'refs/heads/main'), + startsWith(variables['Build.SourceBranch'], 'refs/tags/'), + startsWith(variables['Build.SourceBranch'], 'refs/heads/release/') + )] # Common Agent Pools in use - name: LogDirectory value: $(Build.ArtifactStagingDirectory)/logs diff --git a/eng/pipelines/handlers.yml b/eng/pipelines/handlers.yml index 29a9a93ac7ac..f26466c4c0f7 100644 --- a/eng/pipelines/handlers.yml +++ b/eng/pipelines/handlers.yml @@ -73,14 +73,14 @@ parameters: vmImage: $(windowsNet6VmImage) bootsAndroid: $(Android.Msi) bootsiOS: $(iOS.Msi) - artifact: net6-windows + artifact: build-windows - name: macOS poolName: $(macOSXNet6VmPool) vmImage: $(macOSXNet6VmImage) bootsAndroid: $(Android.Pkg) bootsiOS: $(iOS.Pkg) bootsMacCatalyst: $(MacCatalyst.Pkg) - artifact: net6-macos + artifact: build-macos - name: PackPlatforms type: object default: @@ -97,6 +97,13 @@ parameters: bootsiOS: $(iOS.Pkg) bootsMacCatalyst: $(MacCatalyst.Pkg) artifact: nuget-macos + - name: TestTargetFrameworks + type: object + default: + - name: default + tfm: default + - name: net6 + tfm: net6.0 resources: repositories: @@ -114,7 +121,7 @@ resources: stages: - stage: build_net6 - displayName: Build .NET 6 + displayName: Build .NET MAUI dependsOn: [] jobs: - ${{ each BuildPlatform in parameters.BuildPlatforms }}: @@ -170,7 +177,7 @@ stages: ArtifactName: ${{ BuildPlatform.artifact }} - stage: pack_net6 - displayName: Pack .NET 6 + displayName: Pack .NET MAUI dependsOn: [] jobs: - ${{ each PackPlatform in parameters.PackPlatforms }}: @@ -196,7 +203,7 @@ stages: artifact: ${{ PackPlatform.artifact }} - stage: samples_net6 - displayName: Build .NET 6 Samples + displayName: Build .NET MAUI Samples dependsOn: pack_net6 jobs: - ${{ each BuildPlatform in parameters.BuildPlatforms }}: @@ -245,7 +252,7 @@ stages: DOTNET_TOKEN: $(dotnetbuilds-internal-container-read-token) PRIVATE_BUILD: $(PrivateBuild) - pwsh: ./build.ps1 --target=dotnet-samples --configuration="${{ BuildConfiguration }}" --verbosity=diagnostic - displayName: 'Build .NET 6 Samples' + displayName: 'Build .NET MAUI Samples' - task: PublishBuildArtifacts@1 condition: always() displayName: publish artifacts @@ -253,61 +260,62 @@ stages: ArtifactName: ${{ BuildPlatform.artifact }} - stage: templates_net6 - displayName: Build .NET 6 Templates + displayName: Build .NET MAUI Templates dependsOn: pack_net6 jobs: - ${{ each BuildPlatform in parameters.BuildPlatforms }}: - ${{ each BuildConfiguration in parameters.BuildConfigurations }}: - - job: build_net6_${{ BuildPlatform.name }}_${{ BuildConfiguration }} - workspace: - clean: all - displayName: ${{ BuildPlatform.name }} (${{ BuildConfiguration }}) - timeoutInMinutes: 120 - condition: or( - ${{ parameters.BuildEverything }}, - ne(variables['Build.Reason'], 'PullRequest'), - eq('${{ BuildConfiguration }}', 'Release')) - pool: - name: ${{ BuildPlatform.poolName }} - vmImage: ${{ BuildPlatform.vmImage }} - demands: - - macOS.Name -equals Monterey - - macOS.Architecture -equals x64 - - Agent.HasDevices -equals False - - Agent.IsPaired -equals False - steps: - - ${{ if eq(BuildPlatform.name, 'macOS') }}: - - template: agent-cleanser/v1.yml@xamarin-templates + - ${{ each TestTFM in parameters.TestTargetFrameworks }}: + - job: build_${{ TestTFM.name }}_${{ BuildPlatform.name }}_${{ BuildConfiguration }} + workspace: + clean: all + displayName: ${{ BuildPlatform.name }} ${{ TestTFM.tfm }} (${{ BuildConfiguration }}) + timeoutInMinutes: 120 + condition: or( + ${{ parameters.BuildEverything }}, + ne(variables['Build.Reason'], 'PullRequest'), + eq('${{ BuildConfiguration }}', 'Release')) + pool: + name: ${{ BuildPlatform.poolName }} + vmImage: ${{ BuildPlatform.vmImage }} + demands: + - macOS.Name -equals Monterey + - macOS.Architecture -equals x64 + - Agent.HasDevices -equals False + - Agent.IsPaired -equals False + steps: + - ${{ if eq(BuildPlatform.name, 'macOS') }}: + - template: agent-cleanser/v1.yml@xamarin-templates + parameters: + UninstallMono: false + UninstallXamarinMac: false + CleanseAgentToolsDotNet: true # Cleanse all .NET versions under the agent tools directory and use only those provisioned by the pipeline + - template: common/provision.yml parameters: - UninstallMono: false - UninstallXamarinMac: false - CleanseAgentToolsDotNet: true # Cleanse all .NET versions under the agent tools directory and use only those provisioned by the pipeline - - template: common/provision.yml - parameters: - platform: ${{ BuildPlatform.name }} - poolName: ${{ BuildPlatform.poolName }} - provisionatorChannel: ${{ parameters.provisionatorChannel }} - - task: DownloadBuildArtifacts@0 - displayName: 'Download Packages' - inputs: - artifactName: nuget - itemPattern: '**/*.nupkg' - downloadPath: $(System.DefaultWorkingDirectory)/artifacts - - pwsh: Move-Item -Path artifacts\nuget\*.nupkg -Destination artifacts -Force - displayName: Move the downloaded artifacts - - pwsh: ./build.ps1 --target=dotnet-local-workloads --configuration="${{ BuildConfiguration }}" --verbosity=diagnostic - displayName: 'Install .NET (Local Workloads)' - retryCountOnTaskFailure: 3 - env: - DOTNET_TOKEN: $(dotnetbuilds-internal-container-read-token) - PRIVATE_BUILD: $(PrivateBuild) - - pwsh: ./build.ps1 --target=dotnet-templates --configuration="${{ BuildConfiguration }}" --verbosity=diagnostic - displayName: 'Build .NET 6 Templates' - - task: PublishBuildArtifacts@1 - condition: always() - displayName: publish artifacts - inputs: - ArtifactName: ${{ BuildPlatform.artifact }} + platform: ${{ BuildPlatform.name }} + poolName: ${{ BuildPlatform.poolName }} + provisionatorChannel: ${{ parameters.provisionatorChannel }} + - task: DownloadBuildArtifacts@0 + displayName: 'Download Packages' + inputs: + artifactName: nuget + itemPattern: '**/*.nupkg' + downloadPath: $(System.DefaultWorkingDirectory)/artifacts + - pwsh: Move-Item -Path artifacts\nuget\*.nupkg -Destination artifacts -Force + displayName: Move the downloaded artifacts + - pwsh: ./build.ps1 --target=dotnet-local-workloads --configuration="${{ BuildConfiguration }}" --verbosity=diagnostic + displayName: 'Install .NET (Local Workloads)' + retryCountOnTaskFailure: 3 + env: + DOTNET_TOKEN: $(dotnetbuilds-internal-container-read-token) + PRIVATE_BUILD: $(PrivateBuild) + - pwsh: ./build.ps1 --target=dotnet-templates --configuration="${{ BuildConfiguration }}" --testtfm="${{ TestTFM.tfm }}" --verbosity=diagnostic + displayName: 'Build .NET MAUI Templates' + - task: PublishBuildArtifacts@1 + condition: always() + displayName: publish artifacts + inputs: + ArtifactName: ${{ BuildPlatform.artifact }} - template: common/security-compliance.yml diff --git a/eng/pipelines/maui-release.yml b/eng/pipelines/maui-release.yml index cdae3a9a0a79..12d47a235485 100644 --- a/eng/pipelines/maui-release.yml +++ b/eng/pipelines/maui-release.yml @@ -58,7 +58,7 @@ resources: stages: - stage: pack_net6 - displayName: Pack .NET 6 + displayName: Pack .NET MAUI dependsOn: [] jobs: - ${{ each PackPlatform in parameters.PackPlatforms }}: diff --git a/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..bdebe13a998c --- /dev/null +++ b/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..798dc4661356 --- /dev/null +++ b/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..40cd7f5cdfcf --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..d62e1a505960 --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..b6d4b054371e --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..23f8084b6d9b --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..485babe793ef --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..f3750933a06b --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..5bd684068ac6 --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..4f9c2ef2e9e0 --- /dev/null +++ b/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..07eea9a3b04f --- /dev/null +++ b/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..95fa955015a0 --- /dev/null +++ b/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..5200b2f0f369 --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..0aa0223dfdf6 --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..9be2a38c2299 --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..6aceca0438fd --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..fe3e9a63c188 --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..32dec37b1783 --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..0cc5d3537f94 --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..5dce31ee71af --- /dev/null +++ b/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..135ce54205f4 --- /dev/null +++ b/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..a03e205f7e79 --- /dev/null +++ b/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..764caada0c10 --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..038de6667f66 --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..bbb5192bc452 --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..e127029487ee --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ae519da60cee --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..b348703efa3a --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..62f07ea39620 --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..dc4d705a21bd --- /dev/null +++ b/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..31c104308722 --- /dev/null +++ b/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..621c66698fe4 --- /dev/null +++ b/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..110f09be1048 --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..dcbc49f9c9ec --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..65799104c4c1 --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..6b66d110aee4 --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..0a0ffd9328a3 --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..647f122b01fb --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..8a510fa1d65a --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..70e012b7e204 --- /dev/null +++ b/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..7d72c6e44055 --- /dev/null +++ b/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..fb19e7ba1f8f --- /dev/null +++ b/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..d82b060bb47e --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..5cce1c0fde9a --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..d9352d930cc3 --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..34a1958cdfd7 --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ec2c9a7b6062 --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..bcdbb21580ed --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..fe071e260345 --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..23a5abee2211 --- /dev/null +++ b/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..c1640efeb062 --- /dev/null +++ b/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..8ecdd7272c87 --- /dev/null +++ b/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..b65f1948b812 --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..fbf9ea4950bd --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..bc3676551184 --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..a5c7feccc40e --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..fca976483332 --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..5363b222ea6d --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..983b1798e6e9 --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..48898616cdb0 --- /dev/null +++ b/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..4f54a09f93d0 --- /dev/null +++ b/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..608ce6640076 --- /dev/null +++ b/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..8c411dbb172f --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..efba932b4303 --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..7c7a35823ca8 --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..afb4963b6ccc --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..1a7a6c107675 --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..a86402952c85 --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..0cddea56a146 --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..7d231b46ad21 --- /dev/null +++ b/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..18afd8e3d256 --- /dev/null +++ b/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..9a537abf5563 --- /dev/null +++ b/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..d675020bbac0 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..327a1b2ca3e9 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..4436126cfe78 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ede86bb1aa56 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..424b525ab4e6 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..c2dca49e99ae --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..49cefa94dd50 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..eec8e6be5426 --- /dev/null +++ b/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..32fb63bd50dd --- /dev/null +++ b/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..26184d634c63 --- /dev/null +++ b/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..1ec51eef7064 --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ce9dfb988e5e --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..a28e9a35aa97 --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..b2ca63417ccf --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..d236b4dfde0f --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..72dd74e584c8 --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..8dc24eaff1a7 --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..b6bbfea39457 --- /dev/null +++ b/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..5bb8a14f7d64 --- /dev/null +++ b/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..6d21081b4fe8 --- /dev/null +++ b/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..fd7bad8481ff --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ac15532d4be2 --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..266a1954a0f9 --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..010d6db6af34 --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ac63f835ea5a --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..aa82e4b06824 --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..f183b718babc --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..367e78213968 --- /dev/null +++ b/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..d9bc6f8f571b --- /dev/null +++ b/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..8760153f1385 --- /dev/null +++ b/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..8f11d9d4f358 --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ae67d7f7b6ea --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..d69ed7b0278e --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..a866a55bbf12 --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..ca2588dda0e0 --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..797dd5ae4af1 --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..8d4e6beb3a27 --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..7c19b2c10ebc --- /dev/null +++ b/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..653eb1fc9f94 --- /dev/null +++ b/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..0d5c2d14a197 --- /dev/null +++ b/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..13b5e4a95521 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..89996008e9ff --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..60dd7679e3e9 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..90a70c856472 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..0ba83fb61eb4 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..2fa2a26ab423 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..943706f74560 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..8537756b6ce0 --- /dev/null +++ b/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl new file mode 100644 index 000000000000..d89acaef8944 --- /dev/null +++ b/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl new file mode 100644 index 000000000000..90553155f9bb --- /dev/null +++ b/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..eab593fc9b8c --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..e5f68cb3a2f5 --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..7de66552db80 --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..7743f8b99bad --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..691c70ef4199 --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..de2bb14166d7 --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..82e302768646 --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl new file mode 100644 index 000000000000..b915e679c454 --- /dev/null +++ b/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlazorWebView/src/Maui/Android/AndroidWebKitWebViewManager.cs b/src/BlazorWebView/src/Maui/Android/AndroidWebKitWebViewManager.cs index f6af22b85847..9def544942f8 100644 --- a/src/BlazorWebView/src/Maui/Android/AndroidWebKitWebViewManager.cs +++ b/src/BlazorWebView/src/Maui/Android/AndroidWebKitWebViewManager.cs @@ -27,7 +27,6 @@ internal class AndroidWebKitWebViewManager : WebViewManager private static readonly AUri AndroidAppOriginUri = AUri.Parse(AppOrigin)!; private readonly AWebView _webview; private readonly string _contentRootRelativeToAppRoot; - private WebMessagePort[]? _nativeToJSPorts; /// /// Constructs an instance of . @@ -38,9 +37,11 @@ internal class AndroidWebKitWebViewManager : WebViewManager /// Provides static content to the webview. /// Path to the directory containing application content files. /// Path to the host page within the . - public AndroidWebKitWebViewManager(AWebView webview!!, IServiceProvider services, Dispatcher dispatcher, IFileProvider fileProvider, JSComponentConfigurationStore jsComponents, string contentRootRelativeToAppRoot, string hostPageRelativePath) + public AndroidWebKitWebViewManager(AWebView webview, IServiceProvider services, Dispatcher dispatcher, IFileProvider fileProvider, JSComponentConfigurationStore jsComponents, string contentRootRelativeToAppRoot, string hostPageRelativePath) : base(services, dispatcher, AppOriginUri, fileProvider, jsComponents, hostPageRelativePath) { + ArgumentNullException.ThrowIfNull(webview); + #if WEBVIEW2_MAUI if (services.GetService() is null) { @@ -74,33 +75,21 @@ internal bool TryGetResponseContentInternal(string uri, bool allowFallbackOnHost internal void SetUpMessageChannel() { - _nativeToJSPorts = _webview.CreateWebMessageChannel(); + // These ports will be closed automatically when the webview gets disposed. + var nativeToJSPorts = _webview.CreateWebMessageChannel(); var nativeToJs = new BlazorWebMessageCallback(message => { MessageReceived(AppOriginUri, message!); }); - var destPort = new[] { _nativeToJSPorts[1] }; + var destPort = new[] { nativeToJSPorts[1] }; - _nativeToJSPorts[0].SetWebMessageCallback(nativeToJs); + nativeToJSPorts[0].SetWebMessageCallback(nativeToJs); _webview.PostWebMessage(new WebMessage("capturePort", destPort), AndroidAppOriginUri); } - protected override async ValueTask DisposeAsyncCore() - { - await base.DisposeAsyncCore(); - - if (_nativeToJSPorts is not null) - { - foreach (var port in _nativeToJSPorts) - { - port?.Close(); - } - } - } - private class BlazorWebMessageCallback : WebMessagePort.WebMessageCallback { private readonly Action _onMessageReceived; diff --git a/src/BlazorWebView/src/Maui/Android/BlazorWebView.Android.cs b/src/BlazorWebView/src/Maui/Android/BlazorAndroidWebView.cs similarity index 100% rename from src/BlazorWebView/src/Maui/Android/BlazorWebView.Android.cs rename to src/BlazorWebView/src/Maui/Android/BlazorAndroidWebView.cs diff --git a/src/BlazorWebView/src/Maui/Android/WebKitWebViewClient.cs b/src/BlazorWebView/src/Maui/Android/WebKitWebViewClient.cs index 02388a2b2744..0c3536ac46cb 100644 --- a/src/BlazorWebView/src/Maui/Android/WebKitWebViewClient.cs +++ b/src/BlazorWebView/src/Maui/Android/WebKitWebViewClient.cs @@ -20,8 +20,9 @@ internal class WebKitWebViewClient : WebViewClient private readonly BlazorWebViewHandler? _webViewHandler; - public WebKitWebViewClient(BlazorWebViewHandler webViewHandler!!) + public WebKitWebViewClient(BlazorWebViewHandler webViewHandler) { + ArgumentNullException.ThrowIfNull(webViewHandler); _webViewHandler = webViewHandler; } @@ -188,8 +189,9 @@ private class JavaScriptValueCallback : Java.Lang.Object, IValueCallback { private readonly Action _callback; - public JavaScriptValueCallback(Action callback!!) + public JavaScriptValueCallback(Action callback) { + ArgumentNullException.ThrowIfNull(callback); _callback = callback; } diff --git a/src/BlazorWebView/src/Maui/Microsoft.AspNetCore.Components.WebView.Maui.csproj b/src/BlazorWebView/src/Maui/Microsoft.AspNetCore.Components.WebView.Maui.csproj index fdfc6981580d..6c4121361c66 100644 --- a/src/BlazorWebView/src/Maui/Microsoft.AspNetCore.Components.WebView.Maui.csproj +++ b/src/BlazorWebView/src/Maui/Microsoft.AspNetCore.Components.WebView.Maui.csproj @@ -31,11 +31,7 @@ - - - - - + diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-android/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-android/PublicAPI.Shipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-android/PublicAPI.Unshipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-android/PublicAPI.Shipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-android/PublicAPI.Shipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-android/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-android/PublicAPI.Shipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-android/PublicAPI.Unshipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-ios/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-ios/PublicAPI.Shipped.txt similarity index 99% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-ios/PublicAPI.Unshipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-ios/PublicAPI.Shipped.txt index 486bc4fc4e76..d6bfacc992b8 100644 --- a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-ios/PublicAPI.Unshipped.txt +++ b/src/BlazorWebView/src/Maui/PublicAPI/net-ios/PublicAPI.Shipped.txt @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net-ios/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-ios/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..7dc5c58110bf --- /dev/null +++ b/src/BlazorWebView/src/Maui/PublicAPI/net-ios/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-maccatalyst/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt similarity index 99% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-maccatalyst/PublicAPI.Unshipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt index 486bc4fc4e76..d6bfacc992b8 100644 --- a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-maccatalyst/PublicAPI.Unshipped.txt +++ b/src/BlazorWebView/src/Maui/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..7dc5c58110bf --- /dev/null +++ b/src/BlazorWebView/src/Maui/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-tizen/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-tizen/PublicAPI.Shipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-tizen/PublicAPI.Unshipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-tizen/PublicAPI.Shipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-ios/PublicAPI.Shipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-tizen/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-ios/PublicAPI.Shipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-tizen/PublicAPI.Unshipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.19041/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-windows/PublicAPI.Shipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.19041/PublicAPI.Unshipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-windows/PublicAPI.Shipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-maccatalyst/PublicAPI.Shipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net-windows/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-maccatalyst/PublicAPI.Shipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net-windows/PublicAPI.Unshipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net/PublicAPI.Shipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0/PublicAPI.Unshipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net/PublicAPI.Shipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-tizen/PublicAPI.Shipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-tizen/PublicAPI.Shipped.txt rename to src/BlazorWebView/src/Maui/PublicAPI/net/PublicAPI.Unshipped.txt diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.20348/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.20348/PublicAPI.Unshipped.txt deleted file mode 100644 index 410ef95475d2..000000000000 --- a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.20348/PublicAPI.Unshipped.txt +++ /dev/null @@ -1,63 +0,0 @@ -#nullable enable -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BlazorWebViewInitializingEventArgs() -> void -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.BlazorWebView() -> void -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.BlazorWebViewInitialized -> System.EventHandler? -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.BlazorWebViewInitializing -> System.EventHandler? -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.HostPage.get -> string? -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.HostPage.set -> void -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.RootComponents.get -> Microsoft.AspNetCore.Components.WebView.Maui.RootComponentsCollection! -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.UrlLoading -> System.EventHandler? -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.BlazorWebViewHandler() -> void -Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.BlazorWebViewHandler(Microsoft.Maui.PropertyMapper? mapper) -> void -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.BlazorWebViewInitialized(Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs! args) -> void -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.BlazorWebViewInitializing(Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs! args) -> void -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.CreateFileProvider(string! contentRootDir) -> Microsoft.Extensions.FileProviders.IFileProvider! -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.HostPage.get -> string? -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.JSComponents.get -> Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.RootComponents.get -> Microsoft.AspNetCore.Components.WebView.Maui.RootComponentsCollection! -Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView.UrlLoading(Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs! args) -> void -Microsoft.AspNetCore.Components.WebView.Maui.IMauiBlazorWebViewBuilder -Microsoft.AspNetCore.Components.WebView.Maui.IMauiBlazorWebViewBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.ComponentType.get -> System.Type? -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.ComponentType.set -> void -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.Parameters.get -> System.Collections.Generic.IDictionary? -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.Parameters.set -> void -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.RootComponent() -> void -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.Selector.get -> string? -Microsoft.AspNetCore.Components.WebView.Maui.RootComponent.Selector.set -> void -Microsoft.AspNetCore.Components.WebView.Maui.RootComponentsCollection -Microsoft.AspNetCore.Components.WebView.Maui.RootComponentsCollection.JSComponents.get -> Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! -Microsoft.AspNetCore.Components.WebView.Maui.RootComponentsCollection.RootComponentsCollection(Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! jsComponents) -> void -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.Url.get -> System.Uri! -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.get -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.set -> void -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.CancelLoad = 2 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenExternally = 0 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenInWebView = 1 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions -override Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.OnPropertyChanged(string? propertyName = null) -> void -override Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.OnPropertyChanging(string? propertyName = null) -> void -override Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.WebView2! -override Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.WebView2! platformView) -> void -static Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.MapHostPage(Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler! handler, Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView! webView) -> void -static Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.MapRootComponents(Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler! handler, Microsoft.AspNetCore.Components.WebView.Maui.IBlazorWebView! webView) -> void -static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddBlazorWebViewDeveloperTools(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddMauiBlazorWebView(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Components.WebView.Maui.IMauiBlazorWebViewBuilder! -static Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.BlazorWebViewMapper -> Microsoft.Maui.PropertyMapper! -virtual Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebView.CreateFileProvider(string! contentRootDir) -> Microsoft.Extensions.FileProviders.IFileProvider! -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.WebView.get -> Microsoft.UI.Xaml.Controls.WebView2 -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.get -> string -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.set -> void -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.get -> Microsoft.Web.WebView2.Core.CoreWebView2EnvironmentOptions -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.set -> void -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.get -> string -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.set -> void diff --git a/src/BlazorWebView/src/Maui/Tizen/WebViewContainer.cs b/src/BlazorWebView/src/Maui/Tizen/WebViewContainer.cs index 52b3a3423f67..beb14251deee 100644 --- a/src/BlazorWebView/src/Maui/Tizen/WebViewContainer.cs +++ b/src/BlazorWebView/src/Maui/Tizen/WebViewContainer.cs @@ -10,7 +10,7 @@ namespace Microsoft.AspNetCore.Components.WebView.Maui /// public class WebViewContainer : WidgetLayout { - + /// /// A Tizen WebView. /// diff --git a/src/BlazorWebView/src/Maui/Tizen/WebViewExtensions.cs b/src/BlazorWebView/src/Maui/Tizen/WebViewExtensions.cs index 4150989f1013..fcd21554eea7 100644 --- a/src/BlazorWebView/src/Maui/Tizen/WebViewExtensions.cs +++ b/src/BlazorWebView/src/Maui/Tizen/WebViewExtensions.cs @@ -7,18 +7,18 @@ namespace Microsoft.AspNetCore.Components.WebView.Maui /// /// WebViewExtension /// - internal static class WebViewExtensions - { - public const string ChromiumEwk = "libchromium-ewk.so"; + internal static class WebViewExtensions + { + public const string ChromiumEwk = "libchromium-ewk.so"; - public static void SetInterceptRequestCallback(this TWebView webView, InterceptRequestCallback callback) - { + public static void SetInterceptRequestCallback(this TWebView webView, InterceptRequestCallback callback) + { var context = webView.GetContext(); var handleField = context.GetType().GetField("_handle", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance); - var contextHandle = (IntPtr?)handleField?.GetValue(context); + var contextHandle = (IntPtr?)handleField?.GetValue(context); if (contextHandle != null) ewk_context_intercept_request_callback_set(contextHandle.Value, callback, IntPtr.Zero); - } + } public static void SetInspectorStart(this TWebView webView, uint port) { @@ -30,27 +30,27 @@ public static void SetInspectorStart(this TWebView webView, uint port) } public static bool SetInterceptRequestResponse(this TWebView webView, IntPtr request, string header, byte[] body, uint length) - { - return ewk_intercept_request_response_set(request, header, body, length); - } + { + return ewk_intercept_request_response_set(request, header, body, length); + } public static bool IgnoreInterceptRequest(this TWebView webView, IntPtr request) - { - return ewk_intercept_request_ignore(request); - } + { + return ewk_intercept_request_ignore(request); + } public static string GetInterceptRequestUrl(this TWebView webView, IntPtr request) { return Marshal.PtrToStringAnsi(_ewk_intercept_request_url_get(request)) ?? string.Empty; - } + } - [DllImport(ChromiumEwk)] + [DllImport(ChromiumEwk)] internal static extern IntPtr ewk_view_context_get(IntPtr obj); [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void InterceptRequestCallback(IntPtr context, IntPtr request, IntPtr userData); + public delegate void InterceptRequestCallback(IntPtr context, IntPtr request, IntPtr userData); - [DllImport(ChromiumEwk)] + [DllImport(ChromiumEwk)] internal static extern void ewk_context_intercept_request_callback_set(IntPtr context, InterceptRequestCallback callback, IntPtr userData); [DllImport(ChromiumEwk, EntryPoint = "ewk_intercept_request_url_get")] @@ -62,7 +62,7 @@ public static string GetInterceptRequestUrl(this TWebView webView, IntPtr reques internal static string ewk_intercept_request_http_method_get(IntPtr request) { return Marshal.PtrToStringAnsi(_ewk_intercept_request_http_method_get(request)) ?? string.Empty; - } + } [DllImport(ChromiumEwk)] public static extern uint ewk_context_inspector_server_start(IntPtr context, uint port); diff --git a/src/BlazorWebView/src/Maui/Windows/WinUIWebViewManager.cs b/src/BlazorWebView/src/Maui/Windows/WinUIWebViewManager.cs index 0572cb838ba5..640d8dac3382 100644 --- a/src/BlazorWebView/src/Maui/Windows/WinUIWebViewManager.cs +++ b/src/BlazorWebView/src/Maui/Windows/WinUIWebViewManager.cs @@ -132,7 +132,7 @@ protected override async Task HandleWebResourceRequest(CoreWebView2WebResourceRe await stream.WriteAsync(memStream.GetWindowsRuntimeBuffer()); } } - + var hotReloadedContent = Stream.Null; if (StaticContentHotReloadManager.TryReplaceResponseContent(_contentRootRelativeToAppRoot, requestUri, ref statusCode, ref hotReloadedContent, headers)) { diff --git a/src/BlazorWebView/src/Maui/iOS/IOSWebViewManager.cs b/src/BlazorWebView/src/Maui/iOS/IOSWebViewManager.cs index 49a38cb5a9cf..b28f0aa65269 100644 --- a/src/BlazorWebView/src/Maui/iOS/IOSWebViewManager.cs +++ b/src/BlazorWebView/src/Maui/iOS/IOSWebViewManager.cs @@ -34,9 +34,12 @@ internal class IOSWebViewManager : WebViewManager /// Path to the directory containing application content files. /// Path to the host page within the fileProvider. - public IOSWebViewManager(BlazorWebViewHandler blazorMauiWebViewHandler!!, WKWebView webview!!, IServiceProvider provider, Dispatcher dispatcher, IFileProvider fileProvider, JSComponentConfigurationStore jsComponents, string contentRootRelativeToAppRoot, string hostPageRelativePath) + public IOSWebViewManager(BlazorWebViewHandler blazorMauiWebViewHandler, WKWebView webview, IServiceProvider provider, Dispatcher dispatcher, IFileProvider fileProvider, JSComponentConfigurationStore jsComponents, string contentRootRelativeToAppRoot, string hostPageRelativePath) : base(provider, dispatcher, BlazorWebViewHandler.AppOriginUri, fileProvider, jsComponents, hostPageRelativePath) { + ArgumentNullException.ThrowIfNull(nameof(blazorMauiWebViewHandler)); + ArgumentNullException.ThrowIfNull(nameof(webview)); + if (provider.GetService() is null) { throw new InvalidOperationException( diff --git a/src/BlazorWebView/src/SharedSource/BlazorWebViewDeveloperTools.cs b/src/BlazorWebView/src/SharedSource/BlazorWebViewDeveloperTools.cs index 0f088fb3d261..424fd1f3d22d 100644 --- a/src/BlazorWebView/src/SharedSource/BlazorWebViewDeveloperTools.cs +++ b/src/BlazorWebView/src/SharedSource/BlazorWebViewDeveloperTools.cs @@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Components.WebView.Maui #endif { internal class BlazorWebViewDeveloperTools - { - public bool Enabled { get; set; } = false; - } +{ + public bool Enabled { get; set; } = false; +} } diff --git a/src/BlazorWebView/src/SharedSource/BlazorWebViewServiceCollectionExtensions.cs b/src/BlazorWebView/src/SharedSource/BlazorWebViewServiceCollectionExtensions.cs index 20150d38c056..65765deacd7a 100644 --- a/src/BlazorWebView/src/SharedSource/BlazorWebViewServiceCollectionExtensions.cs +++ b/src/BlazorWebView/src/SharedSource/BlazorWebViewServiceCollectionExtensions.cs @@ -54,14 +54,14 @@ public static IMauiBlazorWebViewBuilder AddMauiBlazorWebView(this IServiceCollec #endif } - /// - /// Enables Developer tools on the underlying WebView controls. - /// - /// The . - /// The . - public static IServiceCollection AddBlazorWebViewDeveloperTools(this IServiceCollection services) - { - return services.AddSingleton(new BlazorWebViewDeveloperTools { Enabled = true }); - } +/// +/// Enables Developer tools on the underlying WebView controls. +/// +/// The . +/// The . +public static IServiceCollection AddBlazorWebViewDeveloperTools(this IServiceCollection services) +{ + return services.AddSingleton(new BlazorWebViewDeveloperTools { Enabled = true }); +} } } diff --git a/src/BlazorWebView/src/SharedSource/WebView2WebViewManager.cs b/src/BlazorWebView/src/SharedSource/WebView2WebViewManager.cs index 470b4e39dac9..ee2fad5f4dac 100644 --- a/src/BlazorWebView/src/SharedSource/WebView2WebViewManager.cs +++ b/src/BlazorWebView/src/SharedSource/WebView2WebViewManager.cs @@ -86,7 +86,7 @@ internal class WebView2WebViewManager : WebViewManager /// Callback invoked before the webview is initialized. /// Callback invoked after the webview is initialized. internal WebView2WebViewManager( - WebView2Control webview!!, + WebView2Control webview, IServiceProvider services, Dispatcher dispatcher, IFileProvider fileProvider, @@ -99,6 +99,8 @@ internal WebView2WebViewManager( : base(services, dispatcher, AppOriginUri, fileProvider, jsComponents, hostPagePathWithinFileProvider) { + ArgumentNullException.ThrowIfNull(webview); + #if WEBVIEW2_WINFORMS if (services.GetService() is null) { @@ -143,7 +145,7 @@ internal WebView2WebViewManager( /// Path to the host page within the . /// The . internal WebView2WebViewManager( - WebView2Control webview!!, + WebView2Control webview, IServiceProvider services, Dispatcher dispatcher, IFileProvider fileProvider, @@ -154,6 +156,8 @@ BlazorWebViewHandler blazorWebViewHandler ) : base(services, dispatcher, AppOriginUri, fileProvider, jsComponents, hostPagePathWithinFileProvider) { + ArgumentNullException.ThrowIfNull(webview); + if (services.GetService() is null) { throw new InvalidOperationException( diff --git a/src/BlazorWebView/src/WindowsForms/PublicAPI.Shipped.txt b/src/BlazorWebView/src/WindowsForms/PublicAPI.Shipped.txt index 7dc5c58110bf..cd2bf7fbd682 100644 --- a/src/BlazorWebView/src/WindowsForms/PublicAPI.Shipped.txt +++ b/src/BlazorWebView/src/WindowsForms/PublicAPI.Shipped.txt @@ -1 +1,51 @@ #nullable enable +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BlazorWebViewInitializingEventArgs() -> void +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.Url.get -> System.Uri! +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.get -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.set -> void +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.CancelLoad = 2 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenExternally = 0 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenInWebView = 1 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.BlazorWebView() -> void +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.BlazorWebViewInitialized -> System.EventHandler? +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.BlazorWebViewInitializing -> System.EventHandler? +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.HostPage.get -> string? +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.HostPage.set -> void +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.RootComponents.get -> Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection! +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.Services.get -> System.IServiceProvider! +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.Services.set -> void +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.UrlLoading -> System.EventHandler? +Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.WebView.get -> Microsoft.Web.WebView2.WinForms.WebView2! +Microsoft.AspNetCore.Components.WebView.WindowsForms.IWindowsFormsBlazorWebViewBuilder +Microsoft.AspNetCore.Components.WebView.WindowsForms.IWindowsFormsBlazorWebViewBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.ComponentType.get -> System.Type! +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.Parameters.get -> System.Collections.Generic.IDictionary? +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.RootComponent(string! selector, System.Type! componentType, System.Collections.Generic.IDictionary? parameters) -> void +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.Selector.get -> string! +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentCollectionExtensions +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection.JSComponents.get -> Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! +Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection.RootComponentsCollection() -> void +Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions +override Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.Dispose(bool disposing) -> void +override Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.OnCreateControl() -> void +static Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentCollectionExtensions.Add(this Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection! components, string! selector, System.Collections.Generic.IDictionary? parameters = null) -> void +static Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentCollectionExtensions.Remove(this Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection! components, string! selector) -> void +static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddBlazorWebViewDeveloperTools(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddWindowsFormsBlazorWebView(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Components.WebView.WindowsForms.IWindowsFormsBlazorWebViewBuilder! +virtual Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.CreateFileProvider(string! contentRootDir) -> Microsoft.Extensions.FileProviders.IFileProvider! +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.WebView.get -> Microsoft.Web.WebView2.WinForms.WebView2 +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.get -> string +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.set -> void +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.get -> Microsoft.Web.WebView2.Core.CoreWebView2EnvironmentOptions +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.set -> void +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.get -> string +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.set -> void diff --git a/src/BlazorWebView/src/WindowsForms/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/WindowsForms/PublicAPI.Unshipped.txt index a65d1a9361b1..ab058de62d44 100644 --- a/src/BlazorWebView/src/WindowsForms/PublicAPI.Unshipped.txt +++ b/src/BlazorWebView/src/WindowsForms/PublicAPI.Unshipped.txt @@ -1,51 +1 @@ #nullable enable -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BlazorWebViewInitializingEventArgs() -> void -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.Url.get -> System.Uri! -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.get -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.set -> void -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.CancelLoad = 2 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenExternally = 0 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenInWebView = 1 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.BlazorWebView() -> void -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.BlazorWebViewInitialized -> System.EventHandler? -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.BlazorWebViewInitializing -> System.EventHandler? -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.HostPage.get -> string? -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.HostPage.set -> void -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.RootComponents.get -> Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection! -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.Services.get -> System.IServiceProvider! -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.Services.set -> void -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.UrlLoading -> System.EventHandler? -Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.WebView.get -> Microsoft.Web.WebView2.WinForms.WebView2! -Microsoft.AspNetCore.Components.WebView.WindowsForms.IWindowsFormsBlazorWebViewBuilder -Microsoft.AspNetCore.Components.WebView.WindowsForms.IWindowsFormsBlazorWebViewBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.ComponentType.get -> System.Type! -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.Parameters.get -> System.Collections.Generic.IDictionary? -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.RootComponent(string! selector, System.Type! componentType, System.Collections.Generic.IDictionary? parameters) -> void -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponent.Selector.get -> string! -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentCollectionExtensions -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection.JSComponents.get -> Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! -Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection.RootComponentsCollection() -> void -Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions -override Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.Dispose(bool disposing) -> void -override Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.OnCreateControl() -> void -static Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentCollectionExtensions.Add(this Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection! components, string! selector, System.Collections.Generic.IDictionary? parameters = null) -> void -static Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentCollectionExtensions.Remove(this Microsoft.AspNetCore.Components.WebView.WindowsForms.RootComponentsCollection! components, string! selector) -> void -static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddBlazorWebViewDeveloperTools(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddWindowsFormsBlazorWebView(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Components.WebView.WindowsForms.IWindowsFormsBlazorWebViewBuilder! -virtual Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView.CreateFileProvider(string! contentRootDir) -> Microsoft.Extensions.FileProviders.IFileProvider! -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.WebView.get -> Microsoft.Web.WebView2.WinForms.WebView2 -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.get -> string -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.set -> void -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.get -> Microsoft.Web.WebView2.Core.CoreWebView2EnvironmentOptions -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.set -> void -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.get -> string -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.set -> void diff --git a/src/BlazorWebView/src/Wpf/PublicAPI.Shipped.txt b/src/BlazorWebView/src/Wpf/PublicAPI.Shipped.txt index 7dc5c58110bf..bbc3f39f32f3 100644 --- a/src/BlazorWebView/src/Wpf/PublicAPI.Shipped.txt +++ b/src/BlazorWebView/src/Wpf/PublicAPI.Shipped.txt @@ -1 +1,61 @@ #nullable enable +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs +Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BlazorWebViewInitializingEventArgs() -> void +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.Url.get -> System.Uri! +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.get -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.set -> void +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.CancelLoad = 2 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenExternally = 0 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenInWebView = 1 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebView() -> void +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitialized.get -> System.EventHandler! +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitialized.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializing.get -> System.EventHandler! +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializing.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.DisposeAsync() -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.HostPage.get -> string! +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.HostPage.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.RootComponents.get -> Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection! +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.Services.get -> System.IServiceProvider! +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.Services.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.UrlLoading.get -> System.EventHandler! +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.UrlLoading.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.WebView.get -> Microsoft.Web.WebView2.Wpf.WebView2! +Microsoft.AspNetCore.Components.WebView.Wpf.IWpfBlazorWebViewBuilder +Microsoft.AspNetCore.Components.WebView.Wpf.IWpfBlazorWebViewBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.ComponentType.get -> System.Type! +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.ComponentType.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Parameters.get -> System.Collections.Generic.IDictionary? +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Parameters.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.RootComponent() -> void +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Selector.get -> string! +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Selector.set -> void +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection.JSComponents.get -> Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! +Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection.RootComponentsCollection() -> void +Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions +override Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.OnApplyTemplate() -> void +override Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.OnInitialized(System.EventArgs! e) -> void +static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddBlazorWebViewDeveloperTools(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddWpfBlazorWebView(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Components.WebView.Wpf.IWpfBlazorWebViewBuilder! +static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializedProperty -> System.Windows.DependencyProperty! +static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializingProperty -> System.Windows.DependencyProperty! +static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.HostPageProperty -> System.Windows.DependencyProperty! +static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.RootComponentsProperty -> System.Windows.DependencyProperty! +static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.ServicesProperty -> System.Windows.DependencyProperty! +static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.UrlLoadingProperty -> System.Windows.DependencyProperty! +virtual Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.CreateFileProvider(string! contentRootDir) -> Microsoft.Extensions.FileProviders.IFileProvider! +virtual Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.DisposeAsyncCore() -> System.Threading.Tasks.ValueTask +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.WebView.get -> Microsoft.Web.WebView2.Wpf.WebView2 +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.get -> string +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.set -> void +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.get -> Microsoft.Web.WebView2.Core.CoreWebView2EnvironmentOptions +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.set -> void +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.get -> string +~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.set -> void diff --git a/src/BlazorWebView/src/Wpf/PublicAPI.Unshipped.txt b/src/BlazorWebView/src/Wpf/PublicAPI.Unshipped.txt index 5feec2cf3564..ab058de62d44 100644 --- a/src/BlazorWebView/src/Wpf/PublicAPI.Unshipped.txt +++ b/src/BlazorWebView/src/Wpf/PublicAPI.Unshipped.txt @@ -1,61 +1 @@ #nullable enable -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.BlazorWebViewInitializedEventArgs() -> void -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs -Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BlazorWebViewInitializingEventArgs() -> void -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.Url.get -> System.Uri! -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.get -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingEventArgs.UrlLoadingStrategy.set -> void -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.CancelLoad = 2 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenExternally = 0 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy.OpenInWebView = 1 -> Microsoft.AspNetCore.Components.WebView.UrlLoadingStrategy -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebView() -> void -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitialized.get -> System.EventHandler! -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitialized.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializing.get -> System.EventHandler! -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializing.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.DisposeAsync() -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.HostPage.get -> string! -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.HostPage.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.RootComponents.get -> Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection! -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.Services.get -> System.IServiceProvider! -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.Services.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.UrlLoading.get -> System.EventHandler! -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.UrlLoading.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.WebView.get -> Microsoft.Web.WebView2.Wpf.WebView2! -Microsoft.AspNetCore.Components.WebView.Wpf.IWpfBlazorWebViewBuilder -Microsoft.AspNetCore.Components.WebView.Wpf.IWpfBlazorWebViewBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.ComponentType.get -> System.Type! -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.ComponentType.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Parameters.get -> System.Collections.Generic.IDictionary? -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Parameters.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.RootComponent() -> void -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Selector.get -> string! -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponent.Selector.set -> void -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection.JSComponents.get -> Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore! -Microsoft.AspNetCore.Components.WebView.Wpf.RootComponentsCollection.RootComponentsCollection() -> void -Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions -override Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.OnApplyTemplate() -> void -override Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.OnInitialized(System.EventArgs! e) -> void -static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddBlazorWebViewDeveloperTools(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.BlazorWebViewServiceCollectionExtensions.AddWpfBlazorWebView(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Components.WebView.Wpf.IWpfBlazorWebViewBuilder! -static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializedProperty -> System.Windows.DependencyProperty! -static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.BlazorWebViewInitializingProperty -> System.Windows.DependencyProperty! -static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.HostPageProperty -> System.Windows.DependencyProperty! -static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.RootComponentsProperty -> System.Windows.DependencyProperty! -static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.ServicesProperty -> System.Windows.DependencyProperty! -static readonly Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.UrlLoadingProperty -> System.Windows.DependencyProperty! -virtual Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.CreateFileProvider(string! contentRootDir) -> Microsoft.Extensions.FileProviders.IFileProvider! -virtual Microsoft.AspNetCore.Components.WebView.Wpf.BlazorWebView.DisposeAsyncCore() -> System.Threading.Tasks.ValueTask -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializedEventArgs.WebView.get -> Microsoft.Web.WebView2.Wpf.WebView2 -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.get -> string -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.BrowserExecutableFolder.set -> void -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.get -> Microsoft.Web.WebView2.Core.CoreWebView2EnvironmentOptions -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.EnvironmentOptions.set -> void -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.get -> string -~Microsoft.AspNetCore.Components.WebView.BlazorWebViewInitializingEventArgs.UserDataFolder.set -> void diff --git a/src/BlazorWebView/tests/MauiDeviceTests/HandlerTestBase.Windows.cs b/src/BlazorWebView/tests/MauiDeviceTests/HandlerTestBase.Windows.cs index 08d4a8edb172..7d5a5988c169 100644 --- a/src/BlazorWebView/tests/MauiDeviceTests/HandlerTestBase.Windows.cs +++ b/src/BlazorWebView/tests/MauiDeviceTests/HandlerTestBase.Windows.cs @@ -7,7 +7,7 @@ namespace Microsoft.Maui.MauiBlazorWebView.DeviceTests public partial class HandlerTestBase { protected bool GetIsAccessibilityElement(IViewHandler viewHandler) => - ((AccessibilityView)((DependencyObject)viewHandler.PlatformView).GetValue(NativeAutomationProperties.AccessibilityViewProperty)) + ((AccessibilityView)((DependencyObject)viewHandler.PlatformView).GetValue(NativeAutomationProperties.AccessibilityViewProperty)) == AccessibilityView.Content; } } diff --git a/src/BlazorWebView/tests/MauiDeviceTests/TestBase.cs b/src/BlazorWebView/tests/MauiDeviceTests/TestBase.cs index 2e467323944c..dfba5b70da96 100644 --- a/src/BlazorWebView/tests/MauiDeviceTests/TestBase.cs +++ b/src/BlazorWebView/tests/MauiDeviceTests/TestBase.cs @@ -1,7 +1,7 @@ using System; using System.Threading.Tasks; -using Microsoft.Maui.Dispatching; using Microsoft.Maui.DeviceTests; +using Microsoft.Maui.Dispatching; using Microsoft.Maui.TestUtils.DeviceTests.Runners; namespace Microsoft.Maui.MauiBlazorWebView.DeviceTests diff --git a/src/Compatibility/ControlGallery/src/Android/Compatibility.ControlGallery.Android.csproj b/src/Compatibility/ControlGallery/src/Android/Compatibility.ControlGallery.Android.csproj index 8bc2e5157ad9..64a22cd4ae1c 100644 --- a/src/Compatibility/ControlGallery/src/Android/Compatibility.ControlGallery.Android.csproj +++ b/src/Compatibility/ControlGallery/src/Android/Compatibility.ControlGallery.Android.csproj @@ -29,6 +29,10 @@ android + + True + + diff --git a/src/Compatibility/ControlGallery/src/EmbeddingTestBeds/Embedding.Droid/MainActivity.cs b/src/Compatibility/ControlGallery/src/EmbeddingTestBeds/Embedding.Droid/MainActivity.cs index 83f7c9699f8e..f437f30f87ec 100644 --- a/src/Compatibility/ControlGallery/src/EmbeddingTestBeds/Embedding.Droid/MainActivity.cs +++ b/src/Compatibility/ControlGallery/src/EmbeddingTestBeds/Embedding.Droid/MainActivity.cs @@ -33,8 +33,8 @@ protected override void OnCreate(Bundle bundle) Forms.Init(this, null); - SetContentView (Resource.Layout.Main); - + SetContentView(Resource.Layout.Main); + var ft = SupportFragmentManager.BeginTransaction(); ft.Replace(Resource.Id.fragment_frame_layout, new MainFragment(), "main"); ft.Commit(); @@ -54,7 +54,7 @@ public void ShowWebView() { if (_webview == null) { - _webview= new WebViewExample().CreateSupportFragment(this); + _webview = new WebViewExample().CreateSupportFragment(this); } ShowEmbeddedPageFragment(_webview); @@ -66,12 +66,12 @@ public void ShowOpenUri() _openUri = new OpenUri().CreateSupportFragment(this); } - ShowEmbeddedPageFragment(_openUri ); + ShowEmbeddedPageFragment(_openUri); } public void ShowAlertsAndActionSheets() { - if (_alertsAndActionSheets== null) + if (_alertsAndActionSheets == null) { _alertsAndActionSheets = new AlertsAndActionSheets().CreateSupportFragment(this); } @@ -85,7 +85,7 @@ void ShowEmbeddedPageFragment(Fragment fragment) ft.AddToBackStack(null); ft.Replace(Resource.Id.fragment_frame_layout, fragment, "hello"); - + ft.Commit(); } @@ -99,7 +99,7 @@ public class MainFragment : Fragment { public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { - var view = inflater.Inflate(Resource.Layout.MainFragment, container, false); + var view = inflater.Inflate(Resource.Layout.MainFragment, container, false); var showEmbeddedButton = view.FindViewById" - }; - } + _webView.Source = new HtmlWebViewSource + { + Html = @"" + }; + } - void OnToggleButtonClicked(object sender, EventArgs e) - { - _webView.On().SetIsJavaScriptAlertEnabled(!_webView.On().IsJavaScriptAlertEnabled()); - } - } + void OnToggleButtonClicked(object sender, EventArgs e) + { + _webView.On().SetIsJavaScriptAlertEnabled(!_webView.On().IsJavaScriptAlertEnabled()); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSBlurEffectPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSBlurEffectPage.xaml.cs index 6faf7fce5921..eac76a9c67f1 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSBlurEffectPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSBlurEffectPage.xaml.cs @@ -5,31 +5,31 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSBlurEffectPage : ContentPage - { - public iOSBlurEffectPage() - { - InitializeComponent(); - } + public partial class iOSBlurEffectPage : ContentPage + { + public iOSBlurEffectPage() + { + InitializeComponent(); + } - void OnNoBlurButtonClicked(object sender, EventArgs e) - { - image.On().UseBlurEffect(BlurEffectStyle.None); - } + void OnNoBlurButtonClicked(object sender, EventArgs e) + { + image.On().UseBlurEffect(BlurEffectStyle.None); + } - void OnExtraLightBlurButtonClicked(object sender, EventArgs e) - { - image.On().UseBlurEffect(BlurEffectStyle.ExtraLight); - } + void OnExtraLightBlurButtonClicked(object sender, EventArgs e) + { + image.On().UseBlurEffect(BlurEffectStyle.ExtraLight); + } - void OnLightBlurButtonClicked(object sender, EventArgs e) - { - image.On().UseBlurEffect(BlurEffectStyle.Light); - } + void OnLightBlurButtonClicked(object sender, EventArgs e) + { + image.On().UseBlurEffect(BlurEffectStyle.Light); + } - void OnDarkBlurButtonClicked(object sender, EventArgs e) - { - image.On().UseBlurEffect(BlurEffectStyle.Dark); - } - } + void OnDarkBlurButtonClicked(object sender, EventArgs e) + { + image.On().UseBlurEffect(BlurEffectStyle.Dark); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSDatePickerPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSDatePickerPage.xaml.cs index 135035a1233e..299ceac5faed 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSDatePickerPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSDatePickerPage.xaml.cs @@ -5,25 +5,25 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSDatePickerPage : ContentPage - { - public iOSDatePickerPage() - { - InitializeComponent(); - } + public partial class iOSDatePickerPage : ContentPage + { + public iOSDatePickerPage() + { + InitializeComponent(); + } - void OnButtonClicked(object sender, EventArgs e) - { - switch (datePicker.On().UpdateMode()) - { - case UpdateMode.Immediately: - datePicker.On().SetUpdateMode(UpdateMode.WhenFinished); - break; - case UpdateMode.WhenFinished: - datePicker.On().SetUpdateMode(UpdateMode.Immediately); - break; - } - } - } + void OnButtonClicked(object sender, EventArgs e) + { + switch (datePicker.On().UpdateMode()) + { + case UpdateMode.Immediately: + datePicker.On().SetUpdateMode(UpdateMode.WhenFinished); + break; + case UpdateMode.WhenFinished: + datePicker.On().SetUpdateMode(UpdateMode.Immediately); + break; + } + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFirstResponderPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFirstResponderPage.xaml.cs index 9def04074b60..867aecc935a3 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFirstResponderPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFirstResponderPage.xaml.cs @@ -2,11 +2,11 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSFirstResponderPage : ContentPage - { - public iOSFirstResponderPage() - { - InitializeComponent(); - } - } + public partial class iOSFirstResponderPage : ContentPage + { + public iOSFirstResponderPage() + { + InitializeComponent(); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFlyoutPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFlyoutPage.xaml.cs index 215f92e2612f..deeafe64c817 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFlyoutPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSFlyoutPage.xaml.cs @@ -5,24 +5,24 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSFlyoutPage : Microsoft.Maui.Controls.FlyoutPage - { - ICommand returnToPlatformSpecificsPage; + public partial class iOSFlyoutPage : Microsoft.Maui.Controls.FlyoutPage + { + ICommand returnToPlatformSpecificsPage; - public iOSFlyoutPage(ICommand restore) - { - InitializeComponent(); - returnToPlatformSpecificsPage = restore; - } + public iOSFlyoutPage(ICommand restore) + { + InitializeComponent(); + returnToPlatformSpecificsPage = restore; + } - void OnShadowButtonClicked(object sender, EventArgs e) - { - On().SetApplyShadow(!On().GetApplyShadow()); - } + void OnShadowButtonClicked(object sender, EventArgs e) + { + On().SetApplyShadow(!On().GetApplyShadow()); + } - void OnReturnButtonClicked(object sender, EventArgs e) - { - returnToPlatformSpecificsPage.Execute(null); - } - } + void OnReturnButtonClicked(object sender, EventArgs e) + { + returnToPlatformSpecificsPage.Execute(null); + } + } } \ No newline at end of file diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSHideHomeIndicatorPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSHideHomeIndicatorPage.xaml.cs index 852584ed3584..e8714bcf249f 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSHideHomeIndicatorPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSHideHomeIndicatorPage.xaml.cs @@ -5,16 +5,16 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSHideHomeIndicatorPage : ContentPage - { - public iOSHideHomeIndicatorPage() - { - InitializeComponent(); - } + public partial class iOSHideHomeIndicatorPage : ContentPage + { + public iOSHideHomeIndicatorPage() + { + InitializeComponent(); + } - void OnButtonClicked(object sender, EventArgs e) - { - On().SetPrefersHomeIndicatorAutoHidden(!On().PrefersHomeIndicatorAutoHidden()); - } - } + void OnButtonClicked(object sender, EventArgs e) + { + On().SetPrefersHomeIndicatorAutoHidden(!On().PrefersHomeIndicatorAutoHidden()); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSLargeTitlePage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSLargeTitlePage.xaml.cs index 26741261ccb4..1f0abc03c9ff 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSLargeTitlePage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSLargeTitlePage.xaml.cs @@ -6,35 +6,35 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSLargeTitlePage : ContentPage - { - ICommand _returnToPlatformSpecificsPage; + public partial class iOSLargeTitlePage : ContentPage + { + ICommand _returnToPlatformSpecificsPage; - public iOSLargeTitlePage(ICommand restore) - { - InitializeComponent(); - _returnToPlatformSpecificsPage = restore; - } + public iOSLargeTitlePage(ICommand restore) + { + InitializeComponent(); + _returnToPlatformSpecificsPage = restore; + } - void OnButtonClicked(object sender, EventArgs e) - { - switch (On().LargeTitleDisplay()) - { - case LargeTitleDisplayMode.Always: - On().SetLargeTitleDisplay(LargeTitleDisplayMode.Automatic); - break; - case LargeTitleDisplayMode.Automatic: - On().SetLargeTitleDisplay(LargeTitleDisplayMode.Never); - break; - case LargeTitleDisplayMode.Never: - On().SetLargeTitleDisplay(LargeTitleDisplayMode.Always); - break; - } - } + void OnButtonClicked(object sender, EventArgs e) + { + switch (On().LargeTitleDisplay()) + { + case LargeTitleDisplayMode.Always: + On().SetLargeTitleDisplay(LargeTitleDisplayMode.Automatic); + break; + case LargeTitleDisplayMode.Automatic: + On().SetLargeTitleDisplay(LargeTitleDisplayMode.Never); + break; + case LargeTitleDisplayMode.Never: + On().SetLargeTitleDisplay(LargeTitleDisplayMode.Always); + break; + } + } - void OnReturnButtonClicked(object sender, EventArgs e) - { - _returnToPlatformSpecificsPage.Execute(null); - } - } + void OnReturnButtonClicked(object sender, EventArgs e) + { + _returnToPlatformSpecificsPage.Execute(null); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewPage.xaml.cs index ae4e75679dab..6a92ee7b3089 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewPage.xaml.cs @@ -1,14 +1,14 @@ -using Microsoft.Maui.Controls; -using Maui.Controls.Sample.ViewModels; +using Maui.Controls.Sample.ViewModels; +using Microsoft.Maui.Controls; namespace Maui.Controls.Sample.Pages { - public partial class iOSListViewPage : ContentPage - { - public iOSListViewPage() - { - InitializeComponent(); + public partial class iOSListViewPage : ContentPage + { + public iOSListViewPage() + { + InitializeComponent(); BindingContext = new ListViewViewModel(); - } - } + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewWithCellPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewWithCellPage.xaml.cs index a189d22cac8c..31230a3120f5 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewWithCellPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSListViewWithCellPage.xaml.cs @@ -1,14 +1,14 @@ -using Microsoft.Maui.Controls; -using Maui.Controls.Sample.ViewModels; +using Maui.Controls.Sample.ViewModels; +using Microsoft.Maui.Controls; namespace Maui.Controls.Sample.Pages { - public partial class iOSListViewWithCellPage : ContentPage - { - public iOSListViewWithCellPage() - { - InitializeComponent(); - BindingContext = new ListViewViewModel(20); - } - } + public partial class iOSListViewWithCellPage : ContentPage + { + public iOSListViewWithCellPage() + { + InitializeComponent(); + BindingContext = new ListViewViewModel(20); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSModalPagePresentationStyle.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSModalPagePresentationStyle.xaml.cs index 261f01e32f4f..bc6f994ad82c 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSModalPagePresentationStyle.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSModalPagePresentationStyle.xaml.cs @@ -3,16 +3,16 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSModalPagePresentationStyle : ContentPage - { - public iOSModalPagePresentationStyle() - { - InitializeComponent(); - } + public partial class iOSModalPagePresentationStyle : ContentPage + { + public iOSModalPagePresentationStyle() + { + InitializeComponent(); + } - async void OnReturnButtonClicked(object sender, EventArgs e) - { - await Navigation.PopModalAsync(); - } - } + async void OnReturnButtonClicked(object sender, EventArgs e) + { + await Navigation.PopModalAsync(); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSNavigationPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSNavigationPage.xaml.cs index b5a095f4d666..0b10b1c33b7c 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSNavigationPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSNavigationPage.xaml.cs @@ -2,12 +2,12 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSNavigationPage : NavigationPage - { - public iOSNavigationPage(Page page) - { - InitializeComponent(); - PushAsync(page); - } - } + public partial class iOSNavigationPage : NavigationPage + { + public iOSNavigationPage(Page page) + { + InitializeComponent(); + PushAsync(page); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPanGestureRecognizerPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPanGestureRecognizerPage.xaml.cs index a687df6a7c27..e6d8c25250e6 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPanGestureRecognizerPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPanGestureRecognizerPage.xaml.cs @@ -1,8 +1,8 @@ using System; +using Maui.Controls.Sample.ViewModels; using Microsoft.Maui.Controls; using Microsoft.Maui.Controls.PlatformConfiguration; using Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific; -using Maui.Controls.Sample.ViewModels; namespace Maui.Controls.Sample.Pages { diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPickerPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPickerPage.xaml.cs index f585fd2b50c1..f9fc27b458cf 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPickerPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSPickerPage.xaml.cs @@ -5,24 +5,24 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSPickerPage : ContentPage - { - public iOSPickerPage() - { - InitializeComponent(); - } + public partial class iOSPickerPage : ContentPage + { + public iOSPickerPage() + { + InitializeComponent(); + } - void OnButtonClicked(object sender, EventArgs e) - { - switch (picker.On().UpdateMode()) - { - case UpdateMode.Immediately: - picker.On().SetUpdateMode(UpdateMode.WhenFinished); - break; - case UpdateMode.WhenFinished: - picker.On().SetUpdateMode(UpdateMode.Immediately); - break; - } - } - } + void OnButtonClicked(object sender, EventArgs e) + { + switch (picker.On().UpdateMode()) + { + case UpdateMode.Immediately: + picker.On().SetUpdateMode(UpdateMode.WhenFinished); + break; + case UpdateMode.WhenFinished: + picker.On().SetUpdateMode(UpdateMode.Immediately); + break; + } + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSafeAreaPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSafeAreaPage.xaml.cs index 0217fcd9e0d1..ed46616274bc 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSafeAreaPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSafeAreaPage.xaml.cs @@ -5,17 +5,17 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSSafeAreaPage : ContentPage - { - public iOSSafeAreaPage() - { - InitializeComponent(); - } + public partial class iOSSafeAreaPage : ContentPage + { + public iOSSafeAreaPage() + { + InitializeComponent(); + } - void OnButtonClicked(object sender, EventArgs e) - { - On().SetUseSafeArea(false); - (sender as Button).IsEnabled = false; - } - } + void OnButtonClicked(object sender, EventArgs e) + { + On().SetUseSafeArea(false); + (sender as Button).IsEnabled = false; + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSScrollViewPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSScrollViewPage.xaml.cs index 9c4c6f00c9d1..0e8c1d513ac5 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSScrollViewPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSScrollViewPage.xaml.cs @@ -5,24 +5,24 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSScrollViewPage : Microsoft.Maui.Controls.FlyoutPage - { - ICommand _returnToPlatformSpecificsPage; + public partial class iOSScrollViewPage : Microsoft.Maui.Controls.FlyoutPage + { + ICommand _returnToPlatformSpecificsPage; - public iOSScrollViewPage(ICommand restore) - { - InitializeComponent(); - _returnToPlatformSpecificsPage = restore; - } + public iOSScrollViewPage(ICommand restore) + { + InitializeComponent(); + _returnToPlatformSpecificsPage = restore; + } - void OnButtonClicked(object sender, EventArgs e) - { - scrollView.On().SetShouldDelayContentTouches(!scrollView.On().ShouldDelayContentTouches()); - } + void OnButtonClicked(object sender, EventArgs e) + { + scrollView.On().SetShouldDelayContentTouches(!scrollView.On().ShouldDelayContentTouches()); + } - void OnReturnButtonClicked(object sender, EventArgs e) - { - _returnToPlatformSpecificsPage.Execute(null); - } - } + void OnReturnButtonClicked(object sender, EventArgs e) + { + _returnToPlatformSpecificsPage.Execute(null); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSearchBarPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSearchBarPage.xaml.cs index 963a18096413..1a437d23a633 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSearchBarPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSearchBarPage.xaml.cs @@ -6,32 +6,32 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSSearchBarPage : ContentPage - { - public iOSSearchBarPage() - { - InitializeComponent(); - } + public partial class iOSSearchBarPage : ContentPage + { + public iOSSearchBarPage() + { + InitializeComponent(); + } - void OnSearchBarStyleButtonClicked(object sender, EventArgs e) - { - switch (searchBar.On().GetSearchBarStyle()) - { - case UISearchBarStyle.Default: - searchBar.On().SetSearchBarStyle(UISearchBarStyle.Minimal); - break; - case UISearchBarStyle.Minimal: - searchBar.On().SetSearchBarStyle(UISearchBarStyle.Prominent); - break; - case UISearchBarStyle.Prominent: - searchBar.On().SetSearchBarStyle(UISearchBarStyle.Default); - break; - } - } + void OnSearchBarStyleButtonClicked(object sender, EventArgs e) + { + switch (searchBar.On().GetSearchBarStyle()) + { + case UISearchBarStyle.Default: + searchBar.On().SetSearchBarStyle(UISearchBarStyle.Minimal); + break; + case UISearchBarStyle.Minimal: + searchBar.On().SetSearchBarStyle(UISearchBarStyle.Prominent); + break; + case UISearchBarStyle.Prominent: + searchBar.On().SetSearchBarStyle(UISearchBarStyle.Default); + break; + } + } - void OnToggleBackgroundButtonClicked(object sender, EventArgs e) - { - searchBar.BackgroundColor = (searchBar.BackgroundColor == Colors.Teal) ? Colors.Black : Colors.Teal; - } - } + void OnToggleBackgroundButtonClicked(object sender, EventArgs e) + { + searchBar.BackgroundColor = (searchBar.BackgroundColor == Colors.Teal) ? Colors.Black : Colors.Teal; + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSliderUpdateOnTapPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSliderUpdateOnTapPage.xaml.cs index 4c4a050a2e73..5058ac207e91 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSliderUpdateOnTapPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSliderUpdateOnTapPage.xaml.cs @@ -5,16 +5,16 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSSliderUpdateOnTapPage : ContentPage - { - public iOSSliderUpdateOnTapPage() - { - InitializeComponent(); - } + public partial class iOSSliderUpdateOnTapPage : ContentPage + { + public iOSSliderUpdateOnTapPage() + { + InitializeComponent(); + } - void OnButtonClicked(object sender, EventArgs e) - { - _slider.On().SetUpdateOnTap(!_slider.On().GetUpdateOnTap()); - } - } + void OnButtonClicked(object sender, EventArgs e) + { + _slider.On().SetUpdateOnTap(!_slider.On().GetUpdateOnTap()); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSwipeViewTransitionModePage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSwipeViewTransitionModePage.xaml.cs index 9e6d5601decd..6bb1cf36d82b 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSwipeViewTransitionModePage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSSwipeViewTransitionModePage.xaml.cs @@ -7,22 +7,22 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSSwipeViewTransitionModePage : ContentPage - { - public iOSSwipeViewTransitionModePage() - { - InitializeComponent(); - } + public partial class iOSSwipeViewTransitionModePage : ContentPage + { + public iOSSwipeViewTransitionModePage() + { + InitializeComponent(); + } - void OnSwipeViewTransitionModeChanged(object sender, EventArgs e) - { - SwipeTransitionMode transitionMode = (SwipeTransitionMode)(sender as EnumPicker).SelectedItem; - swipeView.On().SetSwipeTransitionMode(transitionMode); - } + void OnSwipeViewTransitionModeChanged(object sender, EventArgs e) + { + SwipeTransitionMode transitionMode = (SwipeTransitionMode)(sender as EnumPicker).SelectedItem; + swipeView.On().SetSwipeTransitionMode(transitionMode); + } - async void OnDeleteSwipeItemInvoked(object sender, EventArgs e) - { - await DisplayAlert("SwipeView", "Delete invoked.", "OK"); - } - } + async void OnDeleteSwipeItemInvoked(object sender, EventArgs e) + { + await DisplayAlert("SwipeView", "Delete invoked.", "OK"); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTimePickerPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTimePickerPage.xaml.cs index 05861c4a629b..53070066d656 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTimePickerPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTimePickerPage.xaml.cs @@ -5,24 +5,24 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSTimePickerPage : ContentPage - { - public iOSTimePickerPage() - { - InitializeComponent(); - } + public partial class iOSTimePickerPage : ContentPage + { + public iOSTimePickerPage() + { + InitializeComponent(); + } - void OnButtonClicked(object sender, EventArgs e) - { - switch (timePicker.On().UpdateMode()) - { - case UpdateMode.Immediately: - timePicker.On().SetUpdateMode(UpdateMode.WhenFinished); - break; - case UpdateMode.WhenFinished: - timePicker.On().SetUpdateMode(UpdateMode.Immediately); - break; - } - } - } + void OnButtonClicked(object sender, EventArgs e) + { + switch (timePicker.On().UpdateMode()) + { + case UpdateMode.Immediately: + timePicker.On().SetUpdateMode(UpdateMode.WhenFinished); + break; + case UpdateMode.WhenFinished: + timePicker.On().SetUpdateMode(UpdateMode.Immediately); + break; + } + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewNavigationPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewNavigationPage.xaml.cs index d5da385ff581..4b60d14c9206 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewNavigationPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewNavigationPage.xaml.cs @@ -2,12 +2,12 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSTitleViewNavigationPage : NavigationPage - { - public iOSTitleViewNavigationPage(Page page) - { - InitializeComponent(); - PushAsync(page); - } - } + public partial class iOSTitleViewNavigationPage : NavigationPage + { + public iOSTitleViewNavigationPage(Page page) + { + InitializeComponent(); + PushAsync(page); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewPage.xaml.cs index cece6f9316e6..8f1990190b63 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTitleViewPage.xaml.cs @@ -1,24 +1,24 @@ -using System.Windows.Input; -using System; +using System; +using System.Windows.Input; using Microsoft.Maui.Controls; namespace Maui.Controls.Sample.Pages { - public partial class iOSTitleViewPage : ContentPage - { - ICommand _returnToPlatformSpecificsPage; + public partial class iOSTitleViewPage : ContentPage + { + ICommand _returnToPlatformSpecificsPage; - public iOSTitleViewPage(ICommand restore) - { - InitializeComponent(); + public iOSTitleViewPage(ICommand restore) + { + InitializeComponent(); - _returnToPlatformSpecificsPage = restore; - _searchBar.Effects.Add(Effect.Resolve("XamarinDocs.SearchBarEffect")); - } + _returnToPlatformSpecificsPage = restore; + _searchBar.Effects.Add(Effect.Resolve("XamarinDocs.SearchBarEffect")); + } - void OnReturnButtonClicked(object sender, EventArgs e) - { - _returnToPlatformSpecificsPage.Execute(null); - } - } + void OnReturnButtonClicked(object sender, EventArgs e) + { + _returnToPlatformSpecificsPage.Execute(null); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentNavigationBarPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentNavigationBarPage.xaml.cs index edc4c13f635e..29dceefbb34a 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentNavigationBarPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentNavigationBarPage.xaml.cs @@ -1,29 +1,29 @@ -using System.Windows.Input; -using System; +using System; +using System.Windows.Input; using Microsoft.Maui.Controls; using Microsoft.Maui.Controls.PlatformConfiguration; using Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific; namespace Maui.Controls.Sample.Pages { - public partial class iOSTranslucentNavigationBarPage : ContentPage - { - ICommand _returnToPlatformSpecificsPage; + public partial class iOSTranslucentNavigationBarPage : ContentPage + { + ICommand _returnToPlatformSpecificsPage; - public iOSTranslucentNavigationBarPage(ICommand restore) - { - InitializeComponent(); - _returnToPlatformSpecificsPage = restore; - } + public iOSTranslucentNavigationBarPage(ICommand restore) + { + InitializeComponent(); + _returnToPlatformSpecificsPage = restore; + } - void OnTranslucentNavigationBarButtonClicked(object sender, EventArgs e) - { - (Microsoft.Maui.Controls.Application.Current.MainPage as Microsoft.Maui.Controls.NavigationPage).On().SetIsNavigationBarTranslucent(!(Microsoft.Maui.Controls.Application.Current.MainPage as Microsoft.Maui.Controls.NavigationPage).On().IsNavigationBarTranslucent()); - } + void OnTranslucentNavigationBarButtonClicked(object sender, EventArgs e) + { + (Microsoft.Maui.Controls.Application.Current.MainPage as Microsoft.Maui.Controls.NavigationPage).On().SetIsNavigationBarTranslucent(!(Microsoft.Maui.Controls.Application.Current.MainPage as Microsoft.Maui.Controls.NavigationPage).On().IsNavigationBarTranslucent()); + } - void OnReturnButtonClicked(object sender, EventArgs e) - { - _returnToPlatformSpecificsPage.Execute(null); - } - } + void OnReturnButtonClicked(object sender, EventArgs e) + { + _returnToPlatformSpecificsPage.Execute(null); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentTabbedPage.xaml.cs b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentTabbedPage.xaml.cs index 2c8cae398358..d3aecf4a0e21 100644 --- a/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentTabbedPage.xaml.cs +++ b/src/Controls/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSTranslucentTabbedPage.xaml.cs @@ -5,35 +5,35 @@ namespace Maui.Controls.Sample.Pages { - public partial class iOSTranslucentTabbedPage : Microsoft.Maui.Controls.TabbedPage - { - ICommand returnToPlatformSpecificsPage; + public partial class iOSTranslucentTabbedPage : Microsoft.Maui.Controls.TabbedPage + { + ICommand returnToPlatformSpecificsPage; - public iOSTranslucentTabbedPage(ICommand restore) - { - InitializeComponent(); - returnToPlatformSpecificsPage = restore; - } + public iOSTranslucentTabbedPage(ICommand restore) + { + InitializeComponent(); + returnToPlatformSpecificsPage = restore; + } - void OnToggleButtonClicked(object sender, EventArgs e) - { - switch (On().GetTranslucencyMode()) - { - case TranslucencyMode.Default: - On().SetTranslucencyMode(TranslucencyMode.Translucent); - break; - case TranslucencyMode.Translucent: - On().SetTranslucencyMode(TranslucencyMode.Opaque); - break; - case TranslucencyMode.Opaque: - On().SetTranslucencyMode(TranslucencyMode.Default); - break; - } - } + void OnToggleButtonClicked(object sender, EventArgs e) + { + switch (On().GetTranslucencyMode()) + { + case TranslucencyMode.Default: + On().SetTranslucencyMode(TranslucencyMode.Translucent); + break; + case TranslucencyMode.Translucent: + On().SetTranslucencyMode(TranslucencyMode.Opaque); + break; + case TranslucencyMode.Opaque: + On().SetTranslucencyMode(TranslucencyMode.Default); + break; + } + } - void OnReturnButtonClicked(object sender, EventArgs e) - { - returnToPlatformSpecificsPage.Execute(null); - } - } + void OnReturnButtonClicked(object sender, EventArgs e) + { + returnToPlatformSpecificsPage.Execute(null); + } + } } diff --git a/src/Controls/samples/Controls.Sample/Platforms/MacCatalyst/AppDelegate.cs b/src/Controls/samples/Controls.Sample/Platforms/MacCatalyst/AppDelegate.cs index 397b7a9c006b..5495d4e0df26 100644 --- a/src/Controls/samples/Controls.Sample/Platforms/MacCatalyst/AppDelegate.cs +++ b/src/Controls/samples/Controls.Sample/Platforms/MacCatalyst/AppDelegate.cs @@ -1,10 +1,10 @@ using Foundation; -using ObjCRuntime; -using UIKit; using Microsoft.Maui; using Microsoft.Maui.Hosting; +using ObjCRuntime; +using UIKit; -#if !NET6_0 +#if !NET6_0_OR_GREATER using Microsoft.Maui.Controls; #endif diff --git a/src/Controls/samples/Controls.Sample/ViewModels/AndroidViewCellPageViewModel.cs b/src/Controls/samples/Controls.Sample/ViewModels/AndroidViewCellPageViewModel.cs index 79d726509d37..dde5e3959bb9 100644 --- a/src/Controls/samples/Controls.Sample/ViewModels/AndroidViewCellPageViewModel.cs +++ b/src/Controls/samples/Controls.Sample/ViewModels/AndroidViewCellPageViewModel.cs @@ -2,8 +2,8 @@ using System.ComponentModel; using System.Runtime.CompilerServices; using System.Windows.Input; -using Microsoft.Maui.Controls; using Maui.Controls.Sample.Models; +using Microsoft.Maui.Controls; namespace Maui.Controls.Sample.ViewModels { diff --git a/src/Controls/samples/Controls.Sample/ViewModels/ControlsViewModel.cs b/src/Controls/samples/Controls.Sample/ViewModels/ControlsViewModel.cs index 93d82246cbb0..16991e982b54 100644 --- a/src/Controls/samples/Controls.Sample/ViewModels/ControlsViewModel.cs +++ b/src/Controls/samples/Controls.Sample/ViewModels/ControlsViewModel.cs @@ -11,7 +11,7 @@ protected override IEnumerable CreateItems() => new[] { new SectionModel(typeof(ActivityIndicatorPage), "ActivityIndicator", "Displays an animation to show that the application is engaged in a lengthy activity."), - + new SectionModel(typeof(BordersPage), "Border", "Draws a border around a View."), diff --git a/src/Controls/samples/Controls.Sample/ViewModels/ListViewViewModel.cs b/src/Controls/samples/Controls.Sample/ViewModels/ListViewViewModel.cs index aa54f6c11a52..08c4edd86663 100644 --- a/src/Controls/samples/Controls.Sample/ViewModels/ListViewViewModel.cs +++ b/src/Controls/samples/Controls.Sample/ViewModels/ListViewViewModel.cs @@ -15,7 +15,7 @@ public ListViewViewModel(int num = 2000) var rnd = new Random(); var employees = new List(); - for(int i = 0; i < num; i++) + for (int i = 0; i < num; i++) { employees.Add(new Person($"Name {i + 1}", rnd.Next(18, 65), $"Location {i + 1}")); } diff --git a/src/Controls/samples/Controls.Sample/ViewModels/OthersViewModel.cs b/src/Controls/samples/Controls.Sample/ViewModels/OthersViewModel.cs index c041b690ed01..9c2798e06a94 100644 --- a/src/Controls/samples/Controls.Sample/ViewModels/OthersViewModel.cs +++ b/src/Controls/samples/Controls.Sample/ViewModels/OthersViewModel.cs @@ -11,19 +11,19 @@ protected override IEnumerable CreateItems() => new[] { new SectionModel(typeof(GraphicsViewPage), "GraphicsView", "Allow to draw directly in a Canvas. You can combine a canvas and native Views on the same page."), - + new SectionModel(typeof(LargeTitlesPageiOS), "Large Titles - iOS", "This iOS platform-specific is used to display the page title as a large title on the navigation bar of a NavigationPage, for devices that use iOS 11 or greater."), - + new SectionModel(typeof(StyleSheetsPage), "StyleSheets", "Demonstrates the usage of CSS in XAML."), - + new SectionModel(typeof(TwoPaneViewPage), "Foldable", "Demonstrates the usage of TwoPaneView and hinge sensor."), - + new SectionModel(typeof(RenderViewPage), "Render Views", "Demonstrates rendering views as images."), - + new SectionModel(typeof(HitTestingPage), "Hit Testing", "Demonstrates VisualTreeElementExtensions hit testing methods"), }; diff --git a/src/Controls/samples/Controls.Sample/ViewModels/PlatformSpecificsViewModel.cs b/src/Controls/samples/Controls.Sample/ViewModels/PlatformSpecificsViewModel.cs index 55668e3aca95..4efb4bfc8e02 100644 --- a/src/Controls/samples/Controls.Sample/ViewModels/PlatformSpecificsViewModel.cs +++ b/src/Controls/samples/Controls.Sample/ViewModels/PlatformSpecificsViewModel.cs @@ -45,72 +45,72 @@ protected override IEnumerable CreateItems() #elif IOS || MACCATALYST return new[] { - new SectionModel(typeof(iOSBlurEffectPage), "Blur Effect", + new SectionModel(typeof(iOSBlurEffectPage), "Blur Effect", "This iOS platform-specific is used to blur the content layered beneath it, and can be applied to any VisualElement."), - - new SectionModel(typeof(iOSDatePickerPage), "DatePicker UpdateMode", + + new SectionModel(typeof(iOSDatePickerPage), "DatePicker UpdateMode", "This iOS platform-specific controls when item selection occurs in a DatePicker, allowing the user to specify that item selection occurs when browsing items in the control, or only once the Done button is pressed."), - - new SectionModel(typeof(iOSEntryPage), "AdjustsFontSizeToFitWidth", + + new SectionModel(typeof(iOSEntryPage), "AdjustsFontSizeToFitWidth", "This iOS platform-specific is used to scale the font size of an Entry to ensure that the inputted text fits in the control."), - - new SectionModel(typeof(iOSFirstResponderPage), "VisualElement first responder", + + new SectionModel(typeof(iOSFirstResponderPage), "VisualElement first responder", "This iOS platform-specific enables a VisualElement object to become the first responder to touch events, rather than the page containing the element."), - - new SectionModel(typeof(iOSFlyoutPage), "FlyoutPage Shadow", + + new SectionModel(typeof(iOSFlyoutPage), "FlyoutPage Shadow", "This platform-specific controls whether the detail page of a FlyoutPage has shadow applied to it, when revealing the flyout page."), - - new SectionModel(typeof(iOSHideHomeIndicatorPage), "Hide Home Indicator", + + new SectionModel(typeof(iOSHideHomeIndicatorPage), "Hide Home Indicator", "This iOS platform-specific sets the visibility of the home indicator on a Page."), - - new SectionModel(typeof(iOSLargeTitlePage), "Large Title", + + new SectionModel(typeof(iOSLargeTitlePage), "Large Title", "This iOS platform-specific is used to display the page title as a large title on the navigation bar of a NavigationPage, for devices that use iOS 11 or greater."), - - new SectionModel(typeof(iOSListViewPage), "ListView Platform-Specifics", + + new SectionModel(typeof(iOSListViewPage), "ListView Platform-Specifics", "This iOS platform-specific controls whether the separator between cells in a ListView uses the full width of the ListView."), - new SectionModel(typeof(iOSListViewWithCellPage), "ListView/Cell Platform-Specifics", + new SectionModel(typeof(iOSListViewWithCellPage), "ListView/Cell Platform-Specifics", "This iOS platform-specific controls whether ListView header cells float during scrolling."), - new SectionModel(typeof(iOSModalPagePresentationStyle), "Modal FormSheet Page", + new SectionModel(typeof(iOSModalPagePresentationStyle), "Modal FormSheet Page", "This iOS platform-specific is used to set the presentation style of a modal page, and in addition can be used to display modal pages that have transparent backgrounds."), - new SectionModel(typeof(iOSNavigationPage), "NavigationPage Platform-Specifics", + new SectionModel(typeof(iOSNavigationPage), "NavigationPage Platform-Specifics", "This iOS platform-specific hides the separator line and shadow that is at the bottom of the navigation bar on a NavigationPage"), - new SectionModel(typeof(iOSPanGestureRecognizerPage), "Pan Gesture Recognizer Platform-Specific", + new SectionModel(typeof(iOSPanGestureRecognizerPage), "Pan Gesture Recognizer Platform-Specific", "This iOS platform-specific enables a PanGestureRecognizer in a scrolling view to capture and share the pan gesture with the scrolling view."), - new SectionModel(typeof(iOSPickerPage), "Picker UpdateMode", + new SectionModel(typeof(iOSPickerPage), "Picker UpdateMode", "This iOS platform-specific controls when item selection occurs in a Picker, allowing the user to specify that item selection occurs when browsing items in the control, or only once the Done button is pressed."), - new SectionModel(typeof(iOSSafeAreaPage), "Safe Area", + new SectionModel(typeof(iOSSafeAreaPage), "Safe Area", "This iOS platform-specific is used to ensure that page content is positioned on an area of the screen that is safe for all devices that use iOS 11 and greater."), - new SectionModel(typeof(iOSScrollViewPage), "ScrollView Content Touches", + new SectionModel(typeof(iOSScrollViewPage), "ScrollView Content Touches", "This platform-specific controls whether a ScrollView handles a touch gesture or passes it to its content."), - new SectionModel(typeof(iOSSearchBarPage), "SearchBar Style", - "This iOS platform-specific controls whether a SearchBar has a background."), - - new SectionModel(typeof(iOSSliderUpdateOnTapPage), "Slider Update on Tap", + new SectionModel(typeof(iOSSearchBarPage), "SearchBar Style", + "This iOS platform-specific controls whether a SearchBar has a background."), + + new SectionModel(typeof(iOSSliderUpdateOnTapPage), "Slider Update on Tap", "This iOS platform-specific enables the Slider.Value property to be set by tapping on a position on the Slider bar, rather than by having to drag the Slider thumb."), - new SectionModel(typeof(iOSStatusBarPage), "Hide Status Bar", + new SectionModel(typeof(iOSStatusBarPage), "Hide Status Bar", "This iOS platform-specific is used to set the visibility of the status bar on a Page, and it includes the ability to control how the status bar enters or leaves the Page."), - new SectionModel(typeof(iOSSwipeViewTransitionModePage), "SwipeView SwipeTransitionMode", + new SectionModel(typeof(iOSSwipeViewTransitionModePage), "SwipeView SwipeTransitionMode", "This iOS platform-specific controls the transition that's used when opening a SwipeView."), - new SectionModel(typeof(iOSTimePickerPage), "TimePicker UpdateMode", + new SectionModel(typeof(iOSTimePickerPage), "TimePicker UpdateMode", "This iOS platform-specific controls when item selection occurs in a TimePicker, allowing the user to specify that item selection occurs when browsing items in the control, or only once the Done button is pressed."), - new SectionModel(typeof(iOSTranslucentNavigationBarPage), "NavigationPage Translucent TabBar", + new SectionModel(typeof(iOSTranslucentNavigationBarPage), "NavigationPage Translucent TabBar", "This iOS platform-specific is used to set the translucency mode of the tab bar on a NavigationPage."), - new SectionModel(typeof(MainPage), "TabbedPage Translucent TabBar", + new SectionModel(typeof(MainPage), "TabbedPage Translucent TabBar", "This iOS platform-specific is used to set the translucency mode of the tab bar on a TabbedPage."), - }; + }; #elif WINDOWS return new[] { diff --git a/src/Controls/samples/Controls.Sample/ViewModels/ScrollViewOptionsModel.cs b/src/Controls/samples/Controls.Sample/ViewModels/ScrollViewOptionsModel.cs new file mode 100644 index 000000000000..918d75bcc165 --- /dev/null +++ b/src/Controls/samples/Controls.Sample/ViewModels/ScrollViewOptionsModel.cs @@ -0,0 +1,41 @@ +using System.Collections.Generic; +using Maui.Controls.Sample.Models; +using Maui.Controls.Sample.ViewModels.Base; +using Maui.Controls.Sample.Pages.ScrollViewPages; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Graphics; +using Microsoft.Maui; + +namespace Maui.Controls.Sample.ViewModels +{ + public class ScrollViewOptionsModel : BaseGalleryViewModel + { + protected override IEnumerable CreateItems() => new[] + { + new SectionModel(typeof(ScrollToEndPage), "Scroll To End", + "ScrollView is capable of scrolling its contents."), + + new SectionModel(typeof(ScrollViewTemplatePage), "Default Template", + "Default Template", new ScrollViewTemplatePageModel()), + + new SectionModel(typeof(ScrollViewTemplatePage), "Align Start", + "Vertical Align Start", new ScrollViewTemplatePageModel{ VerticalAlignment = LayoutOptions.Start }), + + new SectionModel(typeof(ScrollViewTemplatePage), "Align End", + "Vertical Align End", new ScrollViewTemplatePageModel{ VerticalAlignment = LayoutOptions.End }), + + new SectionModel(typeof(ScrollViewTemplatePage), "Align Fill", + "Vertical Align Fill", new ScrollViewTemplatePageModel{ VerticalAlignment = LayoutOptions.Fill }), + + new SectionModel(typeof(ScrollViewTemplatePage), "Large Item Spacing", + "Default Template with Large Item Spacing", new ScrollViewTemplatePageModel{ Spacing = 200 }), + + new SectionModel(typeof(ScrollViewTemplatePage), "Large Item Spacing, ScrollView Padding", + "Default Template with Large Item Spacing and ScrollView Padding", + new ScrollViewTemplatePageModel{ Spacing = 200, ScrollViewPadding = new Thickness(25), + ContentBackground = Colors.LightBlue, VerticalAlignment = LayoutOptions.Fill }), + + + }; + } +} \ No newline at end of file diff --git a/src/Controls/samples/Controls.Sample/XamlApp.xaml b/src/Controls/samples/Controls.Sample/XamlApp.xaml index 5ce66addea29..564f3cc1f1cd 100644 --- a/src/Controls/samples/Controls.Sample/XamlApp.xaml +++ b/src/Controls/samples/Controls.Sample/XamlApp.xaml @@ -9,6 +9,7 @@ + diff --git a/src/Controls/src/Build.Tasks/CompiledConverters/EnumTypeConverter.cs b/src/Controls/src/Build.Tasks/CompiledConverters/EnumTypeConverter.cs index 59525c4f46da..db7cb02f9912 100644 --- a/src/Controls/src/Build.Tasks/CompiledConverters/EnumTypeConverter.cs +++ b/src/Controls/src/Build.Tasks/CompiledConverters/EnumTypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Controls.XamlC { - class EnumTypeConverter : ICompiledTypeConverter where TEnum: struct + class EnumTypeConverter : ICompiledTypeConverter where TEnum : struct { public IEnumerable ConvertFromString(string value, ILContext context, BaseNode node) { diff --git a/src/Controls/src/Build.Tasks/NodeILExtensions.cs b/src/Controls/src/Build.Tasks/NodeILExtensions.cs index c66919fa3df0..b600360623ce 100644 --- a/src/Controls/src/Build.Tasks/NodeILExtensions.cs +++ b/src/Controls/src/Build.Tasks/NodeILExtensions.cs @@ -163,7 +163,6 @@ public static IEnumerable PushConvertedValue(this ValueNode node, I { module.ImportReference(("Microsoft.Maui", "Microsoft.Maui.Converters", "FlexAlignSelfTypeConverter")), typeof(EnumTypeConverter) }, { module.ImportReference(("Microsoft.Maui", "Microsoft.Maui.Converters", "FlexWrapTypeConverter")), typeof(EnumTypeConverter) }, { module.ImportReference(("Microsoft.Maui", "Microsoft.Maui.Converters", "FlexBasisTypeConverter")), typeof(FlexBasisTypeConverter) }, - { module.ImportReference(("Microsoft.Maui", "Microsoft.Maui.Converters", "FlowDirectionTypeConverter")), typeof(EnumTypeConverter) }, }; } @@ -171,7 +170,7 @@ public static IEnumerable PushConvertedValue(this ValueNode node, I var str = (string)node.Value; //If the TypeConverter has a ProvideCompiledAttribute that can be resolved, shortcut this Type compiledConverterType; - if ( typeConverter?.GetCustomAttribute(module, ("Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Xaml", "ProvideCompiledAttribute"))?.ConstructorArguments?.First().Value is string compiledConverterName + if (typeConverter?.GetCustomAttribute(module, ("Microsoft.Maui.Controls", "Microsoft.Maui.Controls.Xaml", "ProvideCompiledAttribute"))?.ConstructorArguments?.First().Value is string compiledConverterName && (compiledConverterType = Type.GetType(compiledConverterName)) != null || (typeConverter != null && KnownCompiledTypeConverters.TryGetValue(typeConverter, out compiledConverterType))) { diff --git a/src/Controls/src/Core.Design/AttributeTableBuilder.cs b/src/Controls/src/Core.Design/AttributeTableBuilder.cs index c99f8bb1f8a5..05ef30106e8a 100644 --- a/src/Controls/src/Core.Design/AttributeTableBuilder.cs +++ b/src/Controls/src/Core.Design/AttributeTableBuilder.cs @@ -30,7 +30,7 @@ public AttributeTableBuilder() AddMemberAttributes("Microsoft.Maui.Controls.VisualElement", "Visual", new TypeConverterAttribute(typeof(VisualDesignTypeConverter))); - AddTypeAttributes("Microsoft.Maui.FlowDirection", + AddMemberAttributes("Microsoft.Maui.Controls.VisualElement", "FlowDirection", new TypeConverterAttribute(typeof(FlowDirectionDesignTypeConverter))); AddMemberAttributes("Microsoft.Maui.Controls.ItemsView", "ItemsLayout", @@ -51,14 +51,14 @@ public AttributeTableBuilder() // though, since its visibility in the markup is controlled by the EditorBrowsableAttribute. // Make OnPlatform/OnIdiom visible for intellisense, and set as markup extension. AddTypeAttributes("Microsoft.Maui.Controls.OnPlatform<>", - new EditorBrowsableAttribute (EditorBrowsableState.Always) - //new System.ComponentModel.TypeConverterAttribute(typeof(AnythingConverter)), - //new System.Windows.Markup.MarkupExtensionReturnTypeAttribute (), + new EditorBrowsableAttribute(EditorBrowsableState.Always) + //new System.ComponentModel.TypeConverterAttribute(typeof(AnythingConverter)), + //new System.Windows.Markup.MarkupExtensionReturnTypeAttribute (), ); AddTypeAttributes("Microsoft.Maui.Controls.OnIdiom<>", new EditorBrowsableAttribute(EditorBrowsableState.Always) - //new System.ComponentModel.TypeConverterAttribute(typeof(AnythingConverter)), - //new System.Windows.Markup.MarkupExtensionReturnTypeAttribute (), + //new System.ComponentModel.TypeConverterAttribute(typeof(AnythingConverter)), + //new System.Windows.Markup.MarkupExtensionReturnTypeAttribute (), ); AddTypeAttributes("Microsoft.Maui.Graphics.Color", new TypeConverterAttribute(typeof(ColorDesignTypeConverter))); diff --git a/src/Controls/src/Core.Design/Controls.Core.Design.csproj b/src/Controls/src/Core.Design/Controls.Core.Design.csproj index 07dbac3e3671..7800ead16910 100644 --- a/src/Controls/src/Core.Design/Controls.Core.Design.csproj +++ b/src/Controls/src/Core.Design/Controls.Core.Design.csproj @@ -4,7 +4,7 @@ Microsoft.Maui.Controls.DesignTools False False - <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' And '$(MSBuildRuntimeType)' == 'Full'">True + <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' ">True diff --git a/src/Controls/src/Core.Design/FlexEnumDesignTypeConverters.cs b/src/Controls/src/Core.Design/FlexEnumDesignTypeConverters.cs index e4819e288f46..46d01120ae4d 100644 --- a/src/Controls/src/Core.Design/FlexEnumDesignTypeConverters.cs +++ b/src/Controls/src/Core.Design/FlexEnumDesignTypeConverters.cs @@ -99,14 +99,14 @@ public class FlexBasisDesignTypeConverter : KnownValuesDesignTypeConverter { protected override string[] KnownValues => new[] { - "Auto", + "Auto", }; public override bool IsValid(ITypeDescriptorContext context, object value) { if (KnownValues.Any(v => value?.ToString()?.Equals(v, StringComparison.Ordinal) ?? false)) return true; - + var strValue = value?.ToString().Trim(); if (strValue is null) @@ -114,7 +114,7 @@ public override bool IsValid(ITypeDescriptorContext context, object value) if (strValue.EndsWith("%", StringComparison.OrdinalIgnoreCase) && float.TryParse(strValue.Substring(0, strValue.Length - 1), NumberStyles.Number, CultureInfo.InvariantCulture, out float relflex)) return true; - + if (float.TryParse(strValue, NumberStyles.Number, CultureInfo.InvariantCulture, out float flex)) return true; diff --git a/src/Controls/src/Core.Design/FlowDirectionDesignTypeConverter.cs b/src/Controls/src/Core.Design/FlowDirectionDesignTypeConverter.cs index d9bfa0bd1b44..0d0229932796 100644 --- a/src/Controls/src/Core.Design/FlowDirectionDesignTypeConverter.cs +++ b/src/Controls/src/Core.Design/FlowDirectionDesignTypeConverter.cs @@ -16,7 +16,7 @@ protected override string[] KnownValues => new[] { "MatchParent", - "LeftToRight", + "LeftToRight", "RightToLeft" }; } diff --git a/src/Controls/src/Core.Design/ItemsLayoutDesignTypeConverter.cs b/src/Controls/src/Core.Design/ItemsLayoutDesignTypeConverter.cs index b8de236e2e7c..c1ac725ac11c 100644 --- a/src/Controls/src/Core.Design/ItemsLayoutDesignTypeConverter.cs +++ b/src/Controls/src/Core.Design/ItemsLayoutDesignTypeConverter.cs @@ -7,6 +7,6 @@ public ItemsLayoutDesignTypeConverter() } protected override string[] KnownValues - => new [] { "VerticalList", "HorizontalList", "VerticalGrid", "HorizontalGrid" }; + => new[] { "VerticalList", "HorizontalList", "VerticalGrid", "HorizontalGrid" }; } } \ No newline at end of file diff --git a/src/Controls/src/Core/AppThemeBinding.cs b/src/Controls/src/Core/AppThemeBinding.cs index 171a61e21d86..fb2cc0a0ce6a 100644 --- a/src/Controls/src/Core/AppThemeBinding.cs +++ b/src/Controls/src/Core/AppThemeBinding.cs @@ -1,6 +1,5 @@ using System; using Microsoft.Maui.ApplicationModel; -using Microsoft.Maui.Devices; namespace Microsoft.Maui.Controls { @@ -9,8 +8,6 @@ class AppThemeBinding : BindingBase WeakReference _weakTarget; BindableProperty _targetProperty; - public AppThemeBinding() => Application.Current.RequestedThemeChanged += (o, e) => ApplyCore(true); - internal override BindingBase Clone() => new AppThemeBinding { Light = Light, @@ -24,6 +21,8 @@ internal override void Apply(bool fromTarget) { base.Apply(fromTarget); ApplyCore(); + + AttachEvents(); } internal override void Apply(object context, BindableObject bindObj, BindableProperty targetProperty, bool fromBindingContextChanged = false) @@ -32,19 +31,29 @@ internal override void Apply(object context, BindableObject bindObj, BindablePro _targetProperty = targetProperty; base.Apply(context, bindObj, targetProperty, fromBindingContextChanged); ApplyCore(); + + AttachEvents(); } internal override void Unapply(bool fromBindingContextChanged = false) { + DetachEvents(); + base.Unapply(fromBindingContextChanged); _weakTarget = null; _targetProperty = null; } + void OnRequestedThemeChanged(object sender, AppThemeChangedEventArgs e) + => ApplyCore(true); + void ApplyCore(bool dispatch = false) { if (_weakTarget == null || !_weakTarget.TryGetTarget(out var target)) + { + DetachEvents(); return; + } if (dispatch) target.Dispatcher.DispatchIfRequired(Set); @@ -81,11 +90,51 @@ public object Dark public object Default { get; set; } + // Ideally this will get reworked to not use `Application.Current` at all + // https://github.com/dotnet/maui/issues/8713 + // But I'm going with a simple nudge for now so that we can get our + // device tests back to a working state and address issues + // of the more crashing variety object GetValue() - => Application.Current.RequestedTheme switch - { - AppTheme.Dark => _isDarkSet ? Dark : Default, - _ => _isLightSet ? Light : Default, - }; + { + Application app; + + if (_weakTarget?.TryGetTarget(out var target) == true && + target is VisualElement ve && + ve?.Window?.Parent is Application a) + { + app = a; + } + else + { + app = Application.Current; + } + + AppTheme appTheme; + if (app == null) + appTheme = AppInfo.RequestedTheme; + else + appTheme = app.RequestedTheme; + + return appTheme switch + { + AppTheme.Dark => _isDarkSet ? Dark : Default, + _ => _isLightSet ? Light : Default, + }; + } + + void AttachEvents() + { + DetachEvents(); + + if (Application.Current != null) + Application.Current.RequestedThemeChanged += OnRequestedThemeChanged; + } + + void DetachEvents() + { + if (Application.Current != null) + Application.Current.RequestedThemeChanged -= OnRequestedThemeChanged; + } } } \ No newline at end of file diff --git a/src/Controls/src/Core/BindableObject.cs b/src/Controls/src/Core/BindableObject.cs index 467c325da33a..94d4ba04dc01 100644 --- a/src/Controls/src/Core/BindableObject.cs +++ b/src/Controls/src/Core/BindableObject.cs @@ -446,7 +446,7 @@ internal void SetValueCore(BindableProperty property, object value, SetValueFlag // else omitted on purpose //if we're updating a dynamic resource from style, set the default backup value - if ( (context.Attributes & (BindableContextAttributes.IsDynamicResource | BindableContextAttributes.IsSetFromStyle)) != 0 + if ((context.Attributes & (BindableContextAttributes.IsDynamicResource | BindableContextAttributes.IsSetFromStyle)) != 0 && (attributes & SetValueFlags.ClearDynamicResource) == 0) SetBackupStyleValue(property, value); diff --git a/src/Controls/src/Core/Border.cs b/src/Controls/src/Core/Border.cs index f468bad8bd76..ccc32a2c7683 100644 --- a/src/Controls/src/Core/Border.cs +++ b/src/Controls/src/Core/Border.cs @@ -36,29 +36,29 @@ public Thickness Padding } public static readonly BindableProperty StrokeShapeProperty = - BindableProperty.Create(nameof(StrokeShape), typeof(IShape), typeof(Layout), null); + BindableProperty.Create(nameof(StrokeShape), typeof(IShape), typeof(Border), null); public static readonly BindableProperty StrokeProperty = - BindableProperty.Create(nameof(Stroke), typeof(Brush), typeof(Layout), null); + BindableProperty.Create(nameof(Stroke), typeof(Brush), typeof(Border), null); public static readonly BindableProperty StrokeThicknessProperty = - BindableProperty.Create(nameof(StrokeThickness), typeof(double), typeof(Layout), 1.0, propertyChanged: StrokeThicknessChanged); + BindableProperty.Create(nameof(StrokeThickness), typeof(double), typeof(Border), 1.0, propertyChanged: StrokeThicknessChanged); public static readonly BindableProperty StrokeDashArrayProperty = - BindableProperty.Create(nameof(StrokeDashArray), typeof(DoubleCollection), typeof(Layout), null, + BindableProperty.Create(nameof(StrokeDashArray), typeof(DoubleCollection), typeof(Border), null, defaultValueCreator: bindable => new DoubleCollection()); public static readonly BindableProperty StrokeDashOffsetProperty = - BindableProperty.Create(nameof(StrokeDashOffset), typeof(double), typeof(Layout), 0.0); + BindableProperty.Create(nameof(StrokeDashOffset), typeof(double), typeof(Border), 0.0); public static readonly BindableProperty StrokeLineCapProperty = - BindableProperty.Create(nameof(StrokeLineCap), typeof(PenLineCap), typeof(Layout), PenLineCap.Flat); + BindableProperty.Create(nameof(StrokeLineCap), typeof(PenLineCap), typeof(Border), PenLineCap.Flat); public static readonly BindableProperty StrokeLineJoinProperty = - BindableProperty.Create(nameof(StrokeLineJoin), typeof(PenLineJoin), typeof(Layout), PenLineJoin.Miter); + BindableProperty.Create(nameof(StrokeLineJoin), typeof(PenLineJoin), typeof(Border), PenLineJoin.Miter); public static readonly BindableProperty StrokeMiterLimitProperty = - BindableProperty.Create(nameof(StrokeMiterLimit), typeof(double), typeof(Layout), 10.0); + BindableProperty.Create(nameof(StrokeMiterLimit), typeof(double), typeof(Border), 10.0); [System.ComponentModel.TypeConverter(typeof(StrokeShapeTypeConverter))] public IShape? StrokeShape diff --git a/src/Controls/src/Core/Compatibility/Android/FontNamedSizeService.cs b/src/Controls/src/Core/Compatibility/Android/FontNamedSizeService.cs index 40a195b40c13..a37f4d5f5aea 100644 --- a/src/Controls/src/Core/Compatibility/Android/FontNamedSizeService.cs +++ b/src/Controls/src/Core/Compatibility/Android/FontNamedSizeService.cs @@ -62,7 +62,7 @@ public double GetNamedSize(NamedSize size, Type targetElementType, bool useOldSi case NamedSize.Caption: return 12; case NamedSize.Header: - return 96; + return 14; case NamedSize.Subtitle: return 16; case NamedSize.Title: @@ -94,7 +94,7 @@ public double GetNamedSize(NamedSize size, Type targetElementType, bool useOldSi case NamedSize.Caption: return 12; case NamedSize.Header: - return 96; + return 14; case NamedSize.Subtitle: return 16; case NamedSize.Title: diff --git a/src/Controls/src/Core/Compatibility/Handlers/Android/FrameRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Android/FrameRenderer.cs index 8321b9ddb7b6..5502e4fd1fba 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Android/FrameRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Android/FrameRenderer.cs @@ -122,7 +122,7 @@ protected virtual void OnElementChanged(ElementChangedEventArgs e) protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) { - if (Element?.Handler is IPlatformViewHandler pvh && + if (Element?.Handler is IPlatformViewHandler pvh && Element is IContentView cv) { var size = pvh.MeasureVirtualView(widthMeasureSpec, heightMeasureSpec, cv.CrossPlatformMeasure); diff --git a/src/Controls/src/Core/Compatibility/Handlers/Android/ViewRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Android/ViewRenderer.cs index 7230f0ce1079..329d20940976 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Android/ViewRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Android/ViewRenderer.cs @@ -20,8 +20,19 @@ public abstract partial class ViewRenderer : VisualElem TPlatformView? _platformView; AViewGroup? _container; - public TPlatformView? Control => ((IElementHandler)this).PlatformView as TPlatformView ?? _platformView; - object? IElementHandler.PlatformView => _platformView; + public TPlatformView? Control + { + get + { + var value = ((IElementHandler)this).PlatformView as TPlatformView; + if (value != this && value != null) + return value; + + return _platformView; + } + } + + object? IElementHandler.PlatformView => (_platformView as object) ?? this; public ViewRenderer(Context context) : this(context, VisualElementRendererMapper, VisualElementRendererCommandMapper) { diff --git a/src/Controls/src/Core/Compatibility/Handlers/Android/VisualElementRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Android/VisualElementRenderer.cs index 80ae9137cec3..aaa7b9752edb 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Android/VisualElementRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Android/VisualElementRenderer.cs @@ -12,7 +12,10 @@ namespace Microsoft.Maui.Controls.Handlers.Compatibility public abstract partial class VisualElementRenderer : AViewGroup, IPlatformViewHandler where TElement : Element, IView { - object? IElementHandler.PlatformView => ChildCount > 0 ? GetChildAt(0) : null; + object? IElementHandler.PlatformView + { + get => ChildCount > 0 ? GetChildAt(0) : this; + } static partial void ProcessAutoPackage(Maui.IElement element) { diff --git a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellAdapter.cs b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellAdapter.cs index 9b939ad5f3ed..6ce6d62f2294 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellAdapter.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellAdapter.cs @@ -10,7 +10,7 @@ using AListView = Android.Widget.ListView; using AView = Android.Views.View; using Microsoft.Maui.Controls.Platform; -#if NET6_0 +#if NET6_0_OR_GREATER using AMenu = Android.Views.IMenu; #else using AMenu = Android.Views.Menu; diff --git a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellRenderer.cs index 46b43b7d780f..39803357e2bc 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/CellRenderer.cs @@ -63,7 +63,7 @@ public AView GetCell(Cell item, AView convertView, ViewGroup parent, Context con if (Cell != oldCell) { - oldCell.Handler.DisconnectHandler(); + oldCell.Handler?.DisconnectHandler(); } } } diff --git a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewAdapter.cs b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewAdapter.cs index d57f07d1d6c6..5b8d2492ec84 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewAdapter.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewAdapter.cs @@ -88,6 +88,7 @@ public override int Count _listCount = count; } + return _listCount; } } @@ -252,6 +253,8 @@ public override AView GetView(int position, AView convertView, ViewGroup parent) { cellIsBeingReused = true; convertView = layout.GetChildAt(0); + + _layoutsCreated[position] = layout; } else { @@ -267,6 +270,10 @@ public override AView GetView(int position, AView convertView, ViewGroup parent) else { layout = new ConditionalFocusLayout(_context) { Orientation = Orientation.Vertical }; + + if (_layoutsCreated.TryGetValue(position, out ConditionalFocusLayout value)) + DisposeOfConditionalFocusLayout(value); + _layoutsCreated[position] = layout; } } @@ -541,6 +548,10 @@ void DisposeOfConditionalFocusLayout(ConditionalFocusLayout layout) var element = (renderedView as INativeElementView)?.Element; var view = (element as ViewCell)?.View; + + if (renderedView is ViewGroup vg && view?.Handler?.PlatformView is AView aView) + vg.RemoveView(aView); + view?.Handler?.DisconnectHandler(); } @@ -772,4 +783,4 @@ protected virtual void InvalidateCount() } } -} \ No newline at end of file +} diff --git a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewRenderer.cs index 6b223261ce70..10a779addbc1 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ListViewRenderer.cs @@ -17,7 +17,7 @@ namespace Microsoft.Maui.Controls.Handlers.Compatibility { public class ListViewRenderer : ViewRenderer { - public static PropertyMapper Mapper = + public static PropertyMapper Mapper = new PropertyMapper(VisualElementRendererMapper); public static CommandMapper CommandMapper = @@ -29,6 +29,7 @@ public class ListViewRenderer : ViewRenderer Container _headerView; Container _footerView; bool _isAttached; + bool _reattached; ScrollToRequestedEventArgs _pendingScrollTo; SwipeRefreshLayout _refresh; @@ -61,6 +62,22 @@ protected override void OnAttachedToWindow() _isAttached = true; _adapter.IsAttachedToWindow = _isAttached; UpdateIsRefreshing(isInitialValue: true); + + // There might be a better way to go about doing this but from what I can tell + // once you detach and then reattach a ListView the cells become unselectable + // and the Android.ListView in general is left in an odd state. + // We didn't have to do this in XF because in XF there's an extra measure call that happens + // when the listview is reattached that essentially does the exact same thing. + // You can see this by adding back the legacy renderers and setting a breakpoint on the + // adapter.GetView call. In MAUI this never gets called when navigating back vs XF it does + if (!_reattached) + { + _reattached = true; + } + else + { + Control?.InvalidateViews(); + } } protected override void OnDetachedFromWindow() @@ -255,11 +272,7 @@ public override SizeRequest GetDesiredSize(double widthConstraint, double height // that in as the convert view so that GetView doesn't create // an additional ConditionalFocusLayout // We're basically faking re-use to the GetView call - AView currentParent = null; - if (cell.Handler?.PlatformView is AView aView) - currentParent = aView.Parent as AView; - - currentParent ??= _adapter.GetConvertViewForMeasuringInfiniteHeight(i); + AView currentParent = _adapter.GetConvertViewForMeasuringInfiniteHeight(i); AView listItem = _adapter.GetView(i, currentParent, Control); int widthSpec; diff --git a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ViewCellRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ViewCellRenderer.cs index 15ee232766cd..16d36e59f056 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ViewCellRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/ListView/Android/ViewCellRenderer.cs @@ -58,6 +58,13 @@ protected override AView GetCellCore(Cell item, AView convertView, ViewGroup par return c; } + protected override void DisconnectHandler(AView platformView) + { + base.DisconnectHandler(platformView); + ViewCellContainer c = platformView.GetParentOfType(); + c?.DisconnectHandler(); + } + internal class ViewCellContainer : ViewGroup, INativeElementView { readonly View _parent; @@ -69,6 +76,7 @@ internal class ViewCellContainer : ViewGroup, INativeElementView GestureDetector _longPressGestureDetector; ListViewRenderer _listViewRenderer; bool _watchForLongPress; + AView _currentView; ListViewRenderer ListViewRenderer { @@ -198,7 +206,24 @@ public void Update(ViewCell cell) _viewCell = cell; Performance.Start(reference, "Reuse.SetElement"); - _viewHandler.SetVirtualView(cell.View); + + if (_viewHandler != cell.View.Handler) + { + if (cell.View.Handler?.PlatformView is AView oldCellView && + oldCellView.GetParentOfType() is ViewCellContainer vc) + { + vc.DisconnectHandler(); + } + + var oldView = _currentView ?? _viewHandler.PlatformView; + if (oldView != null) + RemoveView(oldView); + + cell.View.Handler?.DisconnectHandler(); + _viewHandler.SetVirtualView(cell.View); + AddView(_viewHandler.PlatformView); + } + Performance.Stop(reference, "Reuse.SetElement"); Invalidate(); @@ -208,7 +233,7 @@ public void Update(ViewCell cell) return; } - RemoveView(_viewHandler.PlatformView); + RemoveView(_currentView ?? _viewHandler.PlatformView); _viewCell.View.Handler?.DisconnectHandler(); _viewCell.View.IsPlatformEnabled = false; @@ -231,6 +256,30 @@ public void UpdateIsEnabled() Enabled = _parent.IsEnabled && _viewCell.IsEnabled; } + public void DisconnectHandler() + { + var oldView = _currentView ?? _viewHandler.PlatformView; + if (oldView != null) + RemoveView(oldView); + + _viewCell?.View?.Handler?.DisconnectHandler(); + + } + + public override void AddView(AView child) + { + if (child.Parent is WrapperView wrapperView) + { + base.AddView(wrapperView); + _currentView = wrapperView; + } + else + { + base.AddView(child); + _currentView = child; + } + } + protected override void OnLayout(bool changed, int l, int t, int r, int b) { if (_viewHandler.PlatformView == null || Context == null) diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ContainerView.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ContainerView.cs index a260b8c8dc67..baddc9b3649a 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ContainerView.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ContainerView.cs @@ -3,16 +3,20 @@ using Android.Runtime; using Android.Util; using Android.Views; +using Microsoft.Maui.Platform; using AView = Android.Views.View; namespace Microsoft.Maui.Controls.Platform.Compatibility { public class ContainerView : ViewGroup { + int _parentTopPadding; View _view; ShellViewRenderer _shellContentView; readonly IMauiContext _mauiContext; - AView PlatformView => _view?.Handler?.PlatformView as AView; + internal AView PlatformView => _view?.Handler?.PlatformView as AView; + internal Graphics.Size DesiredSize { get; private set; } + internal Graphics.Size MinimumSize { get; private set; } public ContainerView(Context context, View view, IMauiContext mauiContext) : base(context) { @@ -60,6 +64,28 @@ protected override void OnLayout(bool changed, int l, int t, int r, int b) ((IPlatformViewHandler)View.Handler).LayoutVirtualView(l, t, r, b); } + // This indicates the amount of top padding the parent wants this control to have. This + // allows us to adjust the height measured so that the parent container maintains a constant height. + // + // This is mainly used with ShellHeaderFlyoutBehavior.CollapseOnScroll + // The container added to the AppBarLayout needs to maintain a constant height otherwise the + // OnOffsetChanged value passed in to IOnOffsetChangedListener will just infinitely change as the + // header size keeps changing. So in order to make the collapse work we just have to resize the xplat view + // and then shift it down in the container. + // + // In theory we could call `IView.Arrange` with the desired position in the parent but then that sets the xplat `Frame` + // to values that don't really make any sense from an xplat perspective. This just causes implementation details + // to leak up into the abstraction. It'll just be confusing that the headers position is "0,300" even though it looks + // like it's "0,0" + internal void SetParentTopPadding(int v) + { + if (_parentTopPadding == v) + return; + + _parentTopPadding = v; + this.MaybeRequestLayout(); + } + protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) { if (View == null) @@ -77,8 +103,8 @@ protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) var width = widthMeasureSpec.GetSize(); var height = heightMeasureSpec.GetSize(); - var measureWidth = width > 0 ? width : MeasureSpecMode.Unspecified.MakeMeasureSpec(0); - var measureHeight = height > 0 ? height : MeasureSpecMode.Unspecified.MakeMeasureSpec(0); + var measureWidth = width > 0 ? MeasureSpecMode.Exactly.MakeMeasureSpec(width) : MeasureSpecMode.Unspecified.MakeMeasureSpec(0); + var measureHeight = height > 0 ? MeasureSpecMode.Exactly.MakeMeasureSpec(height) : MeasureSpecMode.Unspecified.MakeMeasureSpec(0); double? maxHeight = null; @@ -97,6 +123,54 @@ protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) } var size = _shellContentView.Measure(measureWidth, measureHeight, null, (int?)maxHeight); + + if (size.Height < this.MinimumHeight) + size = new Graphics.Size(size.Width, this.MinimumHeight); + + DesiredSize = size; + var newHeight = size.Height; + + if (_parentTopPadding > 0) + { + newHeight -= _parentTopPadding; + } + + if (newHeight != size.Height) + { + // Android treats zero as unspecified so we need to set the height to at least 1. + // If there's a view that's able to squish/stretch then passing in zero will give it's stretched size + // but what we want here is the squished size. + var minHeightMeasureSpec = 1; + + if (MinimumHeight > 0) + minHeightMeasureSpec = MinimumHeight; + + if (newHeight <= 0) + { + newHeight = minHeightMeasureSpec; + } + + // For collapse on scroll we need to know the minimum size the view can reach so we can set the minimum size + // on the headers container. This is the only way to get the AppBarLayout collapse behavior to stop producing + // offset changes once the header has reached the minimum size it can get to + MinimumSize = _shellContentView.Measure(measureWidth, MeasureSpecMode.Exactly.MakeMeasureSpec(minHeightMeasureSpec), null, (int?)maxHeight); + + // If the offset of the appbar layout hasn't reached the minimum size then + // we use the new collapsed size to remeasure so everything is the correct size + if (newHeight > minHeightMeasureSpec) + { + size = _shellContentView.Measure(measureWidth, MeasureSpecMode.Exactly.MakeMeasureSpec((int)newHeight), null, (int?)maxHeight); + } + else + { + size = MinimumSize; + } + } + else + { + this.MinimumSize = new Graphics.Size((int)size.Width, this.MinimumHeight); + } + SetMeasuredDimension((int)size.Width, (int)size.Height); } diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellContentView.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellContentView.cs index 384aed12a732..8ecdfc136dd8 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellContentView.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellContentView.cs @@ -6,6 +6,7 @@ using Google.Android.Material.AppBar; using Microsoft.Maui.Controls.Platform.Compatibility; using Microsoft.Maui.Graphics; +using Microsoft.Maui.Platform; using AView = Android.Views.View; using LP = Android.Views.ViewGroup.LayoutParams; @@ -15,7 +16,7 @@ namespace Microsoft.Maui.Controls.Platform.Compatibility internal class ShellViewRenderer { public IViewHandler Handler { get; private set; } - View _view; + IView _view; WeakReference _context; readonly IMauiContext _mauiContext; IView MauiView => View; @@ -38,7 +39,7 @@ public ShellViewRenderer(Context context, View view, IMauiContext mauiContext) View = view; } - public View View + public IView View { get { return _view; } set @@ -49,6 +50,7 @@ public View View public void TearDown() { + MauiView?.Handler?.DisconnectHandler(); View = null; Handler = null; _view = null; @@ -89,15 +91,19 @@ public Graphics.Size Measure(int widthMeasureSpec, int heightMeasureSpec, int? m heightMeasureSpec = MeasureSpecMode.Unspecified.MakeMeasureSpec(0); PlatformView.LayoutParameters = layoutParams; + return ((IPlatformViewHandler)_view.Handler).MeasureVirtualView(widthMeasureSpec, heightMeasureSpec); } - public virtual void OnViewSet(View view) + public virtual void OnViewSet(IView view) { - if (View != null) + if (view == View) + return; + + if (View != null && PlatformView.IsAlive()) { PlatformView.RemoveFromParent(); - View.Handler = null; + View.Handler?.DisconnectHandler(); } _view = view; diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRecyclerAdapter.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRecyclerAdapter.cs index c777e5d51dd2..a9159aea6c67 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRecyclerAdapter.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRecyclerAdapter.cs @@ -16,7 +16,7 @@ namespace Microsoft.Maui.Controls.Platform.Compatibility { public class ShellFlyoutRecyclerAdapter : RecyclerView.Adapter { - readonly IShellContext _shellContext; + IShellContext _shellContext; List _listItems; List> _flyoutGroupings; Action _selectedCallback; @@ -203,15 +203,22 @@ protected override void Dispose(bool disposing) if (disposing) { - ((IShellController)Shell).FlyoutItemsChanged -= OnFlyoutItemsChanged; - - _listItems = null; - _selectedCallback = null; + Disconnect(); } base.Dispose(disposing); } + internal void Disconnect() + { + if (Shell is IShellController scc) + scc.FlyoutItemsChanged -= OnFlyoutItemsChanged; + + _listItems = null; + _selectedCallback = null; + _shellContext = null; + } + public class AdapterListItem { // This ensures that we have a stable id for each element diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRenderer.cs index 70469336b847..6575d8fc845a 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutRenderer.cs @@ -118,13 +118,13 @@ void IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(FlyoutBehavior behavior) #endregion IFlyoutBehaviorObserver const uint DefaultScrimColor = 0x99000000; - readonly IShellContext _shellContext; + IShellContext _shellContext; AView _content; IShellFlyoutContentRenderer _flyoutContent; int _flyoutWidthDefault; double _flyoutWidth = -1; double _flyoutHeight; - bool _flyoutFirstDrawPassFinished; + internal bool FlyoutFirstDrawPassFinished { get; private set; } int _currentLockMode; bool _disposed; Brush _scrimBrush; @@ -182,10 +182,10 @@ protected override bool DrawChild(Canvas canvas, AView child, long drawingTime) canvas.DrawRect(0, 0, Width, Height, _scrimPaint); } - if (!_flyoutFirstDrawPassFinished && _flyoutContent != null) + if (!FlyoutFirstDrawPassFinished && _flyoutContent != null) { if (child == _flyoutContent?.AndroidView) - _flyoutFirstDrawPassFinished = true; + FlyoutFirstDrawPassFinished = true; if (this.IsDrawerOpen(_flyoutContent.AndroidView) != _shellContext.Shell.FlyoutIsPresented) { @@ -261,7 +261,7 @@ protected virtual void OnShellPropertyChanged(object sender, PropertyChangedEven if (e.PropertyName == Shell.FlyoutIsPresentedProperty.PropertyName) { - if (!_flyoutFirstDrawPassFinished) + if (!FlyoutFirstDrawPassFinished) { // if the first draw pass hasn't happened yet // then calling close/open drawer really confuses @@ -391,24 +391,41 @@ void UpdateScrim(Brush backdrop) } } - protected override void Dispose(bool disposing) + internal void Disconnect() { - if (_disposed) - return; + ShellController?.RemoveAppearanceObserver(this); - _disposed = true; - - if (disposing) - { - ShellController.RemoveAppearanceObserver(this); + if (Shell != null) Shell.PropertyChanged -= OnShellPropertyChanged; + if (this.IsAlive()) + { this.DrawerClosed -= OnDrawerClosed; this.DrawerSlide -= OnDrawerSlide; this.DrawerOpened -= OnDrawerOpened; this.DrawerStateChanged -= OnDrawerStateChanged; + } + + ShellController?.RemoveFlyoutBehaviorObserver(this); + + if (_flyoutContent is ShellFlyoutTemplatedContentRenderer flyoutTemplatedContentRenderer) + { + flyoutTemplatedContentRenderer.Disconnect(); + } + + _shellContext = null; + } + + protected override void Dispose(bool disposing) + { + if (_disposed) + return; + + _disposed = true; - ((IShellController)_shellContext.Shell).RemoveFlyoutBehaviorObserver(this); + if (disposing) + { + Disconnect(); RemoveView(_content); diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutTemplatedContentRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutTemplatedContentRenderer.cs index c1ced1007fda..525c0a328a84 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutTemplatedContentRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFlyoutTemplatedContentRenderer.cs @@ -3,6 +3,7 @@ using System.Threading.Tasks; using Android.Content; using Android.Graphics.Drawables; +using Android.Hardware.Lights; using Android.Runtime; using Android.Util; using Android.Views; @@ -16,6 +17,7 @@ using Microsoft.Maui.Controls.Platform.Compatibility; using AView = Android.Views.View; using LP = Android.Views.ViewGroup.LayoutParams; +using Microsoft.Maui.Layouts; namespace Microsoft.Maui.Controls.Platform.Compatibility { @@ -31,6 +33,7 @@ public class ShellFlyoutTemplatedContentRenderer : Java.Lang.Object, IShellFlyou IShellContext _shellContext; bool _disposed; HeaderContainer _headerView; + FrameLayout _headerFrameLayout; ViewGroup _rootView; Drawable _defaultBackgroundColor; ImageView _bgImage; @@ -38,7 +41,7 @@ public class ShellFlyoutTemplatedContentRenderer : Java.Lang.Object, IShellFlyou AView _flyoutContentView; ShellViewRenderer _contentView; View _flyoutHeader; - ShellViewRenderer _footerView; + ContainerView _footerView; int _actionBarHeight; int _flyoutHeight; int _flyoutWidth; @@ -76,11 +79,15 @@ protected virtual void LoadView(IShellContext shellContext) _appBar = coordinator.FindViewById(Controls.Resource.Id.flyoutcontent_appbar); + (_appBar.LayoutParameters as CoordinatorLayout.LayoutParams) + .Behavior = new AppBarLayout.Behavior(); + _rootView = coordinator as ViewGroup; _appBar.AddOnOffsetChangedListener(this); _actionBarHeight = context.GetActionBarHeight(); + UpdateFlyoutHeader(); var metrics = context.Resources.DisplayMetrics; @@ -105,10 +112,34 @@ protected virtual void LoadView(IShellContext shellContext) UpdateFlyoutFooter(); if (FlyoutView.FlyoutBehavior == FlyoutBehavior.Locked) - OnFlyoutViewLayoutChanged(); + OnFlyoutViewLayoutChanging(); if (View is ShellFlyoutLayout sfl) - sfl.LayoutChanging += OnFlyoutViewLayoutChanged; + { + // The purpose of this code is to load the flyout content after + // the details content is visible. + // Loading the Recycler View the first time is expensive + // so we want to delay loading to the latest possible point in time so + // it doesn't delay initial startup. + GenericGlobalLayoutListener ggll = null; + ggll = new GenericGlobalLayoutListener(InitialLoad); + sfl.ViewTreeObserver.AddOnGlobalLayoutListener(ggll); + + void InitialLoad() + { + OnFlyoutViewLayoutChanging(); + + if (_flyoutContentView == null || ggll == null) + return; + + var listener = ggll; + ggll = null; + + // Once initial load has finished let's just attach to Layout Changing + sfl.ViewTreeObserver.RemoveOnGlobalLayoutListener(listener); + sfl.LayoutChanging += OnFlyoutViewLayoutChanging; + } + } } void OnFlyoutHeaderMeasureInvalidated(object sender, EventArgs e) @@ -165,7 +196,18 @@ protected virtual void UpdateFlyoutContent() return; _rootView.AddView(_flyoutContentView, index); - UpdateContentLayout(); + UpdateContentPadding(); + } + + + void DisconnectRecyclerView() + { + if (_flyoutContentView.IsAlive() && + _flyoutContentView is RecyclerViewContainer rvc && + rvc.GetAdapter() is ShellFlyoutRecyclerAdapter sfra) + { + sfra.Disconnect(); + } } AView CreateFlyoutContent(ViewGroup rootView) @@ -175,9 +217,11 @@ AView CreateFlyoutContent(ViewGroup rootView) { var oldContentView = _contentView; _contentView = null; - oldContentView.TearDown(); + oldContentView.View = null; } + DisconnectRecyclerView(); + var content = ((IShellController)ShellContext.Shell).FlyoutContent; if (content == null) { @@ -211,7 +255,8 @@ protected virtual void UpdateFlyoutHeader() _headerView.LayoutChange -= OnHeaderViewLayoutChange; var oldHeaderView = _headerView; _headerView = null; - _appBar.RemoveView(oldHeaderView); + _appBar.RemoveView(_headerFrameLayout); + _headerFrameLayout.RemoveView(oldHeaderView); oldHeaderView.Dispose(); } @@ -222,32 +267,37 @@ protected virtual void UpdateFlyoutHeader() _flyoutHeader = ((IShellController)_shellContext.Shell).FlyoutHeader; if (_flyoutHeader != null) + { _flyoutHeader.MeasureInvalidated += OnFlyoutHeaderMeasureInvalidated; - _headerView = new HeaderContainer(_shellContext.AndroidContext, _flyoutHeader, MauiContext) - { - MatchWidth = true - }; + _headerFrameLayout ??= new FrameLayout(_rootView.Context); - _headerView.LayoutChange += OnHeaderViewLayoutChange; + _headerView = new HeaderContainer(_rootView.Context, _flyoutHeader, MauiContext) + { + MatchWidth = true + }; - _headerView.SetMinimumHeight(_actionBarHeight); - _headerView.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) - { - ScrollFlags = AppBarLayout.LayoutParams.ScrollFlagScroll - }; - _appBar.AddView(_headerView); - UpdateFlyoutHeaderBehavior(); + _headerView.LayoutChange += OnHeaderViewLayoutChange; + + _headerFrameLayout.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) + { + ScrollFlags = AppBarLayout.LayoutParams.ScrollFlagScroll + }; + + _headerFrameLayout.AddView(_headerView); + _appBar.AddView(_headerFrameLayout); + + UpdateFlyoutHeaderBehavior(); + } - UpdateContentLayout(); + UpdateContentPadding(); } void OnHeaderViewLayoutChange(object sender, AView.LayoutChangeEventArgs e) { // If the flyoutheader/footer have changed size then we need to // remeasure the flyout content - if (UpdateContentPadding()) - UpdateContentLayout(); + UpdateContentPadding(); } protected virtual void UpdateFlyoutFooter() @@ -255,9 +305,9 @@ protected virtual void UpdateFlyoutFooter() if (_footerView != null) { var oldFooterView = _footerView; - _rootView.RemoveView(_footerView.PlatformView); + _rootView.RemoveView(_footerView); _footerView = null; - oldFooterView.TearDown(); + oldFooterView.View = null; } var footer = ((IShellController)_shellContext.Shell).FlyoutFooter; @@ -265,40 +315,50 @@ protected virtual void UpdateFlyoutFooter() if (footer == null) return; - _footerView = new ShellViewRenderer(_shellContext.AndroidContext, footer, MauiContext); + if (_flyoutWidth == 0) + return; - _rootView.AddView(_footerView.PlatformView); + _footerView = new ContainerView(_shellContext.AndroidContext, footer, MauiContext) + { + MatchWidth = true + }; - if (_footerView.PlatformView.LayoutParameters is CoordinatorLayout.LayoutParams cl) - cl.Gravity = (int)(GravityFlags.Bottom | GravityFlags.End); + var footerViewLP = new CoordinatorLayout.LayoutParams(0, 0) + { + Gravity = (int)(GravityFlags.Bottom | GravityFlags.End) + }; - UpdateFooterLayout(); - UpdateContentLayout(); + UpdateFooterLayout(footerViewLP); + _rootView.AddView(_footerView, footerViewLP); + + UpdateContentPadding(); } void UpdateFooterLayout() { - if (_flyoutWidth == 0) + if (_flyoutWidth == 0 || _footerView == null) { return; } - var footerSize = - _footerView? - .Measure( - MeasureSpecMode.Exactly.MakeMeasureSpec(_flyoutWidth), - MeasureSpecMode.Unspecified.MakeMeasureSpec(0), - null, - null); + if (_footerView?.LayoutParameters is CoordinatorLayout.LayoutParams cl) + UpdateFooterLayout(cl); + } - if (_footerView?.View != null && footerSize.HasValue) - { - var width = _shellContext.AndroidContext.FromPixels(footerSize.Value.Width); - var height = _shellContext.AndroidContext.FromPixels(footerSize.Value.Height); + void UpdateFooterLayout(CoordinatorLayout.LayoutParams cl) + { + cl.Width = MeasureSpecMode.Exactly.MakeMeasureSpec(_flyoutWidth); + cl.Height = MeasureSpecMode.Unspecified.MakeMeasureSpec(0); + } - _footerView.View.Frame = - new Graphics.Rect(Graphics.Point.Zero, new Graphics.Size(width, height)); - } + int GetFooterViewTotalHeight() + { + var margin = Thickness.Zero; + var measuredHeight = (FooterView?.MeasuredHeight ?? 0); + if (_footerView?.View != null) + margin = _footerView.View.Margin; + + return measuredHeight + (int)(_rootView.Context.ToPixels(margin.VerticalThickness)); } bool UpdateContentPadding() @@ -308,15 +368,21 @@ bool UpdateContentPadding() if (flyoutView?.LayoutParameters is ViewGroup.MarginLayoutParams cl) { + var viewMargin = _contentView?.View?.Margin ?? Thickness.Zero; + var bottomMarginPx = (int)_rootView.Context.ToPixels(viewMargin.Bottom); + // For scrollable content we use padding so once it's all the way scrolled up // the bottom of the view isn't obscured by the footer view // If you try to use Margin the RecylcerView won't render anything. if (flyoutView is AndroidX.Core.View.IScrollingView && flyoutView is ViewGroup vg) { - var bottomPadding = FooterView?.MeasuredHeight ?? 0; + var bottomPadding = GetFooterViewTotalHeight(); returnValue = true; - cl.BottomMargin = 0; + + if (cl.BottomMargin != bottomMarginPx) + cl.BottomMargin = bottomMarginPx; + if (vg.PaddingBottom != bottomPadding) { vg.SetPadding(0, 0, 0, bottomPadding); @@ -327,8 +393,25 @@ bool UpdateContentPadding() } else { - var bottomMargin = FooterView?.MeasuredHeight ?? 0; - bottomMargin += _headerView?.MeasuredHeight ?? 0; + var bottomMargin = GetFooterViewTotalHeight() + bottomMarginPx; + var headerViewHeight = _headerView?.MeasuredHeight ?? 0; + + // If the ScrollFlag on the LayoutParams are not set to zero than the content will automatically offset + // By the height of the action bar so we can subtract that out of how much margin needs to be applied + // to make room for the footer. + // + // The Flyout Content is already going to be offset by the app bar height + // so we don't need to add that to the bottom margin + if (headerViewHeight > 0 && + _headerFrameLayout?.LayoutParameters is AppBarLayout.LayoutParams alp && + alp.ScrollFlags != 0) + { + bottomMargin += _headerView?.MeasuredHeight ?? 0; + + var headerViewMinHeight = _headerView?.MinimumHeight ?? 0; + if (bottomMargin > headerViewMinHeight) + bottomMargin -= headerViewMinHeight; + } if (cl.BottomMargin != bottomMargin) { @@ -336,45 +419,27 @@ bool UpdateContentPadding() returnValue = true; } } - } - - return returnValue; - } - - void UpdateContentLayout() - { - if (_contentView != null) - { - if (_contentView == null) - return; - UpdateContentPadding(); - - var height = - (View.MeasuredHeight) - - (FooterView?.MeasuredHeight ?? 0) - - (_headerView?.MeasuredHeight ?? 0); - - var width = View.MeasuredWidth; - - var frameSize = _contentView.Measure( - MeasureSpecMode.Exactly.MakeMeasureSpec(width), - MeasureSpecMode.Exactly.MakeMeasureSpec(height), null, null); - - var dpWidth = _shellContext.AndroidContext.FromPixels(frameSize.Width); - var dpHeight = _shellContext.AndroidContext.FromPixels(frameSize.Height); + // Set the XPLAT frame to the measured size of the platform + // and propagate any margins set + if (_contentView?.PlatformView != null) + { + var dpWidth = _rootView.Context.FromPixels(_contentView.PlatformView.MeasuredWidth); + var dpHeight = _rootView.Context.FromPixels(_contentView.PlatformView.MeasuredHeight); + _contentView.View.Frame = _contentView.View.ComputeFrame(new Graphics.Rect(0, 0, dpWidth, dpHeight)); + + cl.LeftMargin = (int)_rootView.Context.ToPixels(viewMargin.Left); + cl.TopMargin = (int)_rootView.Context.ToPixels(viewMargin.Top); + cl.RightMargin = (int)_rootView.Context.ToPixels(viewMargin.Right); + // bottom margin is set by the code above this + } - _contentView.View.Frame = new Graphics.Rect(0, 0, dpWidth, dpHeight); - } - else if (_flyoutContentView != null) - { - // For scrollable content we need to use padding instead of margin - // if you use margin the recycler view won't render. - UpdateContentPadding(); } + + return returnValue; } - void OnFlyoutViewLayoutChanged() + void OnFlyoutViewLayoutChanging() { // The second time this fires the non flyout part of the view // is visible to the user. I haven't found a better @@ -396,8 +461,13 @@ void OnFlyoutViewLayoutChanged() _flyoutHeight = View.MeasuredHeight; _flyoutWidth = View.MeasuredWidth; + + // We wait to instantiate the flyout footer until we know the WxH of the flyout container + if (_footerView == null) + UpdateFlyoutFooter(); + UpdateFooterLayout(); - UpdateContentLayout(); + UpdateContentPadding(); } } @@ -483,57 +553,76 @@ void UpdateFlyoutBgImageAsync() protected virtual void UpdateFlyoutHeaderBehavior() { - var context = _shellContext.AndroidContext; - - var margin = _flyoutHeader?.Margin ?? default(Thickness); + if (_headerView == null) + return; - var minimumHeight = Convert.ToInt32(_actionBarHeight + context.ToPixels(margin.Top) - context.ToPixels(margin.Bottom)); - _headerView.SetMinimumHeight(minimumHeight); + _headerView.SetFlyoutHeaderBehavior(_shellContext.Shell.FlyoutHeaderBehavior); switch (_shellContext.Shell.FlyoutHeaderBehavior) { case FlyoutHeaderBehavior.Default: case FlyoutHeaderBehavior.Fixed: - _headerView.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) + _headerFrameLayout.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) { - ScrollFlags = 0, - LeftMargin = (int)context.ToPixels(margin.Left), - TopMargin = (int)context.ToPixels(margin.Top), - RightMargin = (int)context.ToPixels(margin.Right), - BottomMargin = (int)context.ToPixels(margin.Bottom) + ScrollFlags = 0 }; break; case FlyoutHeaderBehavior.Scroll: - _headerView.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) + _headerFrameLayout.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) { - ScrollFlags = AppBarLayout.LayoutParams.ScrollFlagScroll, - LeftMargin = (int)context.ToPixels(margin.Left), - TopMargin = (int)context.ToPixels(margin.Top), - RightMargin = (int)context.ToPixels(margin.Right), - BottomMargin = (int)context.ToPixels(margin.Bottom) + ScrollFlags = AppBarLayout.LayoutParams.ScrollFlagScroll }; break; case FlyoutHeaderBehavior.CollapseOnScroll: - _headerView.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) + _headerFrameLayout.LayoutParameters = new AppBarLayout.LayoutParams(LP.MatchParent, LP.WrapContent) { ScrollFlags = AppBarLayout.LayoutParams.ScrollFlagExitUntilCollapsed | - AppBarLayout.LayoutParams.ScrollFlagScroll, - LeftMargin = (int)context.ToPixels(margin.Left), - TopMargin = (int)context.ToPixels(margin.Top), - RightMargin = (int)context.ToPixels(margin.Right), - BottomMargin = (int)context.ToPixels(margin.Bottom) + AppBarLayout.LayoutParams.ScrollFlagScroll }; break; } } + int _lastAppbarLayoutOffset; public void OnOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) { + if (_lastAppbarLayoutOffset == verticalOffset) + return; + + _lastAppbarLayoutOffset = verticalOffset; + + if (_headerView == null) + return; + var headerBehavior = _shellContext.Shell.FlyoutHeaderBehavior; if (headerBehavior != FlyoutHeaderBehavior.CollapseOnScroll) + { + _headerView.SetParentTopPadding(0); return; + } + + _headerView.SetParentTopPadding(-verticalOffset); + + } - _headerView.SetPadding(0, -verticalOffset, 0, 0); + internal void Disconnect() + { + if (_shellContext?.Shell != null) + _shellContext.Shell.PropertyChanged -= OnShellPropertyChanged; + + if (_flyoutHeader != null) + _flyoutHeader.MeasureInvalidated -= OnFlyoutHeaderMeasureInvalidated; + + _flyoutHeader = null; + + if (_footerView != null) + _footerView.View = null; + + _headerView?.Disconnect(); + DisconnectRecyclerView(); + + if (_contentView != null) + _contentView.View = null; } protected override void Dispose(bool disposing) @@ -545,36 +634,36 @@ protected override void Dispose(bool disposing) if (disposing) { - _shellContext.Shell.PropertyChanged -= OnShellPropertyChanged; - - if (_flyoutHeader != null) - _flyoutHeader.MeasureInvalidated -= OnFlyoutHeaderMeasureInvalidated; + Disconnect(); if (_appBar != null) { _appBar.RemoveOnOffsetChangedListener(this); - _appBar.RemoveView(_headerView); + + if (_headerFrameLayout != null) + _appBar.RemoveView(_headerFrameLayout); } - if (_rootView != null && _footerView?.PlatformView != null) - _rootView.RemoveView(_footerView.PlatformView); + if (_rootView != null && _footerView != null) + _rootView.RemoveView(_footerView); if (View != null && View is ShellFlyoutLayout sfl) - sfl.LayoutChanging -= OnFlyoutViewLayoutChanged; + sfl.LayoutChanging -= OnFlyoutViewLayoutChanging; if (_headerView != null) _headerView.LayoutChange -= OnHeaderViewLayoutChange; - _contentView?.TearDown(); + if (_contentView != null) + _contentView.View = null; + _flyoutContentView?.Dispose(); - _headerView.Dispose(); - _footerView?.TearDown(); - _rootView.Dispose(); + _headerView?.Dispose(); + + _rootView?.Dispose(); _defaultBackgroundColor?.Dispose(); _bgImage?.Dispose(); _contentView = null; - _flyoutHeader = null; _rootView = null; _headerView = null; _shellContext = null; @@ -592,6 +681,8 @@ protected override void Dispose(bool disposing) public class HeaderContainer : ContainerView { bool _isdisposed = false; + private FlyoutHeaderBehavior _flyoutHeaderBehavior; + public HeaderContainer(Context context, View view, IMauiContext mauiContext) : base(context, view, mauiContext) { Initialize(view); @@ -617,12 +708,30 @@ void UpdateElevation() ElevationHelper.SetElevation(view, View); } - protected override void OnLayout(bool changed, int l, int t, int r, int b) + protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec) { - l -= PaddingLeft + PaddingRight; - t -= PaddingTop + PaddingBottom; + UpdateMinimumHeight(); + base.OnMeasure(widthMeasureSpec, heightMeasureSpec); + + if (Parent is AView parentFrameLayout) + { + var headerOffsetFromParentContainer = (int)(DesiredSize.Height - MeasuredHeight); + parentFrameLayout.SetPadding(0, headerOffsetFromParentContainer, 0, 0); + + // If the headerview has a minimum height set then we'll use + // that for the minimum height on the header views frame layout parent + // container + // This is really only relevant with CollapseOnScroll where + // the min height on the header view gets set to 56 + parentFrameLayout.SetMinimumHeight((int)MinimumSize.Height); + } + } + + protected override void OnLayout(bool changed, int l, int t, int r, int b) + { UpdateElevation(); + base.OnLayout(changed, l, t, r, b); } @@ -632,15 +741,61 @@ protected override void Dispose(bool disposing) return; _isdisposed = true; + if (disposing) + Disconnect(); + + base.Dispose(disposing); + } + + internal void Disconnect() + { + if (View != null) { - if (View != null) - View.PropertyChanged -= OnViewPropertyChanged; + View.PropertyChanged -= OnViewPropertyChanged; + View = null; } + } - View = null; + internal void SetFlyoutHeaderBehavior(FlyoutHeaderBehavior flyoutHeaderBehavior) + { + if (_flyoutHeaderBehavior == flyoutHeaderBehavior) + return; - base.Dispose(disposing); + _flyoutHeaderBehavior = flyoutHeaderBehavior; + UpdateMinimumHeight(); + } + + void UpdateMinimumHeight() + { + var minHeight = 0; + + if (View?.MinimumHeightRequest > 0) + { + minHeight = (int)Context.ToPixels(View.MinimumHeightRequest); + } + else if (_flyoutHeaderBehavior == FlyoutHeaderBehavior.CollapseOnScroll) + { + minHeight = Context.GetActionBarHeight(); + } + else + { + minHeight = 0; + } + + if (MinimumHeight != minHeight) + this.SetMinimumHeight(minHeight); + + if (Parent is AView frameLayoutView && + minHeight > frameLayoutView.MinimumHeight) + { + frameLayoutView.SetMinimumHeight(minHeight); + } + + if (PlatformView.MinimumHeight != minHeight) + { + PlatformView.SetMinimumHeight(minHeight); + } } } } diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentContainer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentContainer.cs index bbc96ab07634..96131de9c67e 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentContainer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentContainer.cs @@ -29,11 +29,20 @@ public override AView OnCreateView(LayoutInflater inflater, ViewGroup container, // Handler and MauiContext // But we want to update the inflater and ChildFragmentManager to match // the handlers new home - if (_page?.Handler?.MauiContext is MauiContext scopedMauiContext) + if (_page.Handler?.MauiContext is MauiContext scopedMauiContext) { - scopedMauiContext.AddWeakSpecific(ChildFragmentManager); - scopedMauiContext.AddWeakSpecific(inflater); - mauiContext = scopedMauiContext; + // If this page comes to us from a different activity then don't reuse it + // disconnect the handler so it can recreate against new MauiContext + if (scopedMauiContext.GetActivity() == Context.GetActivity()) + { + scopedMauiContext.AddWeakSpecific(ChildFragmentManager); + scopedMauiContext.AddWeakSpecific(inflater); + mauiContext = scopedMauiContext; + } + else + { + _page.Handler.DisconnectHandler(); + } } mauiContext ??= _mauiContext.MakeScoped(layoutInflater: inflater, fragmentManager: ChildFragmentManager); diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentStateAdapter.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentStateAdapter.cs index 83ee94b9a1cb..605b6eb71289 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentStateAdapter.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellFragmentStateAdapter.cs @@ -27,11 +27,10 @@ public ShellFragmentStateAdapter( { _mauiContext = mauiContext; _shellSection = shellSection; - SectionController.ItemsCollectionChanged += OnItemsCollectionChanged; _items = SectionController.GetItems(); } - protected virtual void OnItemsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) + public void OnItemsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { _items = SectionController.GetItems(); var removeList = new List(); @@ -42,8 +41,6 @@ protected virtual void OnItemsCollectionChanged(object sender, NotifyCollectionC foreach (var remove in removeList) _createdShellContent.Remove(remove); - - NotifyDataSetChanged(); } public int CountOverride { get; set; } @@ -52,6 +49,7 @@ protected virtual void OnItemsCollectionChanged(object sender, NotifyCollectionC public override Fragment CreateFragment(int position) { + var shellContent = _items[position]; return new ShellFragmentContainer(shellContent, _mauiContext) { Arguments = Bundle.Empty }; } @@ -70,6 +68,14 @@ public override long GetItemId(int position) public override bool ContainsItem(long itemId) { + if (_createdShellContent.TryGetValue(itemId, out var shellContent) && + !_items.Contains(shellContent)) + { + // This means a data set change was triggered but the INCC change hasn't + // propagated from our xplat code to here yet + _createdShellContent.Remove(itemId); + } + return _createdShellContent.ContainsKey(itemId); } @@ -82,7 +88,6 @@ protected override void Dispose(bool disposing) if (disposing) { - SectionController.ItemsCollectionChanged -= OnItemsCollectionChanged; _shellSection = null; _items = null; diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellItemRendererBase.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellItemRendererBase.cs index f482f01c56f3..fffde3b252c2 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellItemRendererBase.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellItemRendererBase.cs @@ -75,7 +75,7 @@ protected Page DisplayedPage } } - protected IShellContext ShellContext { get; } + protected IShellContext ShellContext { get; private set; } protected ShellItem ShellItem { get; private set; } @@ -84,6 +84,13 @@ protected virtual IShellObservableFragment CreateFragmentForPage(Page page) return ShellContext.CreateFragmentForPage(page); } + internal void Disconnect() + { + ShellSection = null; + DisplayedPage = null; + ShellContext = null; + } + void Destroy() { foreach (var item in _fragmentMap) diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellRenderer.cs index 999aeed5cf4f..30c22a7ae7d4 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellRenderer.cs @@ -114,6 +114,7 @@ static Color ResolveThemeColor(Color light, Color dark) IShellFlyoutRenderer _flyoutView; FrameLayout _frameLayout; IMauiContext _mauiContext; + bool _disposed; event EventHandler _elementPropertyChanged; @@ -345,6 +346,30 @@ void IElementHandler.Invoke(string command, object args) void IElementHandler.DisconnectHandler() { + if (_disposed) + return; + + _disposed = true; + + Element.PropertyChanged -= OnElementPropertyChanged; + Element.SizeChanged -= OnElementSizeChanged; + ((IShellController)Element).RemoveAppearanceObserver(this); + + if (_flyoutView is ShellFlyoutRenderer sfr) + sfr.Disconnect(); + else + (_flyoutView as IDisposable)?.Dispose(); + + if (_currentView is ShellItemRendererBase sir) + sir.Disconnect(); + else + _currentView.Dispose(); + + _currentView = null; + + Element = null; + + _disposed = true; } class SplitDrawable : Drawable @@ -390,4 +415,4 @@ public override void SetColorFilter(ColorFilter colorFilter) } } -} \ No newline at end of file +} diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSectionRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSectionRenderer.cs index 7e9e54d99e73..834b8b3eb963 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSectionRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSectionRenderer.cs @@ -12,6 +12,7 @@ using AndroidX.ViewPager.Widget; using AndroidX.ViewPager2.Widget; using Google.Android.Material.Tabs; +using Microsoft.Extensions.Logging; using AToolbar = AndroidX.AppCompat.Widget.Toolbar; using AView = Android.Views.View; @@ -226,6 +227,45 @@ protected virtual void OnAnimationFinished(EventArgs e) protected virtual void OnItemsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { UpdateTablayoutVisibility(); + + if (_viewPager?.Adapter is ShellFragmentStateAdapter adapter) + { + adapter.OnItemsCollectionChanged(sender, e); + SafeNotifyDataSetChanged(); + } + } + + void SafeNotifyDataSetChanged(int iteration = 0) + { + if (_disposed) + return; + + if (!_viewPager.IsAlive()) + return; + + if (iteration >= 10) + { + // It's very unlikely this will happen but just in case there's a scenario + // where we might hit an infinite loop we're adding an exit strategy + MauiContext.CreateLogger() + .LogWarning("ViewPager2 stuck in layout, unable to NotifyDataSetChanged;"); + + return; + } + + if (_viewPager?.Adapter is ShellFragmentStateAdapter adapter) + { + // https://stackoverflow.com/questions/43221847/cannot-call-this-method-while-recyclerview-is-computing-a-layout-or-scrolling-wh + // ViewPager2 is based on RecyclerView which really doesn't like NotifyDataSetChanged when a layout is happening + if (!_viewPager.IsInLayout) + { + adapter.NotifyDataSetChanged(); + } + else + { + _viewPager.Post(() => SafeNotifyDataSetChanged(++iteration)); + } + } } void UpdateTablayoutVisibility() @@ -258,7 +298,9 @@ protected virtual void OnShellItemPropertyChanged(object sender, PropertyChanged var newIndex = SectionController.GetItems().IndexOf(ShellSection.CurrentItem); if (SectionController.GetItems().Count != _viewPager.ChildCount) - _viewPager.Adapter.NotifyDataSetChanged(); + { + SafeNotifyDataSetChanged(); + } if (newIndex >= 0) { @@ -299,7 +341,15 @@ protected virtual void OnPageSelected(int position) return; var shellSection = ShellSection; - var shellContent = SectionController.GetItems()[position]; + var visibleItems = SectionController.GetItems(); + + // This mainly happens if all of the items that are part of this shell section + // vanish. Android calls `OnPageSelected` with position zero even though the view pager is + // empty + if (visibleItems.Count >= position) + return; + + var shellContent = visibleItems[position]; if (shellContent == shellSection.CurrentItem) return; @@ -314,7 +364,7 @@ protected virtual void OnPageSelected(int position) } else if (shellSection?.CurrentItem != null) { - var currentPosition = SectionController.GetItems().IndexOf(shellSection.CurrentItem); + var currentPosition = visibleItems.IndexOf(shellSection.CurrentItem); _selecting = true; // Android doesn't really appreciate you calling SetCurrentItem inside a OnPageSelected callback. diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/SearchHandlerAppearanceTracker.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/SearchHandlerAppearanceTracker.cs index bef8125cb6ce..3ac9a8831ca4 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/SearchHandlerAppearanceTracker.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/SearchHandlerAppearanceTracker.cs @@ -62,7 +62,7 @@ public void UpdateSearchBarColors() internal void UpdateFlowDirection(Shell shell) { _uiSearchBar.UpdateFlowDirection(shell); - _numericAccessoryView.UpdateFlowDirection(shell); + _numericAccessoryView?.UpdateFlowDirection(shell); var uiTextField = _uiSearchBar.FindDescendantView(); UpdateSearchBarHorizontalTextAlignment(uiTextField, shell); @@ -304,7 +304,7 @@ void UpdateKeyboard() // iPhone does not have an enter key on numeric keyboards if (DeviceInfo.Idiom == DeviceIdiom.Phone && (keyboard == Keyboard.Numeric || keyboard == Keyboard.Telephone)) { - _numericAccessoryView = _numericAccessoryView ?? CreateNumericKeyboardAccessoryView(); + _numericAccessoryView ??= CreateNumericKeyboardAccessoryView(); _uiSearchBar.InputAccessoryView = _numericAccessoryView; } else diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs index 5a9dfc1e657c..8416f200980f 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs @@ -261,7 +261,7 @@ void UpdateFlyoutBgImageAsync() return; } - imageSource.LoadImage(imageSource.FindMauiContext(), result => + imageSource.LoadImage(_shellContext.Shell.FindMauiContext(), result => { var nativeImage = result?.Value; if (View == null || nativeImage == null) diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutLayoutManager.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutLayoutManager.cs index 5ef13afcd2a9..cc05f9978014 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutLayoutManager.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutLayoutManager.cs @@ -231,6 +231,7 @@ public void LayoutParallax() footerHeight = FooterView.Frame.Height; var contentViewYOffset = HeaderView?.Frame.Height ?? 0; + if (ScrollView != null) { if (Content == null) @@ -240,10 +241,8 @@ public void LayoutParallax() } else { - ContentView.Frame = - new CGRect(parent.Bounds.X, HeaderTopMargin, parent.Bounds.Width, parent.Bounds.Height - HeaderTopMargin - footerHeight); - - Content?.LayoutToSize(ContentView.Frame.Width, ContentView.Frame.Height - contentViewYOffset); + var contentFrame = new Rect(parent.Bounds.X, HeaderTopMargin, parent.Bounds.Width, parent.Bounds.Height - HeaderTopMargin - footerHeight); + (Content as IView)?.Arrange(contentFrame); } } else @@ -257,12 +256,11 @@ public void LayoutParallax() { topMargin = (float)UIApplication.SharedApplication.GetSafeAreaInsetsForWindow().Top; } + else + contentViewYOffset -= (nfloat)HeaderTopMargin; - ContentView.Frame = - new CGRect(parent.Bounds.X, topMargin + contentViewYOffset, parent.Bounds.Width, parent.Bounds.Height - topMargin - footerHeight - contentViewYOffset); - - - Content?.LayoutToSize(ContentView.Frame.Width, ContentView.Frame.Height); + var contentFrame = new Rect(parent.Bounds.X, topMargin + contentViewYOffset, parent.Bounds.Width, parent.Bounds.Height - topMargin - footerHeight - contentViewYOffset); + (Content as IView)?.Arrange(contentFrame); } if (HeaderView != null && !double.IsNaN(HeaderSize)) @@ -361,4 +359,4 @@ public void TearDown() FooterView = null; } } -} \ No newline at end of file +} diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutRenderer.cs index 1b64895f2936..ee153f4e2943 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutRenderer.cs @@ -108,6 +108,7 @@ void IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(FlyoutBehavior behavior) else if (behavior == FlyoutBehavior.Disabled) IsOpen = false; LayoutSidebar(false); + UpdateFlyoutAccessibility(); } #endregion IFlyoutBehaviorObserver @@ -155,9 +156,43 @@ bool IsOpen _isOpen = value; Shell.SetValueFromRenderer(Shell.FlyoutIsPresentedProperty, value); + UpdateFlyoutAccessibility(); } } + void UpdateFlyoutAccessibility() + { + bool flyoutElementsHidden = false; + bool detailsElementsHidden = false; + + switch (_flyoutBehavior) + { + case FlyoutBehavior.Flyout: + flyoutElementsHidden = !IsOpen; + detailsElementsHidden = IsOpen; + + break; + + case FlyoutBehavior.Locked: + flyoutElementsHidden = false; + detailsElementsHidden = false; + + break; + + case FlyoutBehavior.Disabled: + flyoutElementsHidden = true; + detailsElementsHidden = false; + + break; + } + + if (Flyout?.ViewController?.View != null) + Flyout.ViewController.View.AccessibilityElementsHidden = flyoutElementsHidden; + + if (Detail?.View != null) + Detail.View.AccessibilityElementsHidden = detailsElementsHidden; + } + UIPanGestureRecognizer PanGestureRecognizer { get; set; } Shell Shell { get; set; } @@ -194,6 +229,7 @@ public override void ViewDidLoad() ((IShellController)Shell).AddFlyoutBehaviorObserver(this); UpdateFlowDirection(); + UpdateFlyoutAccessibility(); } protected override void Dispose(bool disposing) @@ -422,6 +458,8 @@ void LayoutSidebar(bool animate, bool cancelExisting = false) UpdateTapoffView(); _flyoutAnimation = null; + + UIAccessibility.PostNotification(UIAccessibilityPostNotification.ScreenChanged, null); } }); @@ -437,6 +475,8 @@ void LayoutSidebar(bool animate, bool cancelExisting = false) { TapoffView.Layer.Opacity = IsOpen ? 1 : 0; } + + UIAccessibility.PostNotification(UIAccessibilityPostNotification.ScreenChanged, null); } void UpdateTapoffView() diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellSectionRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellSectionRenderer.cs index b257e0bb5c95..79c0213c2474 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellSectionRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellSectionRenderer.cs @@ -130,7 +130,7 @@ internal bool SendPop() } } - + // Do not remove, wonky behavior on some versions of iOS if you dont dispatch // Shane: ^ not sure if this is true anymore because of how // we now route this through "GoToAsync" diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/UIContainerView.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/UIContainerView.cs index 4b5f06a83171..8374dbff206a 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/UIContainerView.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/UIContainerView.cs @@ -19,7 +19,7 @@ public UIContainerView(View view) _renderer = (IPlatformViewHandler)view.ToHandler(view.FindMauiContext()); - AddSubview(_renderer.PlatformView); + AddSubview(view.ToPlatform()); ClipsToBounds = true; view.MeasureInvalidated += OnMeasureInvalidated; MeasuredHeight = double.NaN; @@ -92,7 +92,8 @@ public override void WillMoveToSuperview(UIView newSuper) public override void LayoutSubviews() { - _view.LayoutToSize(Width ?? Frame.Width, Height ?? MeasuredHeight); + var platformFrame = new Rect(0, 0, Width ?? Frame.Width, Height ?? MeasuredHeight); + (_view as IView).Arrange(platformFrame); } protected override void Dispose(bool disposing) diff --git a/src/Controls/src/Core/Compatibility/Handlers/TableView/Android/TableViewRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/TableView/Android/TableViewRenderer.cs index 64dd61ebd109..0042e7e7d396 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/TableView/Android/TableViewRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/TableView/Android/TableViewRenderer.cs @@ -18,6 +18,7 @@ public class TableViewRenderer : ViewRenderer new CommandMapper(VisualElementRendererCommandMapper); TableViewModelRenderer _adapter; + bool _reattached; bool _disposed; public TableViewRenderer(Context context) : base(context, Mapper, CommandMapper) @@ -59,12 +60,29 @@ protected override void OnElementChanged(ElementChangedEventArgs e) _adapter = GetModelRenderer(listView, view); listView.Adapter = _adapter; } + protected override void OnAttachedToWindow() { base.OnAttachedToWindow(); if (Control != null) Control.NestedScrollingEnabled = (Parent.GetParentOfType() != null); + + // There might be a better way to go about doing this but from what I can tell + // once you detach and then reattach a ListView the cells become unselectable + // and the Android.ListView in general is left in an odd state. + // We didn't have to do this in XF because in XF there's an extra measure call that happens + // when the listview is reattached that essentially does the exact same thing. + // You can see this by adding back the legacy renderers and setting a breakpoint on the + // adapter.GetView call. In MAUI this never gets called when navigating back vs XF it does + if (!_reattached) + { + _reattached = true; + } + else + { + Control?.InvalidateViews(); + } } public override SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint) diff --git a/src/Controls/src/Core/Compatibility/Handlers/TableView/Windows/TableViewRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/TableView/Windows/TableViewRenderer.cs index db13ef2384bd..ff89db6e7a73 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/TableView/Windows/TableViewRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/TableView/Windows/TableViewRenderer.cs @@ -58,12 +58,12 @@ protected override void OnElementChanged(ElementChangedEventArgs e) protected override void Dispose(bool disposing) { - if(disposing && !_disposed) + if (disposing && !_disposed) { _disposed = true; - if(Control != null) + if (Control != null) { - Control.SelectionChanged -= OnSelectionChanged; + Control.SelectionChanged -= OnSelectionChanged; } } base.Dispose(disposing); diff --git a/src/Controls/src/Core/Compatibility/Handlers/VisualElementRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/VisualElementRenderer.cs index a477d2958b1e..70829f5f4161 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/VisualElementRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/VisualElementRenderer.cs @@ -213,7 +213,10 @@ protected virtual void SetImportantForAccessibility() IMauiContext? IElementHandler.MauiContext => _mauiContext; - PlatformView? IPlatformViewHandler.PlatformView => (Element?.Handler as IElementHandler)?.PlatformView as PlatformView; + PlatformView? IPlatformViewHandler.PlatformView + { + get => ((Element?.Handler)?.PlatformView as PlatformView) ?? this; + } PlatformView? IPlatformViewHandler.ContainerView => this; diff --git a/src/Controls/src/Core/Compatibility/Handlers/Windows/VisualElementRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Windows/VisualElementRenderer.cs index ef341504235b..d012931064a9 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Windows/VisualElementRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Windows/VisualElementRenderer.cs @@ -18,8 +18,22 @@ public abstract partial class VisualElementRenderer TPlatformElement? _nativeView; public FrameworkElement ContainerElement => this; - public TPlatformElement? Control => ((IElementHandler)this).PlatformView as TPlatformElement ?? _nativeView; - object? IElementHandler.PlatformView => _nativeView; + public TPlatformElement? Control + { + get + { + var value = ((IElementHandler)this).PlatformView as TPlatformElement; + if (value != this && value != null) + return value; + + return _nativeView; + } + } + + object? IElementHandler.PlatformView + { + get => (_nativeView as object) ?? this; + } public UIElement? GeTPlatformElement() => Control; @@ -64,7 +78,7 @@ protected override WSize MeasureOverride(global::Windows.Foundation.Size availab var mauiContext = Element?.Handler?.MauiContext; var minimumSize = MinimumSize(); var mauiRect = Control?.DesiredSize ?? minimumSize.ToPlatform(); - + if (Element is not IVisualTreeElement vte || mauiContext == null) return mauiRect; diff --git a/src/Controls/src/Core/Compatibility/Handlers/iOS/ViewRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/iOS/ViewRenderer.cs index 140a4c7d0103..c07a95434f54 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/iOS/ViewRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/iOS/ViewRenderer.cs @@ -1,8 +1,5 @@ #nullable enable -using System; using CoreGraphics; -using Microsoft.Maui.Graphics; -using ObjCRuntime; using UIKit; using PlatformView = UIKit.UIView; @@ -21,8 +18,19 @@ public abstract partial class ViewRenderer : VisualElem { TPlatformView? _nativeView; - public TPlatformView? Control => ((IElementHandler)this).PlatformView as TPlatformView ?? _nativeView; - object? IElementHandler.PlatformView => _nativeView; + public TPlatformView? Control + { + get + { + var value = ((IElementHandler)this).PlatformView as TPlatformView; + if (value != this && value != null) + return value; + + return _nativeView; + } + } + + object? IElementHandler.PlatformView => (_nativeView as object) ?? this; public ViewRenderer() : this(VisualElementRendererMapper, VisualElementRendererCommandMapper) { diff --git a/src/Controls/src/Core/Compatibility/Handlers/iOS/VisualElementRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/iOS/VisualElementRenderer.cs index cd7e4f1dc5b1..6a22ad51da66 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/iOS/VisualElementRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/iOS/VisualElementRenderer.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Controls.Handlers.Compatibility public abstract partial class VisualElementRenderer : UIView, IPlatformViewHandler, IElementHandler where TElement : Element, IView { - object? IElementHandler.PlatformView => Subviews.Length > 0 ? Subviews[0] : null; + object? IElementHandler.PlatformView => Subviews.Length > 0 ? Subviews[0] : this; public virtual UIViewController? ViewController => null; diff --git a/src/Controls/src/Core/Compatibility/Windows/WindowsResourcesProvider.cs b/src/Controls/src/Core/Compatibility/Windows/WindowsResourcesProvider.cs index 89c7dda6fa1e..264816606b6f 100644 --- a/src/Controls/src/Core/Compatibility/Windows/WindowsResourcesProvider.cs +++ b/src/Controls/src/Core/Compatibility/Windows/WindowsResourcesProvider.cs @@ -38,14 +38,14 @@ Style GetStyle(object nativeKey, TextBlock prototype) formsStyle.Setters.Add(Label.FontSizeProperty, prototype.FontSize); formsStyle.Setters.Add(Label.FontFamilyProperty, prototype.FontFamily.Source); - formsStyle.Setters.Add(Label.FontAttributesProperty, ToAttributes(prototype.FontWeight)); + formsStyle.Setters.Add(Label.FontAttributesProperty, ToAttributes(prototype.FontWeight)); return formsStyle; } static FontAttributes ToAttributes(FWeight fontWeight) { - if (fontWeight.Weight == FontWeights.Bold.Weight || fontWeight.Weight == FontWeights.SemiBold.Weight + if (fontWeight.Weight == FontWeights.Bold.Weight || fontWeight.Weight == FontWeights.SemiBold.Weight || fontWeight.Weight == FontWeights.ExtraBold.Weight) { return FontAttributes.Bold; diff --git a/src/Controls/src/Core/ContentPresenter.cs b/src/Controls/src/Core/ContentPresenter.cs index 2dd042dca692..189e9cdf4407 100644 --- a/src/Controls/src/Core/ContentPresenter.cs +++ b/src/Controls/src/Core/ContentPresenter.cs @@ -99,11 +99,24 @@ static async void OnContentChanged(BindableObject bindable, object oldValue, obj } } + protected override Size MeasureOverride(double widthConstraint, double heightConstraint) + { + DesiredSize = this.ComputeDesiredSize(widthConstraint, heightConstraint); + return DesiredSize; + } + Size IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) { return this.MeasureContent(widthConstraint, heightConstraint); } + protected override Size ArrangeOverride(Rect bounds) + { + Frame = this.ComputeFrame(bounds); + Handler?.PlatformArrange(Frame); + return Frame.Size; + } + Size IContentView.CrossPlatformArrange(Rect bounds) { this.ArrangeContent(bounds); diff --git a/src/Controls/src/Core/ContentView.cs b/src/Controls/src/Core/ContentView.cs index ee59c4ad46f4..1c7a9705732b 100644 --- a/src/Controls/src/Core/ContentView.cs +++ b/src/Controls/src/Core/ContentView.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls { /// [ContentProperty("Content")] - public class ContentView : TemplatedView, IContentView + public partial class ContentView : TemplatedView { /// public static readonly BindableProperty ContentProperty = BindableProperty.Create(nameof(Content), typeof(View), typeof(ContentView), null, propertyChanged: TemplateUtilities.OnContentChanged); @@ -17,9 +17,6 @@ public View Content set { SetValue(ContentProperty, value); } } - object IContentView.Content => Content; - IView IContentView.PresentedContent => ((this as IControlTemplated).TemplateRoot as IView) ?? Content; - protected override void OnBindingContextChanged() { base.OnBindingContextChanged(); @@ -45,29 +42,5 @@ internal override void OnControlTemplateChanged(ControlTemplate oldValue, Contro SetInheritedBindingContext(content, BindingContext); } } - - protected override Size MeasureOverride(double widthConstraint, double heightConstraint) - { - DesiredSize = this.ComputeDesiredSize(widthConstraint, heightConstraint); - return DesiredSize; - } - - Size IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) - { - return this.MeasureContent(widthConstraint, heightConstraint); - } - - protected override Size ArrangeOverride(Rect bounds) - { - Frame = this.ComputeFrame(bounds); - Handler?.PlatformArrange(Frame); - return Frame.Size; - } - - Size IContentView.CrossPlatformArrange(Rect bounds) - { - this.ArrangeContent(bounds); - return bounds.Size; - } } } \ No newline at end of file diff --git a/src/Controls/src/Core/Controls.Core.csproj b/src/Controls/src/Core/Controls.Core.csproj index 935ad4afade5..6028560330f5 100644 --- a/src/Controls/src/Core/Controls.Core.csproj +++ b/src/Controls/src/Core/Controls.Core.csproj @@ -5,10 +5,10 @@ Microsoft.Maui.Controls disable false - <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' And '$(MSBuildRuntimeType)' == 'Full'">True + <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' ">True high true - $(NoWarn);CS1591 + $(NoWarn);CS1591;RS0041;RS0026;RS0027;RS0022 @@ -34,7 +34,7 @@ - + $(TargetsForTfmSpecificBuildOutput); @@ -53,4 +53,6 @@ + + diff --git a/src/Core/src/Converters/FlowDirectionTypeConverter.cs b/src/Controls/src/Core/FlowDirectionConverter.cs similarity index 93% rename from src/Core/src/Converters/FlowDirectionTypeConverter.cs rename to src/Controls/src/Core/FlowDirectionConverter.cs index 7df280d741c8..664ea5b3bdc3 100644 --- a/src/Core/src/Converters/FlowDirectionTypeConverter.cs +++ b/src/Controls/src/Core/FlowDirectionConverter.cs @@ -3,9 +3,9 @@ using System.Globalization; #nullable disable -namespace Microsoft.Maui.Converters +namespace Microsoft.Maui.Controls { - public class FlowDirectionTypeConverter : TypeConverter + public class FlowDirectionConverter : TypeConverter { public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) => sourceType == typeof(string); diff --git a/src/Controls/src/Core/FlyoutPage.cs b/src/Controls/src/Core/FlyoutPage.cs index 01be0205fa72..70ae79d3a400 100644 --- a/src/Controls/src/Core/FlyoutPage.cs +++ b/src/Controls/src/Core/FlyoutPage.cs @@ -211,6 +211,14 @@ protected override void OnAppearing() base.OnAppearing(); } + protected override void OnDisappearing() + { + Flyout?.SendDisappearing(); + Detail?.SendDisappearing(); + + base.OnDisappearing(); + } + protected override bool OnBackButtonPressed() { if (IsPresented) diff --git a/src/Controls/src/Core/HandlerImpl/Button/Button.Tizen.cs b/src/Controls/src/Core/HandlerImpl/Button/Button.Tizen.cs index b5eab66e32f4..781e0f865107 100644 --- a/src/Controls/src/Core/HandlerImpl/Button/Button.Tizen.cs +++ b/src/Controls/src/Core/HandlerImpl/Button/Button.Tizen.cs @@ -13,6 +13,6 @@ public static void MapText(ButtonHandler handler, Button button) } [MissingMapper] - public static void MapLineBreakMode(IButtonHandler handler, Button button) {} + public static void MapLineBreakMode(IButtonHandler handler, Button button) { } } } diff --git a/src/Controls/src/Core/HandlerImpl/ContentView/ContentView.Impl.cs b/src/Controls/src/Core/HandlerImpl/ContentView/ContentView.Impl.cs new file mode 100644 index 000000000000..46ca9922cdb9 --- /dev/null +++ b/src/Controls/src/Core/HandlerImpl/ContentView/ContentView.Impl.cs @@ -0,0 +1,9 @@ +namespace Microsoft.Maui.Controls +{ + public partial class ContentView : IContentView + { + object IContentView.Content => Content; + + IView IContentView.PresentedContent => ((this as IControlTemplated).TemplateRoot as IView) ?? Content; + } +} diff --git a/src/Controls/src/Core/HandlerImpl/Editor/Editor.Tizen.cs b/src/Controls/src/Core/HandlerImpl/Editor/Editor.Tizen.cs index c7c657b3787c..c47d9cade1c9 100644 --- a/src/Controls/src/Core/HandlerImpl/Editor/Editor.Tizen.cs +++ b/src/Controls/src/Core/HandlerImpl/Editor/Editor.Tizen.cs @@ -2,7 +2,7 @@ { public partial class Editor { - public static void MapText(EditorHandler handler, Editor editor) + public static void MapText(EditorHandler handler, Editor editor) { Platform.TextExtensions.UpdateText(handler.PlatformView, editor); } diff --git a/src/Controls/src/Core/HandlerImpl/Ellipse.Impl.cs b/src/Controls/src/Core/HandlerImpl/Ellipse.Impl.cs index e9ed65ed0590..b15c2ee33ad5 100644 --- a/src/Controls/src/Core/HandlerImpl/Ellipse.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/Ellipse.Impl.cs @@ -11,7 +11,7 @@ protected override void OnPropertyChanged([CallerMemberName] string propertyName base.OnPropertyChanged(propertyName); if (propertyName == XProperty.PropertyName || - propertyName == YProperty.PropertyName || + propertyName == YProperty.PropertyName || propertyName == WidthProperty.PropertyName || propertyName == HeightProperty.PropertyName) { diff --git a/src/Controls/src/Core/HandlerImpl/Entry/Entry.Android.cs b/src/Controls/src/Core/HandlerImpl/Entry/Entry.Android.cs index f04d280e01d2..2b1904cd020a 100644 --- a/src/Controls/src/Core/HandlerImpl/Entry/Entry.Android.cs +++ b/src/Controls/src/Core/HandlerImpl/Entry/Entry.Android.cs @@ -11,7 +11,7 @@ public static void MapImeOptions(EntryHandler handler, Entry entry) Platform.EditTextExtensions.UpdateImeOptions(handler.PlatformView, entry); } - public static void MapText(EntryHandler handler, Entry entry) + public static void MapText(EntryHandler handler, Entry entry) { Platform.EditTextExtensions.UpdateText(handler.PlatformView, entry); } diff --git a/src/Controls/src/Core/HandlerImpl/Entry/Entry.Tizen.cs b/src/Controls/src/Core/HandlerImpl/Entry/Entry.Tizen.cs index 7b1ed441788b..cd01ab1f9fc5 100644 --- a/src/Controls/src/Core/HandlerImpl/Entry/Entry.Tizen.cs +++ b/src/Controls/src/Core/HandlerImpl/Entry/Entry.Tizen.cs @@ -2,7 +2,7 @@ { public partial class Entry { - public static void MapText(EntryHandler handler, Entry entry) + public static void MapText(EntryHandler handler, Entry entry) { Platform.TextExtensions.UpdateText(handler.PlatformView, entry); } diff --git a/src/Controls/src/Core/HandlerImpl/Entry/Entry.iOS.cs b/src/Controls/src/Core/HandlerImpl/Entry/Entry.iOS.cs index 8dab982b9ca1..be813143213e 100644 --- a/src/Controls/src/Core/HandlerImpl/Entry/Entry.iOS.cs +++ b/src/Controls/src/Core/HandlerImpl/Entry/Entry.iOS.cs @@ -12,7 +12,7 @@ public static void MapAdjustsFontSizeToFitWidth(EntryHandler handler, Entry entr Platform.TextExtensions.UpdateAdjustsFontSizeToFitWidth(handler.PlatformView, entry); } - public static void MapText(EntryHandler handler, Entry entry) + public static void MapText(EntryHandler handler, Entry entry) { Platform.TextExtensions.UpdateText(handler.PlatformView, entry); } diff --git a/src/Controls/src/Core/HandlerImpl/GraphicsView.Impl.cs b/src/Controls/src/Core/HandlerImpl/GraphicsView.Impl.cs index 045b16ddc10f..7880ac5d5c8f 100644 --- a/src/Controls/src/Core/HandlerImpl/GraphicsView.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/GraphicsView.Impl.cs @@ -34,7 +34,7 @@ public void Invalidate() void IGraphicsView.EndHoverInteraction() => EndHoverInteraction?.Invoke(this, EventArgs.Empty); void IGraphicsView.EndInteraction(PointF[] points, bool isInsideBounds) => EndInteraction?.Invoke(this, new TouchEventArgs(points, isInsideBounds)); - + void IGraphicsView.StartHoverInteraction(PointF[] points) => StartHoverInteraction?.Invoke(this, new TouchEventArgs(points, true)); void IGraphicsView.MoveHoverInteraction(PointF[] points) => MoveHoverInteraction?.Invoke(this, new TouchEventArgs(points, true)); diff --git a/src/Controls/src/Core/HandlerImpl/Label/Label.Android.cs b/src/Controls/src/Core/HandlerImpl/Label/Label.Android.cs index b656cc54a00e..f47a982ee082 100644 --- a/src/Controls/src/Core/HandlerImpl/Label/Label.Android.cs +++ b/src/Controls/src/Core/HandlerImpl/Label/Label.Android.cs @@ -27,12 +27,11 @@ private protected override void OnHandlerChangedCore() if (_mauiTextView != null) { _mauiTextView.LayoutChanged -= OnLayoutChanged; - _mauiTextView.Dispose(); _mauiTextView = null; } } } - + public static void MapTextType(LabelHandler handler, Label label) { Platform.TextViewExtensions.UpdateText(handler.PlatformView, label); @@ -43,6 +42,17 @@ public static void MapText(LabelHandler handler, Label label) Platform.TextViewExtensions.UpdateText(handler.PlatformView, label); } + // TODO: NET7 make this public + internal static void MapTextColor(LabelHandler handler, Label label) + { + handler.PlatformView?.UpdateTextColor(label); + + if (label?.HasFormattedTextSpans ?? false) + return; + + Platform.TextViewExtensions.UpdateText(handler.PlatformView, label); + } + public static void MapLineBreakMode(LabelHandler handler, Label label) { handler.PlatformView?.UpdateLineBreakMode(label); diff --git a/src/Controls/src/Core/HandlerImpl/Label/Label.cs b/src/Controls/src/Core/HandlerImpl/Label/Label.cs index 6bf806603686..8b12a249be2d 100644 --- a/src/Controls/src/Core/HandlerImpl/Label/Label.cs +++ b/src/Controls/src/Core/HandlerImpl/Label/Label.cs @@ -15,6 +15,9 @@ public partial class Label #if WINDOWS [PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty.PropertyName] = MapDetectReadingOrderFromContent, #endif +#if ANDROID + [nameof(TextColor)] = MapTextColor, +#endif #if __IOS__ [nameof(TextDecorations)] = MapTextDecorations, [nameof(CharacterSpacing)] = MapCharacterSpacing, diff --git a/src/Controls/src/Core/HandlerImpl/NavigationPage/NavigationPage.cs b/src/Controls/src/Core/HandlerImpl/NavigationPage/NavigationPage.cs index 123a56ccb283..9fd8ee0a8297 100644 --- a/src/Controls/src/Core/HandlerImpl/NavigationPage/NavigationPage.cs +++ b/src/Controls/src/Core/HandlerImpl/NavigationPage/NavigationPage.cs @@ -2,7 +2,7 @@ { public partial class NavigationPage { - public static IPropertyMapper ControlsNavigationPageMapper = + public static IPropertyMapper ControlsNavigationPageMapper = new PropertyMapper(NavigationViewHandler.Mapper) { #if IOS diff --git a/src/Controls/src/Core/HandlerImpl/Page.Impl.cs b/src/Controls/src/Core/HandlerImpl/Page.Impl.cs index 656f6d7d49a7..ba9624a40f1d 100644 --- a/src/Controls/src/Core/HandlerImpl/Page.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/Page.Impl.cs @@ -7,6 +7,8 @@ namespace Microsoft.Maui.Controls /// public partial class Page : IView, ITitledElement, IToolbarElement { + internal bool HasNavigatedTo { get; private set; } + Paint IView.Background { get @@ -40,6 +42,7 @@ internal Toolbar Toolbar internal void SendNavigatedTo(NavigatedToEventArgs args) { + HasNavigatedTo = true; NavigatedTo?.Invoke(this, args); OnNavigatedTo(args); } @@ -52,6 +55,7 @@ internal void SendNavigatingFrom(NavigatingFromEventArgs args) internal void SendNavigatedFrom(NavigatedFromEventArgs args) { + HasNavigatedTo = false; NavigatedFrom?.Invoke(this, args); OnNavigatedFrom(args); } diff --git a/src/Controls/src/Core/HandlerImpl/RadioButton/RadioButton.Impl.cs b/src/Controls/src/Core/HandlerImpl/RadioButton/RadioButton.Impl.cs index 0feef6ac5ecf..4bfacdbe4430 100644 --- a/src/Controls/src/Core/HandlerImpl/RadioButton/RadioButton.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/RadioButton/RadioButton.Impl.cs @@ -12,30 +12,6 @@ public partial class RadioButton : IRadioButton object IContentView.Content => ContentAsString(); #endif - protected override Size MeasureOverride(double widthConstraint, double heightConstraint) - { - DesiredSize = this.ComputeDesiredSize(widthConstraint, heightConstraint); - return DesiredSize; - } - - Size IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) - { - return this.MeasureContent(widthConstraint, heightConstraint); - } - - protected override Size ArrangeOverride(Rect bounds) - { - Frame = this.ComputeFrame(bounds); - Handler?.PlatformArrange(Frame); - return Frame.Size; - } - - Size IContentView.CrossPlatformArrange(Rect bounds) - { - this.ArrangeContent(bounds); - return bounds.Size; - } - IView IContentView.PresentedContent => ((this as IControlTemplated).TemplateRoot as IView) ?? (Content as IView); double IButtonStroke.StrokeThickness => (double)GetValue(BorderWidthProperty); diff --git a/src/Controls/src/Core/HandlerImpl/ScrollView/ScrollView.Impl.cs b/src/Controls/src/Core/HandlerImpl/ScrollView/ScrollView.Impl.cs index 159b4fa07790..9e2d887896b4 100644 --- a/src/Controls/src/Core/HandlerImpl/ScrollView/ScrollView.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/ScrollView/ScrollView.Impl.cs @@ -1,4 +1,5 @@ using System; +using Microsoft.Maui.Controls.Internals; using Microsoft.Maui.Graphics; using Microsoft.Maui.Layouts; using static Microsoft.Maui.Layouts.LayoutManager; @@ -73,8 +74,7 @@ Size IContentView.CrossPlatformMeasure(double widthConstraint, double heightCons } content.Measure(widthConstraint, heightConstraint); - ContentSize = content.DesiredSize; - return ContentSize; + return content.DesiredSize; } protected override Size ArrangeOverride(Rect bounds) @@ -94,8 +94,8 @@ Size IContentView.CrossPlatformArrange(Rect bounds) // Normally we'd just want the content to be arranged within the ContentView's Frame, // but ScrollView content might be larger than the ScrollView itself (for obvious reasons) // So in each dimension, we assume the larger of the two values. - bounds.Width = Math.Max(Frame.Width, presentedContent.DesiredSize.Width + padding.HorizontalThickness); - bounds.Height = Math.Max(Frame.Height, presentedContent.DesiredSize.Height + padding.VerticalThickness); + bounds.Width = Math.Max(bounds.Width, presentedContent.DesiredSize.Width + padding.HorizontalThickness); + bounds.Height = Math.Max(bounds.Height, presentedContent.DesiredSize.Height + padding.VerticalThickness); this.ArrangeContent(bounds); } diff --git a/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.Tizen.cs b/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.Tizen.cs index ce19b366a553..75c3c615bdf1 100644 --- a/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.Tizen.cs +++ b/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.Tizen.cs @@ -2,7 +2,7 @@ { public partial class SearchBar { - public static void MapText(SearchBarHandler handler, SearchBar searchBar) + public static void MapText(SearchBarHandler handler, SearchBar searchBar) { Platform.TextExtensions.UpdateText(handler.PlatformView, searchBar); } diff --git a/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.iOS.cs b/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.iOS.cs index 2b96524dc05f..f49f35921aeb 100644 --- a/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.iOS.cs +++ b/src/Controls/src/Core/HandlerImpl/SearchBar/SearchBar.iOS.cs @@ -7,7 +7,7 @@ public static void MapSearchBarStyle(SearchBarHandler handler, SearchBar searchB Platform.SearchBarExtensions.UpdateSearchBarStyle(handler.PlatformView, searchBar); } - public static void MapText(SearchBarHandler handler, SearchBar searchBar) + public static void MapText(SearchBarHandler handler, SearchBar searchBar) { Platform.SearchBarExtensions.UpdateText(handler.PlatformView, searchBar); } diff --git a/src/Controls/src/Core/HandlerImpl/Shell.Impl.cs b/src/Controls/src/Core/HandlerImpl/Shell.Impl.cs index a4f2528c5074..ada29875c1ef 100644 --- a/src/Controls/src/Core/HandlerImpl/Shell.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/Shell.Impl.cs @@ -28,5 +28,14 @@ protected override void OnPropertyChanged([CallerMemberName] string propertyName if (propertyName == Shell.FlyoutIsPresentedProperty.PropertyName) Handler?.UpdateValue(nameof(IFlyoutView.IsPresented)); } + +#if ANDROID + protected override void OnHandlerChanging(HandlerChangingEventArgs args) + { + base.OnHandlerChanging(args); + args.OldHandler?.DisconnectHandler(); + } + +#endif } } diff --git a/src/Controls/src/Core/HandlerImpl/TemplatedView/TemplatedView.Impl.cs b/src/Controls/src/Core/HandlerImpl/TemplatedView/TemplatedView.Impl.cs new file mode 100644 index 000000000000..9ad2a42fc041 --- /dev/null +++ b/src/Controls/src/Core/HandlerImpl/TemplatedView/TemplatedView.Impl.cs @@ -0,0 +1,43 @@ +#nullable enable +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Layouts; + +namespace Microsoft.Maui.Controls +{ + public partial class TemplatedView : IContentView + { + object? IContentView.Content => null; + + IView? IContentView.PresentedContent => + (this as IControlTemplated).TemplateRoot as IView; + + partial void OnApplyTemplateImpl() + { + Handler?.UpdateValue(nameof(IContentView.Content)); + } + + protected override Size MeasureOverride(double widthConstraint, double heightConstraint) + { + DesiredSize = this.ComputeDesiredSize(widthConstraint, heightConstraint); + return DesiredSize; + } + + Size IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) + { + return this.MeasureContent(widthConstraint, heightConstraint); + } + + protected override Size ArrangeOverride(Rect bounds) + { + Frame = this.ComputeFrame(bounds); + Handler?.PlatformArrange(Frame); + return Frame.Size; + } + + Size IContentView.CrossPlatformArrange(Rect bounds) + { + this.ArrangeContent(bounds); + return bounds.Size; + } + } +} \ No newline at end of file diff --git a/src/Controls/src/Core/HandlerImpl/Toolbar/Toolbar.Android.cs b/src/Controls/src/Core/HandlerImpl/Toolbar/Toolbar.Android.cs index 2f67a5ff3aad..c699c88cf564 100644 --- a/src/Controls/src/Core/HandlerImpl/Toolbar/Toolbar.Android.cs +++ b/src/Controls/src/Core/HandlerImpl/Toolbar/Toolbar.Android.cs @@ -9,8 +9,8 @@ using Google.Android.Material.AppBar; using Microsoft.Maui.Controls.Platform; using Microsoft.Maui.Handlers; -using LP = Android.Views.ViewGroup.LayoutParams; using AToolbar = AndroidX.AppCompat.Widget.Toolbar; +using LP = Android.Views.ViewGroup.LayoutParams; namespace Microsoft.Maui.Controls { @@ -37,7 +37,7 @@ partial void OnHandlerChanging(IElementHandler oldHandler, IElementHandler newHa Controls.Platform.ToolbarExtensions.DisposeMenuItems( oldHandler?.PlatformView as AToolbar, - ToolbarItems, + ToolbarItems, OnToolbarItemPropertyChanged); } } diff --git a/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Impl.cs b/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Impl.cs index 1db38959c549..0378265aed8f 100644 --- a/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Impl.cs @@ -204,7 +204,7 @@ double IView.Width { return Primitives.Dimension.Unset; } - + ValidatePositive(value, nameof(IView.Width)); return value; } @@ -226,7 +226,7 @@ double IView.Height { return Primitives.Dimension.Unset; } - + ValidatePositive(value, nameof(IView.Height)); return value; } @@ -324,6 +324,12 @@ void OnShadowChanged(object? sender, PropertyChangedEventArgs e) OnPropertyChanged(nameof(Shadow)); } + void PropagateBindingContextToBrush() + { + if (Background != null) + SetInheritedBindingContext(Background, BindingContext); + } + void PropagateBindingContextToShadow() { if (Shadow != null) diff --git a/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Windows.cs b/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Windows.cs index 8758328bf145..b24692fa3a22 100644 --- a/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Windows.cs +++ b/src/Controls/src/Core/HandlerImpl/VisualElement/VisualElement.Windows.cs @@ -7,13 +7,13 @@ public partial class VisualElement { public static void MapAccessKeyHorizontalOffset(IViewHandler handler, IView view) => Platform.VisualElementExtensions.UpdateAccessKey((PlatformView)handler.PlatformView, view); - + public static void MapAccessKeyPlacement(IViewHandler handler, IView view) => Platform.VisualElementExtensions.UpdateAccessKey((PlatformView)handler.PlatformView, view); - + public static void MapAccessKey(IViewHandler handler, IView view) => Platform.VisualElementExtensions.UpdateAccessKey((PlatformView)handler.PlatformView, view); - + public static void MapAccessKeyVerticalOffset(IViewHandler handler, IView view) => Platform.VisualElementExtensions.UpdateAccessKey((PlatformView)handler.PlatformView, view); } diff --git a/src/Controls/src/Core/HandlerImpl/Window/Window.Android.cs b/src/Controls/src/Core/HandlerImpl/Window/Window.Android.cs index 0d8985988794..80d1484d422e 100644 --- a/src/Controls/src/Core/HandlerImpl/Window/Window.Android.cs +++ b/src/Controls/src/Core/HandlerImpl/Window/Window.Android.cs @@ -12,19 +12,9 @@ public partial class Window internal Activity PlatformActivity => (Handler?.PlatformView as Activity) ?? throw new InvalidOperationException("Window should have an Activity set."); + [Obsolete] public static void MapContent(WindowHandler handler, IWindow view) { - if (view.Content is not Shell) - { - WindowHandler.MapContent(handler, view); - return; - } - - var nativeContent = view.Content.ToContainerView(handler.MauiContext!); - handler.PlatformView.SetContentView(nativeContent); - - if (view is Window w) - handler?.UpdateValue(nameof(IToolbarElement.Toolbar)); } } } \ No newline at end of file diff --git a/src/Controls/src/Core/HandlerImpl/Window/Window.Impl.cs b/src/Controls/src/Core/HandlerImpl/Window/Window.Impl.cs index 87910636db8a..26885ca6211a 100644 --- a/src/Controls/src/Core/HandlerImpl/Window/Window.Impl.cs +++ b/src/Controls/src/Core/HandlerImpl/Window/Window.Impl.cs @@ -30,6 +30,7 @@ public partial class Window : NavigableElement, IWindow, IVisualTreeElement, ITo List _visualChildren; Toolbar? _toolbar; MenuBarTracker _menuBarTracker; + bool _isActivated; IToolbar? IToolbarElement.Toolbar => Toolbar; internal Toolbar? Toolbar @@ -161,7 +162,25 @@ public bool RemoveOverlay(IWindowOverlay overlay) internal IMauiContext MauiContext => Handler?.MauiContext ?? throw new InvalidOperationException("MauiContext is null."); - internal bool IsActivated { get; private set; } + internal bool IsActivated + { + get + { + return _isActivated; + } + private set + { + if (_isActivated == value) + return; + + _isActivated = value; + + if (value) + SendWindowAppearing(); + else + SendWindowDisppearing(); + } + } IFlowDirectionController FlowController => this; @@ -259,6 +278,11 @@ void SendWindowAppearing() Page?.SendAppearing(); } + void SendWindowDisppearing() + { + Page?.SendDisappearing(); + } + void OnModalPopped(Page modalPage) { int index = _visualChildren.IndexOf(modalPage); @@ -406,6 +430,9 @@ static void OnPageChanging(BindableObject bindable, object oldValue, object newV if (bindable is not Window window) return; + if (oldValue is Page oldPage) + oldPage.SendDisappearing(); + if (newValue is IToolbarElement toolbarElement && toolbarElement.Toolbar is Toolbar tb && newValue is not Shell) diff --git a/src/Controls/src/Core/HandlerImpl/Window/Window.cs b/src/Controls/src/Core/HandlerImpl/Window/Window.cs index 91d6b81becc0..dd61c7b4f7bc 100644 --- a/src/Controls/src/Core/HandlerImpl/Window/Window.cs +++ b/src/Controls/src/Core/HandlerImpl/Window/Window.cs @@ -5,9 +5,7 @@ namespace Microsoft.Maui.Controls { public partial class Window { - public static IPropertyMapper ControlsWindowMapper = new PropertyMapper(WindowHandler.Mapper) - { - }; + public static IPropertyMapper ControlsWindowMapper = new PropertyMapper(WindowHandler.Mapper); internal static void RemapForControls() { diff --git a/src/Controls/src/Core/Handlers/Items/Android/Adapters/SelectableItemsViewAdapter.cs b/src/Controls/src/Core/Handlers/Items/Android/Adapters/SelectableItemsViewAdapter.cs index f94f9c328b63..0c66205ba662 100644 --- a/src/Controls/src/Core/Handlers/Items/Android/Adapters/SelectableItemsViewAdapter.cs +++ b/src/Controls/src/Core/Handlers/Items/Android/Adapters/SelectableItemsViewAdapter.cs @@ -136,7 +136,6 @@ void UpdateMauiSelection(int adapterPosition) return; case SelectionMode.Single: ItemsView.SelectedItem = ItemsSource.GetItem(adapterPosition); - RefreshViewHolderSelection(); return; case SelectionMode.Multiple: var item = ItemsSource.GetItem(adapterPosition); @@ -150,17 +149,8 @@ void UpdateMauiSelection(int adapterPosition) { selectedItems.Add(item); } - RefreshViewHolderSelection(); return; } - - void RefreshViewHolderSelection() - { - for (int position = 0; position < _currentViewHolders.Count; position++) - { - _currentViewHolders[position].IsSelected = PositionIsSelected(position); - } - } } } } diff --git a/src/Controls/src/Core/Handlers/Items/Android/MauiCarouselRecyclerView.cs b/src/Controls/src/Core/Handlers/Items/Android/MauiCarouselRecyclerView.cs index c3050dfb74f2..669f790a0e18 100644 --- a/src/Controls/src/Core/Handlers/Items/Android/MauiCarouselRecyclerView.cs +++ b/src/Controls/src/Core/Handlers/Items/Android/MauiCarouselRecyclerView.cs @@ -114,14 +114,14 @@ public override void UpdateAdapter() // So we give it an alternate delegate for creating the views var oldItemViewAdapter = ItemsViewAdapter; - + if (oldItemViewAdapter != null) { UnsubscribeCollectionItemsSourceChanged(oldItemViewAdapter); ItemsView.SetValueFromRenderer(CarouselView.PositionProperty, 0); ItemsView.SetValueFromRenderer(CarouselView.CurrentItemProperty, null); } - + _gotoPosition = -1; base.UpdateAdapter(); diff --git a/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs b/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs index b317bcb74825..c2825678e200 100644 --- a/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs +++ b/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs @@ -544,6 +544,7 @@ internal void UpdateEmptyViewVisibility() // TODO hartez 2018/10/24 17:34:36 If this works, cache this layout manager as _emptyLayoutManager SetLayoutManager(new LinearLayoutManager(Context)); + UpdateEmptyView(); } else if (!showEmptyView && currentAdapter != ItemsViewAdapter) { diff --git a/src/Controls/src/Core/Handlers/Items/CarouselViewHandler.Windows.cs b/src/Controls/src/Core/Handlers/Items/CarouselViewHandler.Windows.cs index f41ef3dffdb0..1116b0736b69 100644 --- a/src/Controls/src/Core/Handlers/Items/CarouselViewHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Items/CarouselViewHandler.Windows.cs @@ -30,7 +30,7 @@ protected override void ConnectHandler(ListViewBase platformView) { ItemsView.Scrolled -= CarouselScrolled; ListViewBase.SizeChanged += InitialSetup; - + UpdateScrollBarVisibilityForLoop(); base.ConnectHandler(platformView); @@ -196,7 +196,7 @@ public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView c handler.UpdatePeekAreaInsets(); } - public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView) + public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView) { handler.UpdateLoop(); } diff --git a/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.Windows.cs b/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.Windows.cs index f4cae5dea190..3f1f6377a25f 100644 --- a/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.Windows.cs @@ -8,6 +8,6 @@ namespace Microsoft.Maui.Controls.Handlers.Items { public partial class CollectionViewHandler : ReorderableItemsViewHandler { - + } } diff --git a/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.cs b/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.cs index e303512f4dee..f6b1e0e17a77 100644 --- a/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.cs +++ b/src/Controls/src/Core/Handlers/Items/CollectionViewHandler.cs @@ -31,11 +31,11 @@ public CollectionViewHandler(PropertyMapper mapper = null) : base(mapper ?? Mapp [StructuredItemsView.FooterTemplateProperty.PropertyName] = MapFooterTemplate, [StructuredItemsView.ItemsLayoutProperty.PropertyName] = MapItemsLayout, [StructuredItemsView.ItemSizingStrategyProperty.PropertyName] = MapItemSizingStrategy, - //[SelectableItemsView.SelectedItemProperty.PropertyName] = MapSelectedItem, - //[SelectableItemsView.SelectedItemsProperty.PropertyName] = MapSelectedItems, - //[SelectableItemsView.SelectionModeProperty.PropertyName] = MapSelectionMode, - //[GroupableItemsView.IsGroupedProperty.PropertyName] = MapIsGrouped - [ReorderableItemsView.IsGroupedProperty.PropertyName] = MapCanReorderItems + [SelectableItemsView.SelectedItemProperty.PropertyName] = MapSelectedItem, + [SelectableItemsView.SelectedItemsProperty.PropertyName] = MapSelectedItems, + [SelectableItemsView.SelectionModeProperty.PropertyName] = MapSelectionMode, + [GroupableItemsView.IsGroupedProperty.PropertyName] = MapIsGrouped, + [ReorderableItemsView.CanReorderItemsProperty.PropertyName] = MapCanReorderItems }; } } diff --git a/src/Controls/src/Core/Handlers/Items/ItemsViewHandler.Windows.cs b/src/Controls/src/Core/Handlers/Items/ItemsViewHandler.Windows.cs index 95644b1d7b19..1867990ca012 100644 --- a/src/Controls/src/Core/Handlers/Items/ItemsViewHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Items/ItemsViewHandler.Windows.cs @@ -20,7 +20,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items { - public abstract partial class ItemsViewHandler : ViewHandler where TItemsView : ItemsView + public abstract partial class ItemsViewHandler : ViewHandler where TItemsView : ItemsView { protected CollectionViewSource CollectionViewSource; ScrollViewer _scrollViewer; @@ -58,7 +58,7 @@ protected override void DisconnectHandler(ListViewBase platformView) base.DisconnectHandler(platformView); } - public static void MapItemsSource(ItemsViewHandler handler, ItemsView itemsView) + public static void MapItemsSource(ItemsViewHandler handler, ItemsView itemsView) { handler.UpdateItemsSource(); } @@ -100,7 +100,7 @@ public static void MapIsVisible(ItemsViewHandler handler, ItemsView public static void MapItemsUpdatingScrollMode(ItemsViewHandler handler, ItemsView itemsView) { - + } protected abstract ListViewBase SelectListViewBase(); diff --git a/src/Controls/src/Core/Handlers/Items/StructuredItemsViewHandler.Windows.cs b/src/Controls/src/Core/Handlers/Items/StructuredItemsViewHandler.Windows.cs index fe5b721cd9af..e088961aaeb2 100644 --- a/src/Controls/src/Core/Handlers/Items/StructuredItemsViewHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Items/StructuredItemsViewHandler.Windows.cs @@ -32,7 +32,7 @@ public static void MapItemsLayout(StructuredItemsViewHandler handler public static void MapItemSizingStrategy(StructuredItemsViewHandler handler, StructuredItemsView itemsView) { - + } protected override ListViewBase SelectListViewBase() diff --git a/src/Controls/src/Core/Handlers/Items/iOS/ItemsViewController.cs b/src/Controls/src/Core/Handlers/Items/iOS/ItemsViewController.cs index 01721a1168a7..9ea7c84f3f9c 100644 --- a/src/Controls/src/Core/Handlers/Items/iOS/ItemsViewController.cs +++ b/src/Controls/src/Core/Handlers/Items/iOS/ItemsViewController.cs @@ -137,7 +137,7 @@ public override void ViewDidLoad() if (!(OperatingSystem.IsIOSVersionAtLeast(11) || OperatingSystem.IsTvOSVersionAtLeast(11))) { AutomaticallyAdjustsScrollViewInsets = false; - } + } else { // We set this property to keep iOS from trying to be helpful about insetting all the diff --git a/src/Controls/src/Core/Handlers/Items/iOS/TemplatedCell.cs b/src/Controls/src/Core/Handlers/Items/iOS/TemplatedCell.cs index 3c08fe600134..915c37e954a7 100644 --- a/src/Controls/src/Core/Handlers/Items/iOS/TemplatedCell.cs +++ b/src/Controls/src/Core/Handlers/Items/iOS/TemplatedCell.cs @@ -1,4 +1,5 @@ using System; +using System.ComponentModel; using CoreGraphics; using Foundation; using Microsoft.Maui.Controls.Internals; @@ -93,6 +94,24 @@ CGSize UpdateCellSize() return size; } + [Obsolete] + [EditorBrowsable(EditorBrowsableState.Never)] + protected void Layout(CGSize constraints) + { + var platformView = PlatformHandler.ToPlatform(); + + var width = constraints.Width; + var height = constraints.Height; + + PlatformHandler.VirtualView.Measure(width, height); + + platformView.Frame = new CGRect(0, 0, width, height); + + var rectangle = platformView.Frame.ToRectangle(); + PlatformHandler.VirtualView.Arrange(rectangle); + _size = rectangle.Size; + } + public void Bind(DataTemplate template, object bindingContext, ItemsView itemsView) { var oldElement = PlatformHandler?.VirtualView as View; @@ -177,22 +196,6 @@ void SetRenderer(IPlatformViewHandler renderer) (renderer.VirtualView as View).MeasureInvalidated += MeasureInvalidated; } - protected void Layout(CGSize constraints) - { - var platformView = PlatformHandler.ToPlatform(); - - var width = constraints.Width; - var height = constraints.Height; - - PlatformHandler.VirtualView.Measure(width, height); - - platformView.Frame = new CGRect(0, 0, width, height); - - var rectangle = platformView.Frame.ToRectangle(); - PlatformHandler.VirtualView.Arrange(rectangle); - _size = rectangle.Size; - } - void ClearSubviews() { for (int n = ContentView.Subviews.Length - 1; n >= 0; n--) diff --git a/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Tizen.cs b/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Tizen.cs index 1494179e4bdd..c946a36c5ee4 100644 --- a/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Tizen.cs +++ b/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Tizen.cs @@ -2,7 +2,7 @@ namespace Microsoft.Maui.Controls.Handlers { - public partial class LineHandler + public partial class LineHandler { public static void MapX1(IShapeViewHandler handler, Line line) { diff --git a/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Windows.cs b/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Windows.cs index c516f57a8f2a..e53c2d6799cb 100644 --- a/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.Windows.cs @@ -3,7 +3,7 @@ namespace Microsoft.Maui.Controls.Handlers { - public partial class LineHandler + public partial class LineHandler { public static void MapX1(IShapeViewHandler handler, Line line) { diff --git a/src/Controls/src/Core/Handlers/Shapes/Path/PathHandler.Tizen.cs b/src/Controls/src/Core/Handlers/Shapes/Path/PathHandler.Tizen.cs index f4ef45d6d524..9becec1401db 100644 --- a/src/Controls/src/Core/Handlers/Shapes/Path/PathHandler.Tizen.cs +++ b/src/Controls/src/Core/Handlers/Shapes/Path/PathHandler.Tizen.cs @@ -2,7 +2,7 @@ namespace Microsoft.Maui.Controls.Handlers { - public partial class PathHandler + public partial class PathHandler { public static void MapData(IShapeViewHandler handler, Path path) { diff --git a/src/Controls/src/Core/Handlers/Shapes/Rectangle/RectangleHandler.Windows.cs b/src/Controls/src/Core/Handlers/Shapes/Rectangle/RectangleHandler.Windows.cs index 8c9eea951003..ced3c8e08aca 100644 --- a/src/Controls/src/Core/Handlers/Shapes/Rectangle/RectangleHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Shapes/Rectangle/RectangleHandler.Windows.cs @@ -3,7 +3,7 @@ namespace Microsoft.Maui.Controls.Handlers { public partial class RectangleHandler - { + { public static void MapRadiusX(IShapeViewHandler handler, Rectangle rectangle) { handler.PlatformView?.InvalidateShape(rectangle); diff --git a/src/Controls/src/Core/Handlers/Shell/ShellHandler.Windows.cs b/src/Controls/src/Core/Handlers/Shell/ShellHandler.Windows.cs index d2cbb53ae59e..952a60fb8896 100644 --- a/src/Controls/src/Core/Handlers/Shell/ShellHandler.Windows.cs +++ b/src/Controls/src/Core/Handlers/Shell/ShellHandler.Windows.cs @@ -131,7 +131,7 @@ public static void MapFlyout(ShellHandler handler, IFlyoutView flyoutView) rnv.FlyoutView = flyoutView.Flyout; handler.PlatformView.FlyoutCustomContent = flyoutView.Flyout?.ToPlatform(handler.MauiContext); - + } public static void MapIsPresented(ShellHandler handler, IFlyoutView flyoutView) diff --git a/src/Controls/src/Core/Handlers/Shell/Windows/ShellFlyoutTemplateSelector.cs b/src/Controls/src/Core/Handlers/Shell/Windows/ShellFlyoutTemplateSelector.cs index ff0a1c764fca..60ea13def267 100644 --- a/src/Controls/src/Core/Handlers/Shell/Windows/ShellFlyoutTemplateSelector.cs +++ b/src/Controls/src/Core/Handlers/Shell/Windows/ShellFlyoutTemplateSelector.cs @@ -25,10 +25,10 @@ protected override Microsoft.UI.Xaml.DataTemplate SelectTemplateCore(object item { if (item is MenuFlyoutSeparator) return SeperatorTemplate; - + if (item is MenuItem) return MenuItemTemplate; - + return BaseShellItemTemplate; } } diff --git a/src/Controls/src/Core/Handlers/Shell/Windows/ShellFooterView.cs b/src/Controls/src/Core/Handlers/Shell/Windows/ShellFooterView.cs index a5bf36706ca7..a95bfdbd86cd 100644 --- a/src/Controls/src/Core/Handlers/Shell/Windows/ShellFooterView.cs +++ b/src/Controls/src/Core/Handlers/Shell/Windows/ShellFooterView.cs @@ -28,10 +28,10 @@ void OnShellFooterViewSizeChanged(object sender, SizeChangedEventArgs e) public void SetElement(Shell shell) { - if(_shell != null) + if (_shell != null) _shell.PropertyChanged -= OnShellPropertyChanged; - if(shell != null) + if (shell != null) { _shell = shell; _shell.PropertyChanged += OnShellPropertyChanged; @@ -41,7 +41,7 @@ public void SetElement(Shell shell) void OnShellPropertyChanged(object sender, PropertyChangedEventArgs e) { - if(e.IsOneOf(Shell.FlyoutFooterProperty, Shell.FlyoutFooterTemplateProperty)) + if (e.IsOneOf(Shell.FlyoutFooterProperty, Shell.FlyoutFooterTemplateProperty)) UpdateFooter(); } @@ -49,7 +49,7 @@ void UpdateFooter() { if (Element != null) { - if(Content is ViewToHandlerConverter.WrapperControl wrapperControl) + if (Content is ViewToHandlerConverter.WrapperControl wrapperControl) { wrapperControl.CleanUp(); Content = null; diff --git a/src/Controls/src/Core/Handlers/Shell/Windows/ShellHeaderView.cs b/src/Controls/src/Core/Handlers/Shell/Windows/ShellHeaderView.cs index 6ddb9e4297c8..5d685c38c0b6 100644 --- a/src/Controls/src/Core/Handlers/Shell/Windows/ShellHeaderView.cs +++ b/src/Controls/src/Core/Handlers/Shell/Windows/ShellHeaderView.cs @@ -25,10 +25,10 @@ void OnShellHeaderViewSizeChanged(object sender, SizeChangedEventArgs e) public void SetElement(Shell shell) { - if(_shell != null) + if (_shell != null) _shell.PropertyChanged -= OnShellPropertyChanged; - if(shell != null) + if (shell != null) { _shell = shell; _shell.PropertyChanged += OnShellPropertyChanged; @@ -38,7 +38,7 @@ public void SetElement(Shell shell) void OnShellPropertyChanged(object sender, PropertyChangedEventArgs e) { - if(e.IsOneOf(Shell.FlyoutHeaderProperty, Shell.FlyoutHeaderTemplateProperty)) + if (e.IsOneOf(Shell.FlyoutHeaderProperty, Shell.FlyoutHeaderTemplateProperty)) UpdateHeader(); } @@ -46,7 +46,7 @@ void UpdateHeader() { if (Element != null) { - if(Content is ViewToHandlerConverter.WrapperControl wrapperControl) + if (Content is ViewToHandlerConverter.WrapperControl wrapperControl) { wrapperControl.CleanUp(); Content = null; diff --git a/src/Controls/src/Core/Handlers/Shell/Windows/ShellSplitView.cs b/src/Controls/src/Core/Handlers/Shell/Windows/ShellSplitView.cs index 306c2ba4c105..2a378cbe3c94 100644 --- a/src/Controls/src/Core/Handlers/Shell/Windows/ShellSplitView.cs +++ b/src/Controls/src/Core/Handlers/Shell/Windows/ShellSplitView.cs @@ -67,14 +67,14 @@ internal void RefreshFlyoutBackdrop() { // Because shell is currently Nesting Navigation Views we have to be careful and make sure to retrive the correct one // If we just do a straight search for "LightDismissLayer it will return the wrong one. - if(_dismissLayer == null) + if (_dismissLayer == null) { var contentRoot = _splitView.GetDescendantByName("ContentRoot"); - if(contentRoot != null) + if (contentRoot != null) { - foreach(var child in contentRoot.Children) + foreach (var child in contentRoot.Children) { - if(child is WRectangle maybe && + if (child is WRectangle maybe && $"{child.GetValue(FrameworkElement.NameProperty)}" == "LightDismissLayer") { _dismissLayer = maybe; @@ -83,7 +83,7 @@ internal void RefreshFlyoutBackdrop() } } } - + if (_dismissLayer == null) return; diff --git a/src/Controls/src/Core/Handlers/Shell/Windows/ShellToolbarItemView.cs b/src/Controls/src/Core/Handlers/Shell/Windows/ShellToolbarItemView.cs index 148d10d85bb0..32758cfcdfed 100644 --- a/src/Controls/src/Core/Handlers/Shell/Windows/ShellToolbarItemView.cs +++ b/src/Controls/src/Core/Handlers/Shell/Windows/ShellToolbarItemView.cs @@ -41,7 +41,7 @@ public ToolbarItem ToolbarItem void ToolbarItemChanged(ToolbarItem oldItem, ToolbarItem newItem) { - if(oldItem != null) + if (oldItem != null) oldItem.PropertyChanged -= ToolbarItemPropertyChanged; // TODO MAUI diff --git a/src/Controls/src/Core/Handlers/Shell/Windows/ViewToHandlerConverter.cs b/src/Controls/src/Core/Handlers/Shell/Windows/ViewToHandlerConverter.cs index e8652e0d9071..135f1c245008 100644 --- a/src/Controls/src/Core/Handlers/Shell/Windows/ViewToHandlerConverter.cs +++ b/src/Controls/src/Core/Handlers/Shell/Windows/ViewToHandlerConverter.cs @@ -45,7 +45,7 @@ internal void CleanUp() { _view?.Cleanup(); - if(_view != null) + if (_view != null) _view.MeasureInvalidated -= OnMeasureInvalidated; } @@ -58,7 +58,7 @@ public WrapperControl(View view) Children.Add(FrameworkElement); // make sure we re-measure once the template is applied - + FrameworkElement.Loaded += (sender, args) => { // If the view is a layout (stacklayout, grid, etc) we need to trigger a layout pass @@ -77,7 +77,7 @@ void OnMeasureInvalidated(object? sender, EventArgs e) protected override WSize ArrangeOverride(WSize finalSize) { _view.IsInPlatformLayout = true; - (_view.Handler as IPlatformViewHandler)?.LayoutVirtualView(finalSize); + (_view.Handler as IPlatformViewHandler)?.LayoutVirtualView(finalSize); if (_view.Width <= 0 || _view.Height <= 0) { diff --git a/src/Controls/src/Core/Interactivity/PlatformBehavior.cs b/src/Controls/src/Core/Interactivity/PlatformBehavior.cs index 72ed87e04cfe..99879ec7ba6b 100644 --- a/src/Controls/src/Core/Interactivity/PlatformBehavior.cs +++ b/src/Controls/src/Core/Interactivity/PlatformBehavior.cs @@ -10,7 +10,7 @@ using PlatformView = Microsoft.UI.Xaml.FrameworkElement; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif NET6_0 || (NETSTANDARD || !PLATFORM) +#elif NET6_0_OR_GREATER || (NETSTANDARD || !PLATFORM) using PlatformView = System.Object; #endif diff --git a/src/Controls/src/Core/Layout/FlexLayout.cs b/src/Controls/src/Core/Layout/FlexLayout.cs index e1796064c303..19a4f841530c 100644 --- a/src/Controls/src/Core/Layout/FlexLayout.cs +++ b/src/Controls/src/Core/Layout/FlexLayout.cs @@ -460,10 +460,9 @@ void InitItemProperties(IView view, Flex.Item item) item.Height = height < 0 ? float.NaN : (float)height; item.IsVisible = GetIsVisible(view); - // TODO ezhart The Core layout interfaces don't have the padding property yet; when that's available, we should add a check for it here - if (view is FlexLayout && view is Controls.Layout layout) + if (view is IPadding viewWithPadding) { - var (pleft, ptop, pright, pbottom) = (Thickness)layout.GetValue(Compatibility.Layout.PaddingProperty); + var (pleft, ptop, pright, pbottom) = viewWithPadding.Padding; item.PaddingLeft = (float)pleft; item.PaddingTop = (float)ptop; item.PaddingRight = (float)pright; @@ -471,19 +470,49 @@ void InitItemProperties(IView view, Flex.Item item) } } + // Until we can rewrite the FlexLayout engine to handle measurement properly (without the "in measure mode" hacks) + // we need to replace the default implementation of CrossPlatformMeasure. + // And we need to disable the public API analyzer briefly, because it doesn't understand hiding. +#pragma warning disable RS0016 // Add public types and members to the declared API + new public Graphics.Size CrossPlatformMeasure(double widthConstraint, double heightConstraint) +#pragma warning restore RS0016 // Add public types and members to the declared API + { + var layoutManager = _layoutManager ??= CreateLayoutManager(); + + InMeasureMode = true; + var result = layoutManager.Measure(widthConstraint, heightConstraint); + InMeasureMode = false; + + return result; + } + + internal bool InMeasureMode { get; set; } + void AddFlexItem(IView child) { if (_root == null) return; var item = (child as FlexLayout)?._root ?? new Flex.Item(); InitItemProperties(child, item); - if (!(child is FlexLayout)) - { //inner layouts don't get measured + if (child is not FlexLayout) + { item.SelfSizing = (Flex.Item it, ref float w, ref float h) => { var sizeConstraints = item.GetConstraints(); - sizeConstraints.Width = (sizeConstraints.Width == 0) ? double.PositiveInfinity : sizeConstraints.Width; - sizeConstraints.Height = (sizeConstraints.Height == 0) ? double.PositiveInfinity : sizeConstraints.Height; + + sizeConstraints.Width = (InMeasureMode && sizeConstraints.Width == 0) ? double.PositiveInfinity : sizeConstraints.Width; + sizeConstraints.Height = (InMeasureMode && sizeConstraints.Height == 0) ? double.PositiveInfinity : sizeConstraints.Height; + + if (child is Image) + { + // This is a hack to get FlexLayout to behave like it did in Forms + // Forms always did its initial image measure unconstrained, which would return + // the intrinsic size of the image (no scaling or aspect ratio adjustments) + + sizeConstraints.Width = double.PositiveInfinity; + sizeConstraints.Height = double.PositiveInfinity; + } + var request = child.Measure(sizeConstraints.Width, sizeConstraints.Height); w = (float)request.Width; h = (float)request.Height; @@ -528,14 +557,39 @@ public Graphics.Rect GetFlexFrame(IView view) }; } + void EnsureFlexItemPropertiesUpdated() + { + for (int n = 0; n < this.Count; n++) + { + var child = this[n]; + var flexItem = GetFlexItem(child); + + InitItemProperties(child, flexItem); + } + } + /// public void Layout(double width, double height) { if (_root.Parent != null) //Layout is only computed at root level return; + + var useMeasureHack = NeedsMeasureHack(width, height); + if (useMeasureHack) + { + PrepareMeasureHack(); + } + + EnsureFlexItemPropertiesUpdated(); + _root.Width = !double.IsPositiveInfinity((width)) ? (float)width : 0; _root.Height = !double.IsPositiveInfinity((height)) ? (float)height : 0; _root.Layout(); + + if (useMeasureHack) + { + RestoreValues(); + } } protected override void OnParentSet() @@ -602,31 +656,12 @@ protected override void OnClear() PopulateLayout(); } - protected override Size MeasureOverride(double widthConstraint, double heightConstraint) - { - var useMeasureHack = NeedsMeasureHack(widthConstraint, heightConstraint); - - if (useMeasureHack) - { - PrepareMeasureHack(); - } - - var result = base.MeasureOverride(widthConstraint, heightConstraint); - - if (useMeasureHack) - { - RestoreValues(); - } - - return result; - } - - static bool NeedsMeasureHack(double widthConstraint, double heightConstraint) + static bool NeedsMeasureHack(double widthConstraint, double heightConstraint) { return double.IsInfinity(widthConstraint) || double.IsInfinity(heightConstraint); } - void PrepareMeasureHack() + void PrepareMeasureHack() { // FlexLayout's Shrink and Stretch features require a fixed area to measure/layout correctly; // when the dimensions they are working in are infinite, they don't really make sense. We can @@ -643,7 +678,7 @@ void PrepareMeasureHack() } } - void RestoreValues() + void RestoreValues() { // If we had to modify the Shrink and Stretch values of the FlexItems for measurement, we // restore them to their original values. @@ -653,7 +688,7 @@ void RestoreValues() if (GetFlexItem(child) is Flex.Item item) { item.Shrink = GetShrink(child); - item.AlignSelf = (Flex.AlignSelf)GetAlignSelf(child); + item.AlignSelf = (Flex.AlignSelf)GetAlignSelf(child); } } } diff --git a/src/Controls/src/Core/Platform/AlertManager/AlertManager.Windows.cs b/src/Controls/src/Core/Platform/AlertManager/AlertManager.Windows.cs index 04760c012ce3..fe1a0bcdc0f4 100644 --- a/src/Controls/src/Core/Platform/AlertManager/AlertManager.Windows.cs +++ b/src/Controls/src/Core/Platform/AlertManager/AlertManager.Windows.cs @@ -171,7 +171,7 @@ void OnActionSheetRequested(Page sender, ActionSheetArguments arguments) } var actionSheetContent = new ActionSheetContent(arguments); - + var actionSheet = new Flyout { FlyoutPresenterStyle = (UI.Xaml.Style)UI.Xaml.Application.Current.Resources["MauiFlyoutPresenterStyle"], diff --git a/src/Controls/src/Core/Platform/AlertManager/AlertManager.iOS.cs b/src/Controls/src/Core/Platform/AlertManager/AlertManager.iOS.cs index 48fdecdff827..441fc49bd0c7 100644 --- a/src/Controls/src/Core/Platform/AlertManager/AlertManager.iOS.cs +++ b/src/Controls/src/Core/Platform/AlertManager/AlertManager.iOS.cs @@ -20,17 +20,17 @@ internal void Subscribe(Window window) { var platformWindow = window?.MauiContext.GetPlatformWindow(); - if (Subscriptions.Any(s => s.Window == platformWindow)) + if (Subscriptions.Any(s => s.PlatformView == platformWindow)) return; - Subscriptions.Add(new AlertRequestHelper(platformWindow)); + Subscriptions.Add(new AlertRequestHelper(window, platformWindow)); } internal void Unsubscribe(Window window) { var platformWindow = window?.MauiContext.GetPlatformWindow(); - var toRemove = Subscriptions.Where(s => s.Window == platformWindow).ToList(); + var toRemove = Subscriptions.Where(s => s.PlatformView == platformWindow).ToList(); foreach (AlertRequestHelper alertRequestHelper in toRemove) { @@ -45,24 +45,27 @@ internal sealed class AlertRequestHelper : IDisposable int _busyCount; - internal AlertRequestHelper(UIWindow window) + internal AlertRequestHelper(Window virtualView, UIWindow platformView) { - Window = window; + VirtualView = virtualView; + PlatformView = platformView; - MessagingCenter.Subscribe(Window, Page.BusySetSignalName, OnPageBusy); - MessagingCenter.Subscribe(Window, Page.AlertSignalName, OnAlertRequested); - MessagingCenter.Subscribe(Window, Page.PromptSignalName, OnPromptRequested); - MessagingCenter.Subscribe(Window, Page.ActionSheetSignalName, OnActionSheetRequested); + MessagingCenter.Subscribe(PlatformView, Page.BusySetSignalName, OnPageBusy); + MessagingCenter.Subscribe(PlatformView, Page.AlertSignalName, OnAlertRequested); + MessagingCenter.Subscribe(PlatformView, Page.PromptSignalName, OnPromptRequested); + MessagingCenter.Subscribe(PlatformView, Page.ActionSheetSignalName, OnActionSheetRequested); } - public UIWindow Window { get; } + public Window VirtualView { get; } + + public UIWindow PlatformView { get; } public void Dispose() { - MessagingCenter.Unsubscribe(Window, Page.BusySetSignalName); - MessagingCenter.Unsubscribe(Window, Page.AlertSignalName); - MessagingCenter.Unsubscribe(Window, Page.PromptSignalName); - MessagingCenter.Unsubscribe(Window, Page.ActionSheetSignalName); + MessagingCenter.Unsubscribe(PlatformView, Page.BusySetSignalName); + MessagingCenter.Unsubscribe(PlatformView, Page.AlertSignalName); + MessagingCenter.Unsubscribe(PlatformView, Page.PromptSignalName); + MessagingCenter.Unsubscribe(PlatformView, Page.ActionSheetSignalName); } void OnPageBusy(IView sender, bool enabled) @@ -106,7 +109,7 @@ void PresentAlert(AlertArguments arguments) _ => arguments.SetResult(true))); } - PresentPopUp(Window, alert); + PresentPopUp(VirtualView, PlatformView, alert); } void PresentPrompt(PromptArguments arguments) @@ -126,7 +129,7 @@ void PresentPrompt(PromptArguments arguments) alert.AddAction(UIAlertAction.Create(arguments.Cancel, UIAlertActionStyle.Cancel, _ => arguments.SetResult(null))); alert.AddAction(UIAlertAction.Create(arguments.Accept, UIAlertActionStyle.Default, _ => arguments.SetResult(alert.TextFields[0].Text))); - PresentPopUp(Window, alert); + PresentPopUp(VirtualView, PlatformView, alert); } @@ -155,15 +158,16 @@ void PresentActionSheet(ActionSheetArguments arguments) alert.AddAction(UIAlertAction.Create(blabel, UIAlertActionStyle.Default, _ => arguments.SetResult(blabel))); } - PresentPopUp(Window, alert, arguments); + PresentPopUp(VirtualView, PlatformView, alert, arguments); } - static void PresentPopUp(UIWindow window, UIAlertController alert, ActionSheetArguments arguments = null) + + static void PresentPopUp(Window virtualView, UIWindow platformView, UIAlertController alert, ActionSheetArguments arguments = null) { if (UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Pad && arguments != null) { UIDevice.CurrentDevice.BeginGeneratingDeviceOrientationNotifications(); var observer = NSNotificationCenter.DefaultCenter.AddObserver(UIDevice.OrientationDidChangeNotification, - n => { alert.PopoverPresentationController.SourceRect = window.RootViewController.View.Bounds; }); + n => { alert.PopoverPresentationController.SourceRect = platformView.RootViewController.View.Bounds; }); arguments.Result.Task.ContinueWith(t => { @@ -171,16 +175,32 @@ static void PresentPopUp(UIWindow window, UIAlertController alert, ActionSheetAr UIDevice.CurrentDevice.EndGeneratingDeviceOrientationNotifications(); }, TaskScheduler.FromCurrentSynchronizationContext()); - alert.PopoverPresentationController.SourceView = window.RootViewController.View; - alert.PopoverPresentationController.SourceRect = window.RootViewController.View.Bounds; + alert.PopoverPresentationController.SourceView = platformView.RootViewController.View; + alert.PopoverPresentationController.SourceRect = platformView.RootViewController.View.Bounds; alert.PopoverPresentationController.PermittedArrowDirections = 0; // No arrow } - window.BeginInvokeOnMainThread(() => + var modalStack = virtualView?.Navigation?.ModalStack; + + if (modalStack != null && modalStack.Count > 0) { - _ = window.RootViewController.PresentViewControllerAsync(alert, true); - }); + var topPage = modalStack[modalStack.Count - 1]; + var pageController = topPage.ToUIViewController(topPage.FindMauiContext()); + if (pageController != null) + { + platformView.BeginInvokeOnMainThread(() => + { + pageController.PresentViewControllerAsync(alert, true); + }); + return; + } + } + + platformView.BeginInvokeOnMainThread(() => + { + _ = platformView.RootViewController.PresentViewControllerAsync(alert, true); + }); } } } diff --git a/src/Controls/src/Core/Platform/Android/BottomNavigationViewUtils.cs b/src/Controls/src/Core/Platform/Android/BottomNavigationViewUtils.cs index c800d10a36e3..4d8ad904d256 100644 --- a/src/Controls/src/Core/Platform/Android/BottomNavigationViewUtils.cs +++ b/src/Controls/src/Core/Platform/Android/BottomNavigationViewUtils.cs @@ -94,6 +94,9 @@ internal static async void SetupMenu( static async Task SetMenuItemIcon(IMenuItem menuItem, ImageSource source, IMauiContext context) { + if (!menuItem.IsAlive()) + return; + if (source == null) return; @@ -105,11 +108,10 @@ static async Task SetMenuItemIcon(IMenuItem menuItem, ImageSource source, IMauiC source, context.Context); - if (result is not null) - menuItem?.SetIcon(result.Value); + if (menuItem.IsAlive() && result is not null) + menuItem.SetIcon(result.Value); } - public static BottomSheetDialog CreateMoreBottomSheet( Action selectCallback, IMauiContext mauiContext, diff --git a/src/Controls/src/Core/Platform/Android/Extensions/ApplicationExtensions.cs b/src/Controls/src/Core/Platform/Android/Extensions/ApplicationExtensions.cs index db037ffd8598..c1940fdbe5ec 100644 --- a/src/Controls/src/Core/Platform/Android/Extensions/ApplicationExtensions.cs +++ b/src/Controls/src/Core/Platform/Android/Extensions/ApplicationExtensions.cs @@ -15,7 +15,7 @@ public static void UpdateWindowSoftInputModeAdjust(this AApplication platformVie if (Application.Current != null) { WindowSoftInputModeAdjust elementValue = Application.Current.OnThisPlatform().GetWindowSoftInputModeAdjust(); - + switch (elementValue) { case WindowSoftInputModeAdjust.Resize: diff --git a/src/Controls/src/Core/Platform/Android/Extensions/EditTextExtensions.cs b/src/Controls/src/Core/Platform/Android/Extensions/EditTextExtensions.cs index 9f47aa4f3c74..fa2d14280e3f 100644 --- a/src/Controls/src/Core/Platform/Android/Extensions/EditTextExtensions.cs +++ b/src/Controls/src/Core/Platform/Android/Extensions/EditTextExtensions.cs @@ -1,7 +1,10 @@ -using Android.Widget; +using Android.Text; +using Android.Widget; +using AndroidX.Core.Widget; using Microsoft.Maui.Controls.Internals; using Microsoft.Maui.Controls.Platform.Android; using Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific; +using Microsoft.Maui.Platform; namespace Microsoft.Maui.Controls.Platform { @@ -13,33 +16,31 @@ public static void UpdateImeOptions(this EditText editText, Entry entry) editText.ImeOptions = imeOptions; } - + public static void UpdateText(this EditText editText, InputView inputView) { - // Is UpdateText being called only to transform the text - // that's already set on the platform element? - // If so then we want to retain the cursor position - bool transformingPlatformText = - (editText.Text == inputView.Text); + bool isPasswordEnabled = + (editText.InputType & InputTypes.TextVariationPassword) == InputTypes.TextVariationPassword || + (editText.InputType & InputTypes.NumberVariationPassword) == InputTypes.NumberVariationPassword; + + // Setting the text causes the cursor to be reset to position zero. + // So, let's retain the current cursor position and calculate a new cursor + // position if the text was modified by a Converter. + var oldText = editText.Text ?? string.Empty; + var newText = TextTransformUtilites.GetTransformedText( + inputView?.Text, + isPasswordEnabled ? TextTransform.None : inputView.TextTransform + ); - var value = TextTransformUtilites.GetTransformedText(inputView.Text, inputView.TextTransform); + // Re-calculate the cursor offset position if the text was modified by a Converter. + // but if the text is being set by code, let's just move the cursor to the end. + var cursorOffset = newText.Length - oldText.Length; + int cursorPosition = editText.IsFocused ? editText.GetCursorPosition(cursorOffset) : newText.Length; - if (!transformingPlatformText) - { - editText.Text = value; - } - else - { - // Setting the text causes the cursor to reset to position zero - // so if we are transforming the text and then setting it to a - // new value then we need to retain the cursor position - if (value == editText.Text) - return; + if (oldText != newText) + editText.Text = newText; - int selectionStart = editText.SelectionStart; - editText.Text = value; - editText.SetSelection(selectionStart); - } + editText.SetSelection(cursorPosition, cursorPosition); } } } \ No newline at end of file diff --git a/src/Controls/src/Core/Platform/Android/Extensions/FormattedStringExtensions.cs b/src/Controls/src/Core/Platform/Android/Extensions/FormattedStringExtensions.cs index 01c8a1f3dbd9..a944926306c5 100644 --- a/src/Controls/src/Core/Platform/Android/Extensions/FormattedStringExtensions.cs +++ b/src/Controls/src/Core/Platform/Android/Extensions/FormattedStringExtensions.cs @@ -15,7 +15,7 @@ namespace Microsoft.Maui.Controls.Platform public static class FormattedStringExtensions { public static SpannableString ToSpannableString(this Label label) - => ToSpannableString( + => ToSpannableStringNewWay( label.FormattedText, label.RequireFontManager(), label.Handler?.MauiContext?.Context, @@ -26,7 +26,28 @@ public static SpannableString ToSpannableString(this Label label) label.TextTransform, label.TextDecorations); + // TODO: NET7 this overload must be removed in net7.0 and replace with the one below public static SpannableString ToSpannableString( + this FormattedString formattedString, + IFontManager fontManager, + TextPaint? textPaint = null, + Context? context = null, + double defaultLineHeight = 0, + TextAlignment defaultHorizontalAlignment = TextAlignment.Start, + Font? defaultFont = null, + Graphics.Color? defaultColor = null, + TextTransform defaultTextTransform = TextTransform.Default) + => formattedString.ToSpannableStringNewWay( + fontManager, + context, + 0d, + defaultHorizontalAlignment, + defaultFont, + defaultColor, + defaultTextTransform, + TextDecorations.None); + + internal static SpannableString ToSpannableStringNewWay( this FormattedString formattedString, IFontManager fontManager, Context? context = null, diff --git a/src/Controls/src/Core/Platform/Android/Extensions/RecyclerViewExtensions.cs b/src/Controls/src/Core/Platform/Android/Extensions/RecyclerViewExtensions.cs index 5df82956ea61..37cac12c2d16 100644 --- a/src/Controls/src/Core/Platform/Android/Extensions/RecyclerViewExtensions.cs +++ b/src/Controls/src/Core/Platform/Android/Extensions/RecyclerViewExtensions.cs @@ -11,8 +11,8 @@ public static class RecyclerViewExtensions public static void UpdateSelection(this RecyclerView recyclerView, SelectableItemsView selectableItemsView) { var mode = selectableItemsView.SelectionMode; - - var adapter = (recyclerView.GetAdapter() as SelectableItemsViewAdapter); + //TODO: on NET7 implement a ISelectableItemsViewAdapter interface on the adapter + var adapter = recyclerView.GetAdapter() as ReorderableItemsViewAdapter; adapter?.ClearPlatformSelection(); switch (mode) diff --git a/src/Controls/src/Core/Platform/Android/Extensions/ToolbarExtensions.cs b/src/Controls/src/Core/Platform/Android/Extensions/ToolbarExtensions.cs index 2ba04a78a65b..8901f6a832f2 100644 --- a/src/Controls/src/Core/Platform/Android/Extensions/ToolbarExtensions.cs +++ b/src/Controls/src/Core/Platform/Android/Extensions/ToolbarExtensions.cs @@ -165,8 +165,8 @@ public static void UpdateBarTextColor(this AToolbar nativeToolbar, Toolbar toolb // We need to reset the toolbar text color to the default color when it's unset if (_defaultTitleTextColor == null) { - var context = nativeToolbar.Context?.GetThemedContext (); - _defaultTitleTextColor = PlatformInterop.GetColorStateListForToolbarStyleableAttribute (context, + var context = nativeToolbar.Context?.GetThemedContext(); + _defaultTitleTextColor = PlatformInterop.GetColorStateListForToolbarStyleableAttribute(context, Resource.Attribute.toolbarStyle, Resource.Styleable.Toolbar_titleTextColor); } diff --git a/src/Controls/src/Core/Platform/GestureManager/GestureManager.Windows.cs b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Windows.cs index 6e99e44913cf..da2ebf530530 100644 --- a/src/Controls/src/Core/Platform/GestureManager/GestureManager.Windows.cs +++ b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Windows.cs @@ -401,7 +401,7 @@ void HandlePinch(ManipulationDeltaRoutedEventArgs e, View view) global::Windows.Foundation.Point translationPoint = container.TransformToVisual(Container).TransformPoint(e.Position); var scaleOriginPoint = new Point(translationPoint.X / view.Width, translationPoint.Y / view.Height); IEnumerable pinchGestures = view.GestureRecognizers.GetGesturesFor(); - + foreach (IPinchGestureController recognizer in pinchGestures) { if (!_wasPinchGestureStartedSent) diff --git a/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Tizen.cs b/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Tizen.cs index 3cbbcc8351ea..0f79d12c4108 100644 --- a/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Tizen.cs +++ b/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Tizen.cs @@ -15,7 +15,7 @@ partial void OnPageAttachedHandler() WindowMauiContext.GetPlatformWindow().SetBackButtonPressedHandler(OnBackButtonPressed); } - public Task PopModalAsync(bool animated) + public Task PopModalAsync(bool animated) { Page modal = _navModel.PopModal(); ((IPageController)modal).SendDisappearing(); diff --git a/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Windows.cs b/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Windows.cs index 038eae50e075..60771a2e3d0a 100644 --- a/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Windows.cs +++ b/src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Windows.cs @@ -1,26 +1,17 @@ #nullable enable - using System; using System.Threading.Tasks; using Microsoft.Maui.Graphics; -using Microsoft.UI.Xaml.Controls; namespace Microsoft.Maui.Controls.Platform { internal partial class ModalNavigationManager { - Panel Container - { - get - { - if (_window.NativeWindow.Content is Panel p) - return p; + WindowRootViewContainer Container => + _window.NativeWindow.Content as WindowRootViewContainer ?? + throw new InvalidOperationException("Root container Panel not found"); - throw new InvalidOperationException("Root container Panel not found"); - } - } - - public Task PopModalAsync(bool animated) + public Task PopModalAsync(bool animated) { var tcs = new TaskCompletionSource(); var currentPage = _navModel.CurrentPage; @@ -31,8 +22,7 @@ public Task PopModalAsync(bool animated) public Task PushModalAsync(Page modal, bool animated) { - if (modal == null) - throw new ArgumentNullException(nameof(modal)); + _ = modal ?? throw new ArgumentNullException(nameof(modal)); var tcs = new TaskCompletionSource(); var currentPage = _navModel.CurrentPage; @@ -43,13 +33,14 @@ public Task PushModalAsync(Page modal, bool animated) void RemovePage(Page page) { - if (Container == null || page == null) + if (page == null) return; var mauiContext = page.FindMauiContext() ?? throw new InvalidOperationException("Maui Context removed from outgoing page too early"); - Container.Children.Remove(mauiContext.GetNavigationRootManager().RootView); + var windowManager = mauiContext.GetNavigationRootManager(); + Container.RemovePage(windowManager.RootView); } void SetCurrent(Page newPage, Page previousPage, bool popping, Action? completedCallback = null) @@ -59,13 +50,12 @@ void SetCurrent(Page newPage, Page previousPage, bool popping, Action? completed if (popping) { RemovePage(previousPage); - } + } else if (newPage.BackgroundColor.IsDefault() && newPage.Background.IsEmpty) { RemovePage(previousPage); } - if (popping) { previousPage @@ -74,14 +64,16 @@ void SetCurrent(Page newPage, Page previousPage, bool popping, Action? completed ?.Disconnect(); previousPage.Handler = null; - // Un-parent the page; otherwise the Resources Changed Listeners won't be unhooked and the - // page will leak + + // Un-parent the page; otherwise the Resources Changed Listeners won't be unhooked and the + // page will leak previousPage.Parent = null; } if (Container == null || newPage == null) return; + // pushing modal if (!popping) { var modalContext = @@ -93,35 +85,34 @@ void SetCurrent(Page newPage, Page previousPage, bool popping, Action? completed var windowManager = modalContext.GetNavigationRootManager(); windowManager.Connect(newPage.ToPlatform(modalContext)); - Container.Children.Add(windowManager.RootView); + Container.AddPage(windowManager.RootView); previousPage .FindMauiContext() ?.GetNavigationRootManager() ?.UpdateAppTitleBar(false); } + // popping modal else { var windowManager = newPage.FindMauiContext()?.GetNavigationRootManager() ?? throw new InvalidOperationException("Previous Page Has Lost its MauiContext"); - if(!Container.Children.Contains(windowManager.RootView)) - Container.Children.Add(windowManager.RootView); + Container.AddPage(windowManager.RootView); windowManager.UpdateAppTitleBar(true); } completedCallback?.Invoke(); } - catch (Exception error) + catch (Exception error) when (error.HResult == -2147417842) { - //This exception prevents the Main Page from being changed in a child - //window or a different thread, except on the Main thread. + //This exception prevents the Main Page from being changed in a child + //window or a different thread, except on the Main thread. //HEX 0x8001010E - if (error.HResult == -2147417842) - throw new InvalidOperationException("Changing the current page is only allowed if it's being called from the same UI thread." + - "Please ensure that the new page is in the same UI thread as the current page."); - throw; + throw new InvalidOperationException( + "Changing the current page is only allowed if it's being called from the same UI thread." + + "Please ensure that the new page is in the same UI thread as the current page.", error); } } } diff --git a/src/Controls/src/Core/Platform/Tizen/GestureDetector.cs b/src/Controls/src/Core/Platform/Tizen/GestureDetector.cs index 6576dce5f606..0ebad536846f 100644 --- a/src/Controls/src/Core/Platform/Tizen/GestureDetector.cs +++ b/src/Controls/src/Core/Platform/Tizen/GestureDetector.cs @@ -204,7 +204,8 @@ void RemoveGesture(IGestureRecognizer recognizer) { var cache = _handlerCache; var handler = LookupHandler(recognizer); - if (handler == null) return; + if (handler == null) + return; var gestureType = cache.FirstOrDefault(x => x.Value.Contains(handler)).Key; diff --git a/src/Controls/src/Core/Platform/Tizen/Shell/ShellFlyoutItemAdaptor.cs b/src/Controls/src/Core/Platform/Tizen/Shell/ShellFlyoutItemAdaptor.cs index f9b1e4f9f587..279b113e2505 100644 --- a/src/Controls/src/Core/Platform/Tizen/Shell/ShellFlyoutItemAdaptor.cs +++ b/src/Controls/src/Core/Platform/Tizen/Shell/ShellFlyoutItemAdaptor.cs @@ -14,7 +14,7 @@ public class ShellFlyoutItemAdaptor : ItemAdaptor { Dictionary _platformViewsTable = new Dictionary(); Dictionary _dataBindedViewTable = new Dictionary(); - + Shell _shell; View? _headerCache; IMauiContext _context; diff --git a/src/Controls/src/Core/Platform/Tizen/Shell/ShellItemView.cs b/src/Controls/src/Core/Platform/Tizen/Shell/ShellItemView.cs index e5baf1884992..df53c9d73a26 100644 --- a/src/Controls/src/Core/Platform/Tizen/Shell/ShellItemView.cs +++ b/src/Controls/src/Core/Platform/Tizen/Shell/ShellItemView.cs @@ -187,7 +187,7 @@ void UpdateCurrentItem(ShellSection section) if (_moreTabItem != null) _moreTabItem.IsSelected = true; - + _disableMoreItemOpen = false; } @@ -200,7 +200,7 @@ void UpdateCurrentItem(ShellSection section) void UpdateCurrentItemFromUI(ShellSection? section) { - if (section != null && ShellItem.CurrentItem != section) + if (section != null && ShellItem.CurrentItem != section) { ShellItem.SetValueFromRenderer(ShellItem.CurrentItemProperty, section); } diff --git a/src/Controls/src/Core/Platform/Tizen/Shell/ShellSearchView.cs b/src/Controls/src/Core/Platform/Tizen/Shell/ShellSearchView.cs index 2ac091c19d26..7b037dab616b 100644 --- a/src/Controls/src/Core/Platform/Tizen/Shell/ShellSearchView.cs +++ b/src/Controls/src/Core/Platform/Tizen/Shell/ShellSearchView.cs @@ -49,7 +49,7 @@ public ShellSearchView(SearchHandler searchHandler, IMauiContext? context) } public SearchHandler Element { get; } - + public EvasObject? PlatformView => Control; protected IMauiContext? MauiContext { get; private set; } @@ -57,7 +57,7 @@ public ShellSearchView(SearchHandler searchHandler, IMauiContext? context) protected EvasObject PlatformParent => MauiContext?.GetPlatformParent() ?? throw new InvalidOperationException($"PlatformParent cannot be null here"); ISearchHandlerController SearchHandlerController => Element; - + TSearchBar? Control { get; } ~ShellSearchView() diff --git a/src/Controls/src/Core/Platform/Tizen/Shell/ShellSectionHandler.cs b/src/Controls/src/Core/Platform/Tizen/Shell/ShellSectionHandler.cs index 7c16b8bb894f..c7f7d52f0d5b 100644 --- a/src/Controls/src/Core/Platform/Tizen/Shell/ShellSectionHandler.cs +++ b/src/Controls/src/Core/Platform/Tizen/Shell/ShellSectionHandler.cs @@ -285,8 +285,8 @@ void UpdateTabsItem() { InsertTabsItem(content); } - - if(_tabs !=null) + + if (_tabs != null) _tabs.Scrollable = ShellSection.Items.Count > 3 ? TabsType.Scrollable : TabsType.Fixed; } diff --git a/src/Controls/src/Core/Platform/Tizen/Shell/ShellView.cs b/src/Controls/src/Core/Platform/Tizen/Shell/ShellView.cs index 364dab6573e0..da8e7dafd946 100644 --- a/src/Controls/src/Core/Platform/Tizen/Shell/ShellView.cs +++ b/src/Controls/src/Core/Platform/Tizen/Shell/ShellView.cs @@ -15,12 +15,18 @@ using TImage = Tizen.UIExtensions.ElmSharp.Image; using TNavigationView = Tizen.UIExtensions.ElmSharp.NavigationView; using TSelectedItemChangedEventArgs = Tizen.UIExtensions.ElmSharp.SelectedItemChangedEventArgs; +using TThemeConstants = Tizen.UIExtensions.ElmSharp.ThemeConstants; using TDPExtensions = Tizen.UIExtensions.ElmSharp.DPExtensions; namespace Microsoft.Maui.Controls.Platform { public class ShellView : EBox, IFlyoutBehaviorObserver { + // TODO: NET7 remove this for net7.0 + public static readonly EColor DefaultBackgroundColor = TThemeConstants.Shell.ColorClass.DefaultBackgroundColor; + public static readonly EColor DefaultForegroundColor = TThemeConstants.Shell.ColorClass.DefaultForegroundColor; + public static readonly EColor DefaultTitleColor = TThemeConstants.Shell.ColorClass.DefaultTitleColor; + INavigationDrawer _navigationDrawer; ITNavigationView _navigationView; FlyoutHeaderBehavior _headerBehavior; @@ -66,7 +72,7 @@ public ShellView(EvasObject parent) : base(parent) protected bool HeaderOnMenu => _headerBehavior == FlyoutHeaderBehavior.Scroll || _headerBehavior == FlyoutHeaderBehavior.CollapseOnScroll; - public virtual void SetElement(Shell shell, IMauiContext context) + public virtual void SetElement(Shell shell, IMauiContext context) { Element = shell; Element.PropertyChanged += OnElementPropertyChanged; @@ -93,7 +99,10 @@ protected virtual ShellItemView CreateShellItemView(ShellItem item) protected virtual INavigationDrawer CreateNavigationDrawer() { - return new NavigationDrawer(PlatformParent); + return new NavigationDrawer(PlatformParent) + { + IsOpen = false + }; } protected virtual ITNavigationView CreateNavigationView() @@ -175,7 +184,8 @@ protected virtual void UpdateFlyoutIsPresented() }); } - protected virtual void UpdateFlyoutWidth() + // TODO: NET7 make this public for net7.0 + internal virtual void UpdateFlyoutWidth() { _ = Element ?? throw new InvalidOperationException($"{nameof(Element)} should have been set by base class."); @@ -385,7 +395,8 @@ void OnNavigationViewLayoutUpdated(object? sender, LayoutEventArgs args) void OnHeaderSizeChanged(object? sender, EventArgs e) { var bound = (_navigationView as EvasObject)?.Geometry; - Application.Current?.Dispatcher.Dispatch(()=> { + Application.Current?.Dispatcher.Dispatch(() => + { UpdateHeaderLayout((bound?.Width).GetValueOrDefault(), (bound?.Height).GetValueOrDefault()); }); } @@ -393,7 +404,8 @@ void OnHeaderSizeChanged(object? sender, EventArgs e) void OnFooterSizeChanged(object? sender, EventArgs e) { var bound = (_navigationView as EvasObject)?.Geometry; - Application.Current?.Dispatcher.Dispatch(() => { + Application.Current?.Dispatcher.Dispatch(() => + { UpdateFooterLayout((bound?.Width).GetValueOrDefault(), (bound?.Height).GetValueOrDefault()); }); } @@ -403,7 +415,7 @@ void UpdateHeaderLayout(double widthConstraint, double heightConstraint) if ((!HeaderOnMenu) && (_headerView != null)) { var requestSize = _headerView.Measure(widthConstraint, heightConstraint); - if(_navigationView.Header != null) + if (_navigationView.Header != null) _navigationView.Header.MinimumHeight = TDPExtensions.ConvertToScaledPixel(requestSize.Request.Height); } } diff --git a/src/Controls/src/Core/Platform/Windows/CollectionView/GroupFooterItemTemplateContext.cs b/src/Controls/src/Core/Platform/Windows/CollectionView/GroupFooterItemTemplateContext.cs index cbca15541ff7..d25e224962ae 100644 --- a/src/Controls/src/Core/Platform/Windows/CollectionView/GroupFooterItemTemplateContext.cs +++ b/src/Controls/src/Core/Platform/Windows/CollectionView/GroupFooterItemTemplateContext.cs @@ -4,8 +4,8 @@ namespace Microsoft.Maui.Controls.Platform { internal class GroupFooterItemTemplateContext : ItemTemplateContext { - public GroupFooterItemTemplateContext(DataTemplate formsDataTemplate, object item, - BindableObject container, double? height = null, double? width = null, Thickness? itemSpacing = null, IMauiContext mauiContext = null) + public GroupFooterItemTemplateContext(DataTemplate formsDataTemplate, object item, + BindableObject container, double? height = null, double? width = null, Thickness? itemSpacing = null, IMauiContext mauiContext = null) : base(formsDataTemplate, item, container, height, width, itemSpacing, mauiContext) { } diff --git a/src/Controls/src/Core/Platform/Windows/CollectionView/GroupTemplateContext.cs b/src/Controls/src/Core/Platform/Windows/CollectionView/GroupTemplateContext.cs index 5b0ec4e907d4..9cd5596ab892 100644 --- a/src/Controls/src/Core/Platform/Windows/CollectionView/GroupTemplateContext.cs +++ b/src/Controls/src/Core/Platform/Windows/CollectionView/GroupTemplateContext.cs @@ -9,7 +9,7 @@ internal class GroupTemplateContext public ItemTemplateContext FooterItemTemplateContext { get; } public object Items { get; } - public GroupTemplateContext(ItemTemplateContext headerItemTemplateContext, + public GroupTemplateContext(ItemTemplateContext headerItemTemplateContext, ItemTemplateContext footerItemTemplateContext, object items) { HeaderItemTemplateContext = headerItemTemplateContext; diff --git a/src/Controls/src/Core/Platform/Windows/CollectionView/GroupedItemTemplateCollection.cs b/src/Controls/src/Core/Platform/Windows/CollectionView/GroupedItemTemplateCollection.cs index e16c2e6e852c..1b5b46efba0b 100644 --- a/src/Controls/src/Core/Platform/Windows/CollectionView/GroupedItemTemplateCollection.cs +++ b/src/Controls/src/Core/Platform/Windows/CollectionView/GroupedItemTemplateCollection.cs @@ -15,7 +15,7 @@ internal class GroupedItemTemplateCollection : ObservableCollection + public ItemTemplateContextListEnumerator(ItemTemplateContextList observableItemTemplateCollection) => _itemTemplateContextList = observableItemTemplateCollection; public void Dispose() diff --git a/src/Controls/src/Core/Platform/Windows/CollectionView/ObservableItemTemplateCollection.cs b/src/Controls/src/Core/Platform/Windows/CollectionView/ObservableItemTemplateCollection.cs index 240cc4833b08..2b8cf24f5717 100644 --- a/src/Controls/src/Core/Platform/Windows/CollectionView/ObservableItemTemplateCollection.cs +++ b/src/Controls/src/Core/Platform/Windows/CollectionView/ObservableItemTemplateCollection.cs @@ -20,7 +20,7 @@ internal class ObservableItemTemplateCollection : ObservableCollection= 0; n--) + for (int n = count - 1; n >= 0; n--) { Move(args.OldStartingIndex + n, args.NewStartingIndex + n); } @@ -201,7 +201,7 @@ void Remove(NotifyCollectionChangedEventArgs args) var count = args.OldItems.Count; - for(int n = startIndex + count - 1; n >= startIndex; n--) + for (int n = startIndex + count - 1; n >= startIndex; n--) { RemoveAt(n); } diff --git a/src/Controls/src/Core/Platform/Windows/CollectionView/ScrollHelpers.cs b/src/Controls/src/Core/Platform/Windows/CollectionView/ScrollHelpers.cs index 1d0be0aa2c23..0af671c804c7 100644 --- a/src/Controls/src/Core/Platform/Windows/CollectionView/ScrollHelpers.cs +++ b/src/Controls/src/Core/Platform/Windows/CollectionView/ScrollHelpers.cs @@ -36,7 +36,7 @@ static UWPPoint AdjustToMakeVisibleVertical(UWPPoint point, UWPSize itemSize, Sc return AdjustToEndVertical(point, itemSize, scrollViewer); } - if (point.Y >= scrollViewer.VerticalOffset + if (point.Y >= scrollViewer.VerticalOffset && point.Y < (scrollViewer.VerticalOffset + scrollViewer.ViewportHeight - itemSize.Height)) { // The target is already in the viewport, no reason to scroll at all @@ -53,7 +53,7 @@ static UWPPoint AdjustToMakeVisibleHorizontal(UWPPoint point, UWPSize itemSize, return AdjustToEndHorizontal(point, itemSize, scrollViewer); } - if (point.X >= scrollViewer.HorizontalOffset + if (point.X >= scrollViewer.HorizontalOffset && point.X < (scrollViewer.HorizontalOffset + scrollViewer.ViewportWidth - itemSize.Width)) { // The target is already in the viewport, no reason to scroll at all @@ -183,7 +183,7 @@ static async Task GetApproximateTargetAsync(ListViewBase list, ScrollV return transform.TransformPoint(Zero); } - internal static void JumpToIndexAsync(ListViewBase list, int index, ScrollToPosition scrollToPosition) + internal static void JumpToIndexAsync(ListViewBase list, int index, ScrollToPosition scrollToPosition) { var scrollViewer = list.GetFirstDescendant(); var con = list.ContainerFromIndex(index); @@ -222,7 +222,7 @@ async void ViewChanged(object s, ScrollViewerViewChangedEventArgs e) tcs.TrySetResult(null); } - + try { scrollViewer.ViewChanged += ViewChanged; diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/AccessibilityExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/AccessibilityExtensions.cs index a759153f019d..186708dc0dec 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/AccessibilityExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/AccessibilityExtensions.cs @@ -70,7 +70,7 @@ public static string SetAutomationPropertiesHelpText(this FrameworkElement Contr } public static UIElement SetAutomationPropertiesLabeledBy( - this FrameworkElement Control, + this FrameworkElement Control, Element Element, IMauiContext mauiContext, UIElement _defaultAutomationPropertiesLabeledBy = null) @@ -89,7 +89,7 @@ public static UIElement SetAutomationPropertiesLabeledBy( FrameworkElement nativeElement = null; - if(mauiContext != null) + if (mauiContext != null) nativeElement = (elemValue as IView)?.ToHandler(mauiContext)?.PlatformView as FrameworkElement; if (nativeElement != null) @@ -115,7 +115,7 @@ public static void SetBackButtonTitle(this PageControl Control, Element Element) static string ConcatenateNameAndHint(Element Element) { string separator; - + var name = (string)Element.GetValue(AutomationProperties.NameProperty); var hint = (string)Element.GetValue(AutomationProperties.HelpTextProperty); @@ -133,13 +133,13 @@ static string ConcatenateNameAndHint(Element Element) } public static void SetAutomationProperties( - this FrameworkElement frameworkElement, + this FrameworkElement frameworkElement, Element element, IMauiContext mauiContext, string defaultName = null) { frameworkElement.SetAutomationPropertiesAutomationId(element?.AutomationId); - frameworkElement.SetAutomationPropertiesName(element, defaultName); + frameworkElement.SetAutomationPropertiesName(element, defaultName); frameworkElement.SetAutomationPropertiesHelpText(element); frameworkElement.SetAutomationPropertiesLabeledBy(element, mauiContext); frameworkElement.SetAutomationPropertiesAccessibilityView(element); diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/AutoSuggestBoxExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/AutoSuggestBoxExtensions.cs index 11c379bdbef8..9cc7c863840c 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/AutoSuggestBoxExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/AutoSuggestBoxExtensions.cs @@ -16,7 +16,7 @@ public static void UpdateIsSpellCheckEnabled(this AutoSuggestBox platformControl queryTextBox.IsSpellCheckEnabled = searchBar.OnThisPlatform().GetIsSpellCheckEnabled(); } - + public static void UpdateText(this AutoSuggestBox platformControl, InputView inputView) { platformControl.Text = TextTransformUtilites.GetTransformedText(inputView.Text, inputView.TextTransform); diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/BrushExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/BrushExtensions.cs index a8f74a4d92be..d367a42701c7 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/BrushExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/BrushExtensions.cs @@ -14,7 +14,7 @@ public static WBrush ToBrush(this Brush brush) { if (brush == null) return null; - + if (brush is SolidColorBrush solidColorBrush) { if (solidColorBrush.Color == null) diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/FontExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/FontExtensions.cs index a0c59d1bcd4b..4c6035a95c57 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/FontExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/FontExtensions.cs @@ -23,7 +23,7 @@ public static FontFamily ToFontFamily(this string fontFamily, IFontManager fontM internal static void ApplyFont(this Control self, TFontElement element) where TFontElement : Element, IFontElement => self.UpdateFont(element.ToFont(), element.RequireFontManager()); - internal static void ApplyFont(this TextBlock self, TFontElement element) where TFontElement: Element, IFontElement + internal static void ApplyFont(this TextBlock self, TFontElement element) where TFontElement : Element, IFontElement => self.UpdateFont(element.ToFont(), element.RequireFontManager()); internal static void ApplyFont(this UI.Xaml.Documents.TextElement self, TFontElement element) where TFontElement : Element, IFontElement diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/FormattedStringExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/FormattedStringExtensions.cs index 477acd465038..a2cccd7c2524 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/FormattedStringExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/FormattedStringExtensions.cs @@ -25,7 +25,7 @@ public static void UpdateInlines( this TextBlock textBlock, IFontManager fontManager, FormattedString formattedString, - double defaultLineHeight = -1d, + double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6 TextAlignment defaultHorizontalAlignment = TextAlignment.Start, Font? defaultFont = null, Color? defaultColor = null, @@ -76,7 +76,7 @@ public static void UpdateInlines( public static IEnumerable> ToRunAndColorsTuples( this FormattedString formattedString, IFontManager fontManager, - double defaultLineHeight = -1d, + double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6 TextAlignment defaultHorizontalAlignment = TextAlignment.Start, Font? defaultFont = null, Color? defaultColor = null, diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/TextBoxExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/TextBoxExtensions.cs index e7facd60f3f2..50198ff1b2d7 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/TextBoxExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/TextBoxExtensions.cs @@ -9,10 +9,31 @@ internal static class TextBoxExtensions { public static void UpdateText(this TextBox platformControl, InputView inputView) { - if (platformControl is MauiPasswordTextBox passwordBox) - passwordBox.Password = TextTransformUtilites.GetTransformedText(inputView.Text, passwordBox.IsPassword ? TextTransform.None : inputView.TextTransform); - else - platformControl.Text = TextTransformUtilites.GetTransformedText(inputView.Text, inputView.TextTransform); + var hasFocus = platformControl.FocusState != UI.Xaml.FocusState.Unfocused; + var passwordBox = platformControl as MauiPasswordTextBox; + var isPassword = passwordBox?.IsPassword ?? false; + var textTransform = inputView?.TextTransform ?? TextTransform.None; + + // Setting the text causes the cursor to be reset to position zero. + // So, let's retain the current cursor position and calculate a new cursor + // position if the text was modified by a Converter. + var oldText = platformControl.Text ?? string.Empty; + var newText = TextTransformUtilites.GetTransformedText( + inputView?.Text, + isPassword ? TextTransform.None : textTransform + ); + + // Re-calculate the cursor offset position if the text was modified by a Converter. + // but if the text is being set by code, let's just move the cursor to the end. + var cursorOffset = newText.Length - oldText.Length; + int cursorPosition = hasFocus ? platformControl.GetCursorPosition(cursorOffset) : newText.Length; + + if (oldText != newText && passwordBox is not null) + passwordBox.Password = newText; + else if (oldText != newText) + platformControl.Text = newText; + + platformControl.Select(cursorPosition, 0); } } diff --git a/src/Controls/src/Core/Platform/Windows/Extensions/VisualElementExtensions.cs b/src/Controls/src/Core/Platform/Windows/Extensions/VisualElementExtensions.cs index 6c784e41aaae..71bf1cc04463 100644 --- a/src/Controls/src/Core/Platform/Windows/Extensions/VisualElementExtensions.cs +++ b/src/Controls/src/Core/Platform/Windows/Extensions/VisualElementExtensions.cs @@ -20,7 +20,7 @@ internal static void Cleanup(this Element self) foreach (Element element in self.Descendants()) { - if(element is Maui.IElement mauiElement) + if (element is Maui.IElement mauiElement) mauiElement.Handler?.DisconnectHandler(); } diff --git a/src/Controls/src/Core/Platform/Windows/FormsListView.cs b/src/Controls/src/Core/Platform/Windows/FormsListView.cs index 8ff6358bb517..a865e33b3c0e 100644 --- a/src/Controls/src/Core/Platform/Windows/FormsListView.cs +++ b/src/Controls/src/Core/Platform/Windows/FormsListView.cs @@ -39,13 +39,13 @@ static void EmptyViewVisibilityChanged(DependencyObject d, DependencyPropertyCha public WVisibility EmptyViewVisibility { - get - { - return (WVisibility)GetValue(EmptyViewVisibilityProperty); + get + { + return (WVisibility)GetValue(EmptyViewVisibilityProperty); } - set + set { - SetValue(EmptyViewVisibilityProperty, value); + SetValue(EmptyViewVisibilityProperty, value); } } diff --git a/src/Controls/src/Core/Platform/Windows/MauiCommandBar.cs b/src/Controls/src/Core/Platform/Windows/MauiCommandBar.cs index 2bd05764de7f..56b53b449859 100644 --- a/src/Controls/src/Core/Platform/Windows/MauiCommandBar.cs +++ b/src/Controls/src/Core/Platform/Windows/MauiCommandBar.cs @@ -67,7 +67,7 @@ void UpdateVisibility() Visibility = WVisibility.Collapsed; return; } - + // The title needs to be visible, but we're not allowed to show a toolbar // So we need to hide the toolbar items @@ -105,7 +105,7 @@ void UpdateVisibility() // There *is* an OverflowButtonVisibility property that does more or less the same thing, // but it became available in 10.0.14393.0 and we have to support 10.0.10240 } - + if (frameworkElement != null && frameworkElement.Visibility != WVisibility.Collapsed) { // If there's a title to display, we have to be visible whether or not we have commands diff --git a/src/Controls/src/Core/Platform/Windows/PageControl.cs b/src/Controls/src/Core/Platform/Windows/PageControl.cs index de90d10fc1d5..04158506573c 100644 --- a/src/Controls/src/Core/Platform/Windows/PageControl.cs +++ b/src/Controls/src/Core/Platform/Windows/PageControl.cs @@ -33,7 +33,7 @@ public sealed class PageControl : ContentControl, IToolbarProvider, ITitleViewRe CommandBar _commandBar; FrameworkElement _titleViewPresenter; - ToolbarPlacement _toolbarPlacement; + ToolbarPlacement _toolbarPlacement; bool _toolbarDynamicOverflowEnabled = true; readonly ToolbarPlacementHelper _toolbarPlacementHelper = new ToolbarPlacementHelper(); @@ -92,15 +92,15 @@ public WBrush ToolbarBackground set { SetValue(ToolbarBackgroundProperty, value); } } - public ToolbarPlacement ToolbarPlacement - { - get { return _toolbarPlacement; } - set - { - _toolbarPlacement = value; - _toolbarPlacementHelper.UpdateToolbarPlacement(); - } - } + public ToolbarPlacement ToolbarPlacement + { + get { return _toolbarPlacement; } + set + { + _toolbarPlacement = value; + _toolbarPlacementHelper.UpdateToolbarPlacement(); + } + } public bool ToolbarDynamicOverflowEnabled { @@ -165,14 +165,14 @@ protected override void OnApplyTemplate() UpdateToolbarDynamicOverflowEnabled(); TaskCompletionSource tcs = _commandBarTcs; - tcs?.SetResult(_commandBar); + tcs?.SetResult(_commandBar); } - static void OnTitleViewPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e) - { - ((PageControl)dependencyObject)._titleViewManager?.OnTitleViewPropertyChanged(); + static void OnTitleViewPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e) + { + ((PageControl)dependencyObject)._titleViewManager?.OnTitleViewPropertyChanged(); } - + void UpdateToolbarDynamicOverflowEnabled() { if (_commandBar != null) diff --git a/src/Controls/src/Core/Platform/Windows/ToolbarPlacementHelper.cs b/src/Controls/src/Core/Platform/Windows/ToolbarPlacementHelper.cs index 1b451d7382ac..9d5277e2d4c9 100644 --- a/src/Controls/src/Core/Platform/Windows/ToolbarPlacementHelper.cs +++ b/src/Controls/src/Core/Platform/Windows/ToolbarPlacementHelper.cs @@ -39,7 +39,7 @@ public void Initialize(CommandBar commandBar, Func getToolbarP public void UpdateToolbarPlacement() { if (_commandBar == null || _getToolbarPlacement == null || _bottomCommandBarArea == null || - _topCommandBarArea == null) + _topCommandBarArea == null) { // Template hasn't been applied yet, so we're not ready to update the toolbar placement return; diff --git a/src/Controls/src/Core/Platform/Windows/VisualElementTracker.cs b/src/Controls/src/Core/Platform/Windows/VisualElementTracker.cs index 522a03ea6954..d13c5dc20a43 100644 --- a/src/Controls/src/Core/Platform/Windows/VisualElementTracker.cs +++ b/src/Controls/src/Core/Platform/Windows/VisualElementTracker.cs @@ -152,7 +152,7 @@ void HandleDragOver(object sender, Microsoft.UI.Xaml.DragEventArgs e) SendEventArgs(rec => { - if(!rec.AllowDrop) + if (!rec.AllowDrop) { e.AcceptedOperation = global::Windows.ApplicationModel.DataTransfer.DataPackageOperation.None; return; @@ -212,7 +212,7 @@ void HandleDragStarting(UIElement sender, Microsoft.UI.Xaml.DragStartingEventArg { e.Data.SetBitmap(RandomAccessStreamReference.CreateFromUri(bi.UriSource)); } - else if(!String.IsNullOrWhiteSpace(args.Data.Text)) + else if (!String.IsNullOrWhiteSpace(args.Data.Text)) { Uri? uri; if (Uri.TryCreate(args.Data.Text, UriKind.Absolute, out uri)) @@ -254,7 +254,7 @@ public TElement? Element oldRecognizers.CollectionChanged -= _collectionChangedHandler; var gestures = (view as IGestureController)?.CompositeGestureRecognizers as ObservableCollection; - if(gestures != null) + if (gestures != null) gestures.CollectionChanged -= _collectionChangedHandler; } } @@ -818,7 +818,7 @@ void UpdateDragAndDropGestureRecognizers() _container.DropCompleted += HandleDropCompleted; } - if(_container.AllowDrop) + if (_container.AllowDrop) { _container.DragOver += HandleDragOver; _container.Drop += HandleDrop; diff --git a/src/Controls/src/Core/Platform/iOS/DragAndDropDelegate.cs b/src/Controls/src/Core/Platform/iOS/DragAndDropDelegate.cs index fd34a6b6dc98..e637f31d9293 100644 --- a/src/Controls/src/Core/Platform/iOS/DragAndDropDelegate.cs +++ b/src/Controls/src/Core/Platform/iOS/DragAndDropDelegate.cs @@ -21,7 +21,7 @@ public DragAndDropDelegate(IPlatformViewHandler viewHandler) _viewHandler = viewHandler; } - #region UIDragInteractionDelegate +#region UIDragInteractionDelegate [Export("dragInteraction:session:willEndWithOperation:")] [Preserve(Conditional = true)] public void SessionWillEnd(UIDragInteraction interaction, IUIDragSession session, UIDropOperation operation) @@ -39,7 +39,7 @@ public UIDragItem[] GetItemsForBeginningSession(UIDragInteraction interaction, I { return HandleDragStarting((View)_viewHandler.VirtualView, _viewHandler); } - #endregion +#endregion [Export("dropInteraction:canHandleSession:")] [Preserve(Conditional = true)] diff --git a/src/Controls/src/Core/Platform/iOS/Extensions/FormattedStringExtensions.cs b/src/Controls/src/Core/Platform/iOS/Extensions/FormattedStringExtensions.cs index 29232590f552..35db906cbcd2 100644 --- a/src/Controls/src/Core/Platform/iOS/Extensions/FormattedStringExtensions.cs +++ b/src/Controls/src/Core/Platform/iOS/Extensions/FormattedStringExtensions.cs @@ -29,7 +29,7 @@ public static class FormattedStringExtensions public static NSAttributedString ToNSAttributedString( this FormattedString formattedString, IFontManager fontManager, - double defaultLineHeight = -1d, + double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6 TextAlignment defaultHorizontalAlignment = TextAlignment.Start, Font? defaultFont = null, Color? defaultColor = null, @@ -54,7 +54,7 @@ public static NSAttributedString ToNSAttributedString( public static NSAttributedString ToNSAttributedString( this Span span, IFontManager fontManager, - double defaultLineHeight = -1d, + double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6 TextAlignment defaultHorizontalAlignment = TextAlignment.Start, Font? defaultFont = null, Color? defaultColor = null, diff --git a/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs b/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs index 3b52425ca1ca..4ffce5bcf751 100644 --- a/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs +++ b/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Text; using Microsoft.Maui.Controls.Internals; +using Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific; using Microsoft.Maui.Platform; using UIKit; -using Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific; using Specifics = Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry; namespace Microsoft.Maui.Controls.Platform @@ -26,15 +26,49 @@ public static void UpdateAdjustsFontSizeToFitWidth(this UITextField textField, E { textField.AdjustsFontSizeToFitWidth = entry.OnThisPlatform().AdjustsFontSizeToFitWidth(); } - + public static void UpdateText(this UITextView textView, InputView inputView) { - textView.Text = TextTransformUtilites.GetTransformedText(inputView.Text, inputView.TextTransform); + // Setting the text causes the cursor to be reset to the end of the UITextView. + // So, let's set back the cursor to the last known position and calculate a new + // position if needed when the text was modified by a Converter. + var oldText = textView.Text ?? string.Empty; + var newText = TextTransformUtilites.GetTransformedText( + inputView?.Text, + textView.SecureTextEntry ? TextTransform.Default : inputView.TextTransform + ); + + // Re-calculate the cursor offset position if the text was modified by a Converter. + // but if the text is being set by code, let's just move the cursor to the end. + var cursorOffset = newText.Length - oldText.Length; + var cursorPosition = textView.IsFirstResponder ? textView.GetCursorPosition(cursorOffset) : newText.Length; + + if (oldText != newText) + textView.Text = newText; + + textView.SetTextRange(cursorPosition, 0); } public static void UpdateText(this UITextField textField, InputView inputView) { - textField.Text = TextTransformUtilites.GetTransformedText(inputView.Text, inputView.TextTransform); + // Setting the text causes the cursor to be reset to the end of the UITextView. + // So, let's set back the cursor to the last known position and calculate a new + // position if needed when the text was modified by a Converter. + var oldText = textField.Text ?? string.Empty; + var newText = TextTransformUtilites.GetTransformedText( + inputView?.Text, + textField.SecureTextEntry ? TextTransform.Default : inputView.TextTransform + ); + + // Re-calculate the cursor offset position if the text was modified by a Converter. + // but if the text is being set by code, let's just move the cursor to the end. + var cursorOffset = newText.Length - oldText.Length; + var cursorPosition = textField.IsEditing ? textField.GetCursorPosition(cursorOffset) : newText.Length; + + if (oldText != newText) + textField.Text = newText; + + textField.SetTextRange(cursorPosition, 0); } public static void UpdateLineBreakMode(this UILabel platformLabel, Label label) diff --git a/src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..f48ee2c9eca0 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Shipped.txt @@ -0,0 +1,7833 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +const Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.DefaultMinHeight = 44 -> double +const Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.DefaultMinHeight = 55 -> double +const Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.MoreTabId = 99 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Platform.Android.CanvasExtensions +Microsoft.Maui.Controls.Compatibility.Platform.Android.GeometryExtensions +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView +Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetImageVisible(bool visible) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetIsEnabled(bool isEnable) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetRenderHeight(double height) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter +Microsoft.Maui.Controls.Handlers.Compatibility.CellFactory +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.SetRenderHeight(double height) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Control.get -> AndroidX.CardView.Widget.CardView! +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Element.get -> Microsoft.Maui.Controls.Frame? +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Element.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.ElementChanged -> System.EventHandler? +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.ElementPropertyChanged -> System.EventHandler? +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.FrameRenderer(Android.Content.Context! context) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.ImageCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ShellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.SwitchCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.TextCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer(Android.Content.Context! context) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.Control.get -> TPlatformView? +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SetNativeControl(TPlatformView! control) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer(Android.Content.Context! context) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.get -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.Element.get -> TElement? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementChanged -> System.EventHandler!>? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementPropertyChanged -> System.EventHandler? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetElement(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateLayout() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRenderer(Android.Content.Context! context) -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.IGroupableItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IGroupableItemsViewSource.GetGroupAndIndex(int position) -> (int group, int index) +Microsoft.Maui.Controls.Handlers.Items.IGroupableItemsViewSource.IsGroupFooter(int position) -> bool +Microsoft.Maui.Controls.Handlers.Items.IGroupableItemsViewSource.IsGroupHeader(int position) -> bool +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.Count.get -> int +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.HasFooter.get -> bool +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.HasFooter.set -> void +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.HasHeader.get -> bool +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.HasHeader.set -> void +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.IsFooter(int position) -> bool +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.IsHeader(int position) -> bool +Microsoft.Maui.Controls.Handlers.Items.IItemTouchHelperAdapter +Microsoft.Maui.Controls.Handlers.Items.IItemTouchHelperAdapter.OnItemMove(int fromPosition, int toPosition) -> bool +Microsoft.Maui.Controls.Handlers.Items.IMauiCarouselRecyclerView +Microsoft.Maui.Controls.Handlers.Items.IMauiCarouselRecyclerView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.Handlers.Items.IMauiCarouselRecyclerView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiCarouselRecyclerView.UpdateFromCurrentItem() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiCarouselRecyclerView.UpdateFromPosition() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateAdapter() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateCanReorderItems() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateEmptyView() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateFlowDirection() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateHorizontalScrollBarVisibility() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateItemsSource() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateItemTemplate() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateLayoutManager() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateScrollingMode() -> void +Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.UpdateVerticalScrollBarVisibility() -> void +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource.ObserveChanges.get -> bool +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource.ObserveChanges.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemContentView +Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.ItemsSource -> TItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateItemTemplate() -> void +Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateScrollingMode() -> void +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter.OnItemMove(int fromPosition, int toPosition) -> bool +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder +Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.IsSelected.get -> bool +Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.IsSelected.set -> void +Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback +Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback.SimpleItemTouchHelperCallback() -> void +Microsoft.Maui.Controls.Handlers.Items.SnapManager +Microsoft.Maui.Controls.Handlers.Items.SnapManager.Dispose() -> void +Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration +Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration.HorizontalOffset.get -> int +Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration.VerticalOffset.get -> int +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.Android.ImeActionExtensions +Microsoft.Maui.Controls.Platform.ApplicationExtensions +Microsoft.Maui.Controls.Platform.BottomNavigationViewUtils +Microsoft.Maui.Controls.Platform.BrushExtensions +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.MatchHeight.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.MatchHeight.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.MatchWidth.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.MatchWidth.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout +Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout.CustomFrameLayout(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Controls.Platform.Compatibility.IShellBottomNavViewAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.Destroyed -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment +Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment.AnimationFinished -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView.LoadView() -> void +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView.SearchConfirmed -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellTabLayoutAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.CanNavigateBack.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.CanNavigateBack.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment +Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.AnimationFinished -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem.DrawTopLine.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem.DrawTopLine.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem.Index.get -> int +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.SlideOffset.get -> float +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.HeaderContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.Destroyed -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.SearchConfirmed -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.AnimationFinished -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.CanNavigateBack.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.CanNavigateBack.set -> void +Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate +Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate.ControlsAccessibilityDelegate(AndroidX.Core.View.AccessibilityDelegateCompat? originalDelegate, Microsoft.Maui.IViewHandler! viewHandler) -> void +Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate.Handler.get -> Microsoft.Maui.IViewHandler! +Microsoft.Maui.Controls.Platform.EditTextExtensions +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElevationHelper +Microsoft.Maui.Controls.Platform.FontExtensions +Microsoft.Maui.Controls.Platform.FormattedStringExtensions +Microsoft.Maui.Controls.Platform.GenericAnimatorListener +Microsoft.Maui.Controls.Platform.GenericAnimatorListener.GenericAnimatorListener() -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientShader +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientShader.GradientShader() -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientStrokeDrawable() -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.LinearGradientShader() -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.X1.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.X1.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.X2.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.X2.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.Y1.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.Y1.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.Y2.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.Y2.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.CenterX.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.CenterX.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.CenterY.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.CenterY.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.RadialGradientShader() -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.Radius.get -> float +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.Radius.set -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.SetColor(Android.Graphics.Color backgroundColor) -> void +Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.SetStroke(int strokeWidth, Android.Graphics.Color strokeColor) -> void +Microsoft.Maui.Controls.Platform.ITabStop +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.RecyclerViewExtensions +Microsoft.Maui.Controls.Platform.SearchViewExtensions +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.TextViewExtensions +Microsoft.Maui.Controls.Platform.ViewExtensions +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.Platform.WebViewExtensions +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.Resource +Microsoft.Maui.Controls.Resource.Animation +Microsoft.Maui.Controls.Resource.Animation.Animation() -> void +Microsoft.Maui.Controls.Resource.Attribute +Microsoft.Maui.Controls.Resource.Attribute.Attribute() -> void +Microsoft.Maui.Controls.Resource.Dimension +Microsoft.Maui.Controls.Resource.Dimension.Dimension() -> void +Microsoft.Maui.Controls.Resource.Drawable +Microsoft.Maui.Controls.Resource.Drawable.Drawable() -> void +Microsoft.Maui.Controls.Resource.Id +Microsoft.Maui.Controls.Resource.Id.Id() -> void +Microsoft.Maui.Controls.Resource.Layout +Microsoft.Maui.Controls.Resource.Layout.Layout() -> void +Microsoft.Maui.Controls.Resource.Resource() -> void +Microsoft.Maui.Controls.Resource.String +Microsoft.Maui.Controls.Resource.String.String() -> void +Microsoft.Maui.Controls.Resource.Style +Microsoft.Maui.Controls.Resource.Style.Style() -> void +Microsoft.Maui.Controls.Resource.Styleable +Microsoft.Maui.Controls.Resource.Styleable.Styleable() -> void +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Draw(Android.Graphics.Canvas? canvas) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnSizeChanged(int w, int h, int oldw, int oldh) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnAttachedToWindow() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnDetachedFromWindow() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.AreAllItemsEnabled() -> bool +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.Count.get -> int +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetItemId(int position) -> long +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.IsEnabled(int position) -> bool +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.ViewTypeCount.get -> int +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnAttachedToWindow() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter.ItemCount.get -> int +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.GetItemViewType(int position) -> int +override Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.ItemCount.get -> int +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter.CreateItemsSource() -> TItemsViewSource +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter.GetItemViewType(int position) -> int +override Microsoft.Maui.Controls.Handlers.Items.ItemContentView.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemContentView.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.GetItemViewType(int position) -> int +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.ItemCount.get -> int +override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.UpdateAdapter() -> void +override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.UpdateItemSpacing() -> void +override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback.IsLongPressDragEnabled.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.GetItemViewType(int position) -> int +override Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder.OnSelectedChanged() -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder.UseDefaultSelectionColor.get -> bool +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.OnDestroy() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.OnResume() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.GetItemViewType(int position) -> int +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ItemCount.get -> int +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.HeaderContainer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.HeaderContainer.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnDestroy() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellSectionChanged() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnDestroy() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnAttachedToWindow() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnLayout(bool changed, int left, int top, int right, int bottom) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.Count.get -> int +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.GetItemId(int position) -> long +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnDestroy() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.ControlsAccessibilityDelegate.OnInitializeAccessibilityNodeInfo(Android.Views.View? host, AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat? info) -> void +override Microsoft.Maui.Controls.Platform.GenericAnimatorListener.JavaFinalize() -> void +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler! handler, Microsoft.Maui.Controls.Element! element) -> void +static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler! handler, Microsoft.Maui.Controls.Element! element) -> void +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationId(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackground(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackgroundColor(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapIsEnabled(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Platform.Android.ImeActionExtensions.ToPlatform(this Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags flags) -> Android.Views.InputMethods.ImeAction +static Microsoft.Maui.Controls.Platform.FontExtensions.ToTypeface(this Microsoft.Maui.Controls.Internals.IFontElement! self, Microsoft.Maui.IFontManager! fontManager) -> Android.Graphics.Typeface! +static Microsoft.Maui.Controls.Platform.FontExtensions.ToTypeface(this Microsoft.Maui.Font self, Microsoft.Maui.IFontManager! fontManager) -> Android.Graphics.Typeface! +static Microsoft.Maui.Controls.Platform.FontExtensions.ToTypeface(this TFontElement! self) -> Android.Graphics.Typeface! +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.RecalculateSpanPositions(this Android.Widget.TextView! textView, Microsoft.Maui.Controls.Label! element, Android.Text.SpannableString! spannableString, Microsoft.Maui.SizeRequest finalSize) -> void +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToSpannableString(this Microsoft.Maui.Controls.FormattedString! formattedString, Microsoft.Maui.IFontManager! fontManager, Android.Text.TextPaint? textPaint = null, Android.Content.Context? context = null, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> Android.Text.SpannableString! +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToSpannableString(this Microsoft.Maui.Controls.Label! label) -> Android.Text.SpannableString! +static Microsoft.Maui.Controls.Platform.SemanticExtensions.UpdateSemanticNodeInfo(this Microsoft.Maui.Controls.View! virtualView, AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat? info) -> void +static Microsoft.Maui.Controls.RadioButton.MapContent(Microsoft.Maui.Handlers.RadioButtonHandler! handler, Microsoft.Maui.Controls.RadioButton! radioButton) -> void +static Microsoft.Maui.Controls.Resource.Animation.enterfromleft -> int +static Microsoft.Maui.Controls.Resource.Animation.enterfromright -> int +static Microsoft.Maui.Controls.Resource.Animation.exittoleft -> int +static Microsoft.Maui.Controls.Resource.Animation.exittoright -> int +static Microsoft.Maui.Controls.Resource.Attribute.actionBarSize -> int +static Microsoft.Maui.Controls.Resource.Attribute.appBarLayoutStyle -> int +static Microsoft.Maui.Controls.Resource.Attribute.bottomNavigationViewStyle -> int +static Microsoft.Maui.Controls.Resource.Attribute.toolbarStyle -> int +static Microsoft.Maui.Controls.Resource.Dimension.design_bottom_navigation_height -> int +static Microsoft.Maui.Controls.Resource.Drawable.abc_ic_clear_material -> int +static Microsoft.Maui.Controls.Resource.Drawable.abc_ic_menu_overflow_material -> int +static Microsoft.Maui.Controls.Resource.Drawable.abc_ic_search_api_material -> int +static Microsoft.Maui.Controls.Resource.Id.bottomtab_navarea -> int +static Microsoft.Maui.Controls.Resource.Id.bottomtab_tabbar -> int +static Microsoft.Maui.Controls.Resource.Id.flyoutcontent_appbar -> int +static Microsoft.Maui.Controls.Resource.Id.navigationlayout_bottomtabs -> int +static Microsoft.Maui.Controls.Resource.Id.navigationlayout_content -> int +static Microsoft.Maui.Controls.Resource.Id.navigationlayout_toptabs -> int +static Microsoft.Maui.Controls.Resource.Id.shellcontent_appbar -> int +static Microsoft.Maui.Controls.Resource.Id.shellcontent_toolbar -> int +static Microsoft.Maui.Controls.Resource.Layout.flyoutcontent -> int +static Microsoft.Maui.Controls.Resource.Layout.fragment_backstack -> int +static Microsoft.Maui.Controls.Resource.Layout.shellcontent -> int +static Microsoft.Maui.Controls.Resource.String.nav_app_bar_navigate_up_description -> int +static Microsoft.Maui.Controls.Resource.String.nav_app_bar_open_drawer_description -> int +static Microsoft.Maui.Controls.Resource.String.overflow_tab_title -> int +static Microsoft.Maui.Controls.Resource.Style.ThemeOverlay_AppCompat_Light -> int +static Microsoft.Maui.Controls.Resource.Styleable.Toolbar_titleTextColor -> int +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.TabbedPage.MapIsSwipePagingEnabled(Microsoft.Maui.Handlers.ITabbedViewHandler! handler, Microsoft.Maui.Controls.TabbedPage! view) -> void +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Toolbar.MapBackButtonTitle(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBackButtonVisible(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBarBackground(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBarTextColor(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapIconColor(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapIsVisible(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapTitle(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapTitleIcon(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapTitleView(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapToolbarItems(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Window.MapContent(Microsoft.Maui.Handlers.WindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementPropertyChanged(object? sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.CreateNativeControl() -> TPlatformView! +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.DisconnectHandler(TPlatformView! oldPlatformView) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementPropertyChanged(object! sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationId(string! id) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetImportantForAccessibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetIsEnabled() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateBackground() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateBackgroundColor() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.CreateItemsSource() -> TItemsViewSource +virtual Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.IsHorizontal.get -> bool +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.ReconcileFlowDirectionAndLayout() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateAdapter() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateCanReorderItems() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateEmptyView() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateFlowDirection() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateHorizontalScrollBarVisibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateItemSpacing() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateItemsSource() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateItemsUpdatingScrollMode() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateLayoutManager() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateSnapBehavior() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateVerticalScrollBarVisibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.OnSelectedChanged() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.OnViewHolderClicked(int adapterPosition) -> void +virtual Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.UseDefaultSelectionColor.get -> bool +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.ResetAppearance() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.UpdateDrawerLockMode(Microsoft.Maui.FlyoutBehavior behavior) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.UpdateFlyoutBackground() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.UpdateFlyoutContent() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.UpdateFlyoutFooter() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.UpdateFlyoutHeader() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.UpdateFlyoutHeaderBehavior() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ResetAppearance() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.UpdateTabBarVisibility() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnShellSectionChanged() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPageSelected(int position) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ResetAppearance() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.SetViewPager2UserInputEnabled(bool value) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnNavigateBack() -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.GetCellForPosition(int position) -> Microsoft.Maui.Controls.Cell +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.GetItemsLayout() -> Microsoft.Maui.Controls.IItemsLayout +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.GetNavigationTarget() -> Android.Views.ViewGroup +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.DoNotUpdateMarker = "__DO_NOT_UPDATE__" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.AccessoryView.get -> Android.Views.View +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.BaseCellView(Android.Content.Context context, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.DetailText.get -> string +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.DetailText.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.MainText.get -> string +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.MainText.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetAccessoryView(Android.Views.View view) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetDefaultMainTextColor(Microsoft.Maui.Graphics.Color defaultColor) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetDetailTextColor(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetImageSource(Microsoft.Maui.Controls.ImageSource source) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.BaseCellView.SetMainTextColor(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.CellAdapter(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.OnActionItemClicked(Android.Views.ActionMode mode, Android.Views.IMenuItem item) -> bool +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.OnCreateActionMode(Android.Views.ActionMode mode, Android.Views.IMenu menu) -> bool +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.OnDestroyActionMode(Android.Views.ActionMode mode) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.OnItemClick(Android.Widget.AdapterView parent, Android.Views.View view, int position, long id) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.OnItemLongClick(Android.Widget.AdapterView parent, Android.Views.View view, int position, long id) -> bool +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.OnPrepareActionMode(Android.Views.ActionMode mode, Android.Views.IMenu menu) -> bool +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.SetSelectedBackground(Android.Views.View view, bool isContextTarget = false) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.UnsetSelectedBackground(Android.Views.View view) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.Cell.get -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.Cell.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.ParentView.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.ParentView.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.WireUpForceUpdateSizeRequested(Microsoft.Maui.Controls.Cell cell, Android.Views.View platformCell) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText.EntryCellEditText(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.EditingCompleted.get -> System.Action +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.EditingCompleted.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.EditText.get -> Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.EntryCellView(Android.Content.Context context, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.FocusChanged.get -> System.Action +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.FocusChanged.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.LabelText.get -> string +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.LabelText.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.SetLabelTextColor(Microsoft.Maui.Graphics.Color color, int defaultColorResourceId) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.TextChanged.get -> System.Action +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellView.TextChanged.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ListViewRenderer(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.AndroidContext.get -> Android.Content.Context +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Element.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ShellRenderer(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView.Cell.get -> Microsoft.Maui.Controls.SwitchCell +~Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView.Cell.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView.OnCheckedChanged(Android.Widget.CompoundButton buttonView, bool isChecked) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellView.SwitchCellView(Android.Content.Context context, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.TableViewModelRenderer(Android.Content.Context context, Android.Widget.ListView listView, Microsoft.Maui.Controls.TableView view) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.TableViewRenderer(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.BindTemplatedItemViewHolder(Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder templatedItemViewHolder, object context) -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.CreateEmptyViewHolder(object content, Microsoft.Maui.Controls.DataTemplate template, Android.Views.ViewGroup parent) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.CreateHeaderFooterViewHolder(object content, Microsoft.Maui.Controls.DataTemplate template, Android.Content.Context context) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.EmptyView.get -> object +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.EmptyView.set -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.EmptyViewAdapter(Microsoft.Maui.Controls.ItemsView itemsView) -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.Footer.get -> object +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.Footer.set -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.FooterTemplate.set -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.Header.get -> object +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.Header.set -> void +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter.GroupableItemsViewAdapter(TItemsView groupableItemsView, System.Func createView = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.IGroupableItemsViewSource.GetGroup(int groupIndex) -> object +~Microsoft.Maui.Controls.Handlers.Items.IGroupableItemsViewSource.GetGroupItemsViewSource(int groupIndex) -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GetItem(int position) -> object +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GetPosition(object item) -> int +~Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView +~Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.ScrollTo(Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.SetUpNewElement(TItemsView newElement) -> void +~Microsoft.Maui.Controls.Handlers.Items.IMauiRecyclerView.TearDownOldElement(TItemsView oldElement) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemContentView.Content -> Microsoft.Maui.IPlatformViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemContentView.ItemContentView(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.ItemsViewAdapter(TItemsView itemsView, System.Func createItemContentView = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper, Microsoft.Maui.CommandMapper commandMapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.Carousel.get -> Microsoft.Maui.Controls.CarouselView +~Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.MauiCarouselRecyclerView(Android.Content.Context context, System.Func getItemsLayout, System.Func> getAdapter) -> void +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.CreateAdapter -> System.Func +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.ItemsView -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.ItemsViewAdapter -> TAdapter +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.MauiRecyclerView(Android.Content.Context context, System.Func getItemsLayout, System.Func getAdapter) -> void +~Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.RecyclerViewScrollListener -> AndroidX.RecyclerView.Widget.RecyclerView.OnScrollListener +~Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener +~Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener.ItemsViewAdapter -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener.RecyclerViewScrollListener(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter itemsViewAdapter) -> void +~Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener.RecyclerViewScrollListener(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter itemsViewAdapter, bool getCenteredItemOnXAndY) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter.ReorderableItemsViewAdapter(TItemsView reorderableItemsView, System.Func createView = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter.SelectableItemsViewAdapter(TItemsView selectableItemsView, System.Func createView = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.OnClick(Android.Views.View view) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableViewHolder.SelectableViewHolder(Android.Views.View itemView, bool isSelectionEnabled = true) -> void +~Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback.SetAdapter(Microsoft.Maui.Controls.Handlers.Items.IItemTouchHelperAdapter adapter) -> void +~Microsoft.Maui.Controls.Handlers.Items.SnapManager.SnapManager(AndroidX.RecyclerView.Widget.RecyclerView recyclerView) -> void +~Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration.SpacingItemDecoration(Android.Content.Context context, Microsoft.Maui.Controls.IItemsLayout itemsLayout) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.CreateHeaderFooterViewHolder(object content, Microsoft.Maui.Controls.DataTemplate template, Android.Content.Context context) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.StructuredItemsViewAdapter(TItemsView itemsView, System.Func createItemContentView = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder.Bind(object itemBindingContext, Microsoft.Maui.Controls.ItemsView itemsView, System.Action reportMeasure = null, Microsoft.Maui.Graphics.Size? size = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder.Recycle(Microsoft.Maui.Controls.ItemsView itemsView) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder.TemplatedItemViewHolder(Microsoft.Maui.Controls.Handlers.Items.ItemContentView itemContentView, Microsoft.Maui.Controls.DataTemplate template, bool isSelectionEnabled = true) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable.ColorChangeRevealDrawable(Android.Graphics.Color startColor, Android.Graphics.Color endColor, Android.Graphics.Point center) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.ContainerView(Android.Content.Context context, Microsoft.Maui.Controls.View view, Microsoft.Maui.IMauiContext mauiContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.View.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout.CustomFrameLayout(Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout.CustomFrameLayout(Android.Content.Context context, Android.Util.IAttributeSet attrs) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout.CustomFrameLayout(Android.Content.Context context, Android.Util.IAttributeSet attrs, int defStyleAttr) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout.CustomFrameLayout(Android.Content.Context context, Android.Util.IAttributeSet attrs, int defStyleAttr, int defStyleRes) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellBottomNavViewAppearanceTracker.ResetAppearance(Google.Android.Material.BottomNavigation.BottomNavigationView bottomView) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellBottomNavViewAppearanceTracker.SetAppearance(Google.Android.Material.BottomNavigation.BottomNavigationView bottomView, Microsoft.Maui.Controls.IShellAppearanceElement appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.AndroidContext.get -> Android.Content.Context +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateBottomNavViewAppearanceTracker(Microsoft.Maui.Controls.ShellItem shellItem) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellBottomNavViewAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateFragmentForPage(Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellFlyoutContentRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellItemRenderer(Microsoft.Maui.Controls.ShellItem shellItem) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellSectionRenderer(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateTabLayoutAppearanceTracker(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellTabLayoutAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateToolbarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateTrackerForToolbar(AndroidX.AppCompat.Widget.Toolbar toolbar) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CurrentDrawerLayout.get -> AndroidX.DrawerLayout.Widget.DrawerLayout +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.Shell.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.AndroidView.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.AndroidView.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.AttachFlyout(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, Android.Views.View content) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.Fragment.get -> AndroidX.Fragment.App.Fragment +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ShellItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ShellItem.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment.Fragment.get -> AndroidX.Fragment.App.Fragment +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView.SearchHandler.get -> Microsoft.Maui.Controls.SearchHandler +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView.SearchHandler.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView.View.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabLayoutAppearanceTracker.ResetAppearance(Google.Android.Material.Tabs.TabLayout tabLayout) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabLayoutAppearanceTracker.SetAppearance(Google.Android.Material.Tabs.TabLayout tabLayout, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarAppearanceTracker.ResetAppearance(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker toolbarTracker) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarAppearanceTracker.SetAppearance(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker toolbarTracker, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.Page.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.SetToolbar(Microsoft.Maui.IToolbar toolbar) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.TintColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker.TintColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.SearchHandlerAppearanceTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView searchView, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker.ShellBottomNavViewAppearanceTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext, Microsoft.Maui.Controls.ShellItem shellItem) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.Fragment.get -> AndroidX.Fragment.App.Fragment +~Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.ShellContentFragment(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext, Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.ShellContentFragment(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext, Microsoft.Maui.Controls.ShellContent shellContent) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem.AdapterListItem(Microsoft.Maui.Controls.Element element, bool drawTopLine = false) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.AdapterListItem.Element.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder.Bar.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder.Element.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder.ElementViewHolder(Microsoft.Maui.Controls.View view, Android.Views.View itemView, Android.Views.View bar, System.Action selectedCallback, Microsoft.Maui.Controls.Shell shell) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ElementViewHolder.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.Shell.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.ShellFlyoutRecyclerAdapter(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext, System.Action selectedCallback) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ShellFlyoutRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext, Android.Content.Context context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.AndroidView.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.FooterView.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.HeaderContainer.HeaderContainer(Android.Content.Context context, Microsoft.Maui.Controls.View view, Microsoft.Maui.IMauiContext mauiContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.MauiContext.get -> Microsoft.Maui.IMauiContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.OnElementSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.OnOffsetChanged(Google.Android.Material.AppBar.AppBarLayout appBarLayout, int verticalOffset) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.ShellContext.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.ShellFlyoutTemplatedContentRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.View.get -> Android.Views.View +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItemController.get -> Microsoft.Maui.Controls.IShellItemController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItemRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.DisplayedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.DisplayedPage.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.ShellContext.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.ShellItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.ShellItemRendererBase(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.SearchHandler.get -> Microsoft.Maui.Controls.SearchHandler +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.SearchHandler.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.ShellSearchView(Android.Content.Context context, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.Filter.get -> Android.Widget.Filter +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.MauiContext.get -> Microsoft.Maui.IMauiContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.ShellSearchViewAdapter(Microsoft.Maui.Controls.SearchHandler searchHandler, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellContext.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSectionRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker.ShellTabLayoutAppearanceTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker.ShellToolbarAppearanceTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.MauiContext.get -> Microsoft.Maui.IMauiContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.Page.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.SearchHandler.get -> Microsoft.Maui.Controls.SearchHandler +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.SearchHandler.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.ShellContext.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.ShellToolbarTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext, AndroidX.AppCompat.Widget.Toolbar toolbar, AndroidX.DrawerLayout.Widget.DrawerLayout drawerLayout) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.TintColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.TintColor.set -> void +~Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnCancel.get -> System.Action +~Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnCancel.set -> void +~Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnEnd.get -> System.Action +~Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnEnd.set -> void +~Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnRepeat.get -> System.Action +~Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnRepeat.set -> void +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientShader.Colors.get -> int[] +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientShader.Colors.set -> void +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientShader.Offsets.get -> float[] +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.GradientShader.Offsets.set -> void +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.LinearGradientShader.LinearGradientShader(int[] colors, float[] offsets, float x1, float y1, float x2, float y2) -> void +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.RadialGradientShader.RadialGradientShader(int[] colors, float[] offsets, float centerX, float centerY, float radius) -> void +~Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.SetGradient(Microsoft.Maui.Controls.Brush brush) -> void +~Microsoft.Maui.Controls.Platform.ITabStop.TabStop.get -> Android.Views.View +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CreatePlatformElement() -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellEditText.OnKeyPreIme(Android.Views.Keycode keyCode, Android.Views.KeyEvent e) -> bool +~override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.GetCellCore(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.OnCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.GetCellCore(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.OnCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.CreateNativeControl() -> Android.Widget.ListView +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.GetCellCore(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.OnCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetCellForPosition(int position) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetView(int position, Android.Views.View convertView, Android.Views.ViewGroup parent) -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.HandleItemClick(Android.Widget.AdapterView parent, Android.Views.View nview, int position, long id) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.this[int position].get -> object +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.CreateNativeControl() -> Android.Widget.ListView +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.GetCellCore(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.OnCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.GetCellCore(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreateAdapter() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreatePlatformView() -> AndroidX.RecyclerView.Widget.RecyclerView +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.GetItemsLayout() -> Microsoft.Maui.Controls.IItemsLayout +~override Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.OnCreateViewHolder(Android.Views.ViewGroup parent, int viewType) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~override Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.OnViewRecycled(Java.Lang.Object holder) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter.OnCreateViewHolder(Android.Views.ViewGroup parent, int viewType) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreatePlatformView() -> AndroidX.RecyclerView.Widget.RecyclerView +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.OnCreateViewHolder(Android.Views.ViewGroup parent, int viewType) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.OnViewRecycled(Java.Lang.Object holder) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ConnectHandler(AndroidX.RecyclerView.Widget.RecyclerView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> AndroidX.RecyclerView.Widget.RecyclerView +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.CreateScrollListener() -> Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.CreateSpacingDecoration(Microsoft.Maui.Controls.IItemsLayout itemsLayout) -> AndroidX.RecyclerView.Widget.RecyclerView.ItemDecoration +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.DetermineTargetPosition(Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> int +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.OnInterceptTouchEvent(Android.Views.MotionEvent ev) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.OnTouchEvent(Android.Views.MotionEvent e) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.ScrollTo(Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.SetUpNewElement(Microsoft.Maui.Controls.CarouselView newElement) -> void +~override Microsoft.Maui.Controls.Handlers.Items.MauiCarouselRecyclerView.TearDownOldElement(Microsoft.Maui.Controls.CarouselView oldElement) -> void +~override Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener.OnScrolled(AndroidX.RecyclerView.Widget.RecyclerView recyclerView, int dx, int dy) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.CreateAdapter() -> Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewAdapter +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter.OnViewRecycled(Java.Lang.Object holder) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.CreateAdapter() -> Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewAdapter +~override Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback.GetMovementFlags(AndroidX.RecyclerView.Widget.RecyclerView recyclerView, AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder viewHolder) -> int +~override Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback.OnMove(AndroidX.RecyclerView.Widget.RecyclerView recyclerView, AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder viewHolder, AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder target) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.SimpleItemTouchHelperCallback.OnSwiped(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder viewHolder, int direction) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SpacingItemDecoration.GetItemOffsets(Android.Graphics.Rect outRect, Android.Views.View view, AndroidX.RecyclerView.Widget.RecyclerView parent, AndroidX.RecyclerView.Widget.RecyclerView.State state) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.BindTemplatedItemViewHolder(Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder templatedItemViewHolder, object context) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.ItemsViewPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs property) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter.OnCreateViewHolder(Android.Views.ViewGroup parent, int viewType) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.CreateAdapter() -> Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewAdapter +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.GetItemsLayout() -> Microsoft.Maui.Controls.IItemsLayout +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Platform.ColorChangeRevealDrawable.Draw(Android.Graphics.Canvas canvas) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.CustomFrameLayout.OnApplyWindowInsets(Android.Views.WindowInsets insets) -> Android.Views.WindowInsets +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.OnCreateAnimation(int transit, bool enter, int nextAnim) -> Android.Views.Animations.Animation +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.OnCreateView(Android.Views.LayoutInflater inflater, Android.Views.ViewGroup container, Android.OS.Bundle savedInstanceState) -> Android.Views.View +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.OnBindViewHolder(AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder holder, int position) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.OnCreateViewHolder(Android.Views.ViewGroup parent, int viewType) -> AndroidX.RecyclerView.Widget.RecyclerView.ViewHolder +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.OnViewRecycled(Java.Lang.Object holder) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.DrawChild(Android.Graphics.Canvas canvas, Android.Views.View child, long drawingTime) -> bool +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.OnInterceptTouchEvent(Android.Views.MotionEvent ev) -> bool +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.GetNavigationTarget() -> Android.Views.ViewGroup +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnCreateView(Android.Views.LayoutInflater inflater, Android.Views.ViewGroup container, Android.OS.Bundle savedInstanceState) -> Android.Views.View +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnDisplayedPageChanged(Microsoft.Maui.Controls.Page newPage, Microsoft.Maui.Controls.Page oldPage) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellItemsChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.GetItem(int position) -> Java.Lang.Object +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.GetView(int position, Android.Views.View convertView, Android.Views.ViewGroup parent) -> Android.Views.View +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnCreateView(Android.Views.LayoutInflater inflater, Android.Views.ViewGroup container, Android.OS.Bundle savedInstanceState) -> Android.Views.View +~override Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnAnimationCancel(Android.Animation.Animator animation) -> void +~override Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnAnimationEnd(Android.Animation.Animator animation) -> void +~override Microsoft.Maui.Controls.Platform.GenericAnimatorListener.OnAnimationRepeat(Android.Animation.Animator animation) -> void +~override Microsoft.Maui.Controls.Platform.GradientStrokeDrawable.OnDraw(Android.Graphics.Drawables.Shapes.Shape shape, Android.Graphics.Canvas canvas, Android.Graphics.Paint paint) -> void +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~readonly Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.Context -> Android.Content.Context +~readonly Microsoft.Maui.Controls.Handlers.Items.EmptyViewAdapter.ItemsView -> Microsoft.Maui.Controls.ItemsView +~readonly Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.ItemsView -> TItemsView +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Application.MapWindowSoftInputModeAdjust(Microsoft.Maui.Handlers.ApplicationHandler handler, Microsoft.Maui.Controls.Application application) -> void +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.IButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.Android.CanvasExtensions.ClipShape(this Android.Graphics.Canvas canvas, Android.Content.Context context, Microsoft.Maui.Controls.VisualElement element) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.Android.GeometryExtensions.ToAPath(this Microsoft.Maui.Controls.Shapes.Geometry geometry, Android.Content.Context context) -> Android.Graphics.Path +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapImeOptions(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Compatibility.CellFactory.GetCell(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context, Microsoft.Maui.Controls.View view) -> Android.Views.View +~static Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.DefaultBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Platform.ApplicationExtensions.UpdateWindowSoftInputModeAdjust(this Android.App.Application platformView, Microsoft.Maui.Controls.Application application) -> void +~static Microsoft.Maui.Controls.Platform.BottomNavigationViewUtils.CreateItemBackgroundDrawable() -> Android.Graphics.Drawables.Drawable +~static Microsoft.Maui.Controls.Platform.BottomNavigationViewUtils.CreateMoreBottomSheet(System.Action selectCallback, Microsoft.Maui.IMauiContext mauiContext, System.Collections.Generic.List<(string title, Microsoft.Maui.Controls.ImageSource icon, bool tabEnabled)> items) -> Google.Android.Material.BottomSheet.BottomSheetDialog +~static Microsoft.Maui.Controls.Platform.BottomNavigationViewUtils.SetShiftMode(this Google.Android.Material.BottomNavigation.BottomNavigationView bottomNavigationView, bool enableShiftMode, bool enableItemShiftMode) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackground(this Android.Graphics.Drawables.GradientDrawable gradientDrawable, Microsoft.Maui.Controls.Brush brush, int height, int width) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackground(this Android.Graphics.Paint paint, Microsoft.Maui.Controls.Brush brush, int height, int width) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackground(this Android.Views.View view, Microsoft.Maui.Controls.Brush brush) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UseGradients(this Android.Graphics.Drawables.GradientDrawable gradientDrawable) -> bool +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this Google.Android.Material.Button.MaterialButton materialButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateLineBreakMode(this AndroidX.AppCompat.Widget.AppCompatButton nativeControl, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateText(this Google.Android.Material.Button.MaterialButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.EditTextExtensions.UpdateImeOptions(this Android.Widget.EditText editText, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Platform.EditTextExtensions.UpdateText(this Android.Widget.EditText editText, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.Platform.ElevationHelper.SetElevation(Android.Views.View view, float? elevation) -> void +~static Microsoft.Maui.Controls.Platform.ElevationHelper.SetElevation(Android.Views.View view, Microsoft.Maui.Controls.VisualElement element) -> void +~static Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions.OnThisPlatform(this T element) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.Platform.RecyclerViewExtensions.UpdateSelection(this AndroidX.RecyclerView.Widget.RecyclerView recyclerView, Microsoft.Maui.Controls.SelectableItemsView selectableItemsView) -> void +~static Microsoft.Maui.Controls.Platform.SearchViewExtensions.UpdateText(this AndroidX.AppCompat.Widget.SearchView searchView, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.Platform.TextViewExtensions.UpdateLineBreakMode(this Android.Widget.TextView textView, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextViewExtensions.UpdateMaxLines(this Android.Widget.TextView textView, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextViewExtensions.UpdateText(this Android.Widget.TextView textView, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.ViewExtensions.EnsureId(this Android.Views.View view) -> void +~static Microsoft.Maui.Controls.Platform.ViewExtensions.SetBackground(this Android.Views.View view, Android.Graphics.Drawables.Drawable drawable) -> void +~static Microsoft.Maui.Controls.Platform.ViewExtensions.SetElevation(this Android.Views.View view, float value) -> bool +~static Microsoft.Maui.Controls.Platform.WebViewExtensions.UpdateDisplayZoomControls(this Android.Webkit.WebView platformView, Microsoft.Maui.Controls.WebView webView) -> void +~static Microsoft.Maui.Controls.Platform.WebViewExtensions.UpdateEnableZoomControls(this Android.Webkit.WebView platformView, Microsoft.Maui.Controls.WebView webView) -> void +~static Microsoft.Maui.Controls.Platform.WebViewExtensions.UpdateMixedContentMode(this Android.Webkit.WebView platformView, Microsoft.Maui.Controls.WebView webView) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Resource.Styleable.Toolbar -> int[] +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebView.MapDisplayZoomControls(Microsoft.Maui.Handlers.WebViewHandler handler, Microsoft.Maui.Controls.WebView webView) -> void +~static Microsoft.Maui.Controls.WebView.MapEnableZoomControls(Microsoft.Maui.Handlers.WebViewHandler handler, Microsoft.Maui.Controls.WebView webView) -> void +~static Microsoft.Maui.Controls.WebView.MapMixedContentMode(Microsoft.Maui.Handlers.WebViewHandler handler, Microsoft.Maui.Controls.WebView webView) -> void +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.DefaultForegroundColor -> Microsoft.Maui.Graphics.Color +~static readonly Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.DefaultTitleColor -> Microsoft.Maui.Graphics.Color +~static readonly Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.DefaultUnselectedColor -> Microsoft.Maui.Graphics.Color +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellAdapter.HandleItemClick(Android.Widget.AdapterView parent, Android.Views.View view, int position, long id) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.GetCellCore(Microsoft.Maui.Controls.Cell item, Android.Views.View convertView, Android.Views.ViewGroup parent, Android.Content.Context context) -> Android.Views.View +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.OnCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.GetDigitsKeyListener(Android.Text.InputTypes inputTypes) -> Android.Text.Method.NumberKeyListener +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.CreateNativePullToRefresh(Android.Content.Context context) -> AndroidX.SwipeRefreshLayout.Widget.SwipeRefreshLayout +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateBottomNavViewAppearanceTracker(Microsoft.Maui.Controls.ShellItem shellItem) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellBottomNavViewAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateFragmentForPage(Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellFlyoutContentRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellFlyoutRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellItemRenderer(Microsoft.Maui.Controls.ShellItem shellItem) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellSectionRenderer(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateTabLayoutAppearanceTracker(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellTabLayoutAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateToolbarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateTrackerForToolbar(AndroidX.AppCompat.Widget.Toolbar toolbar) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnElementSet(Microsoft.Maui.Controls.Shell shell) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SwitchFragment(AndroidX.Fragment.App.FragmentManager manager, Android.Views.View targetView, Microsoft.Maui.Controls.ShellItem newItem, bool animate = true) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.GetModelRenderer(Android.Widget.ListView listView, Microsoft.Maui.Controls.TableView view) -> Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer +~virtual Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreateAdapter() -> Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewAdapter +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.BindTemplatedItemViewHolder(Microsoft.Maui.Controls.Handlers.Items.TemplatedItemViewHolder templatedItemViewHolder, object context) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.GetPositionForItem(object item) -> int +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.IsSelectionEnabled(Android.Views.ViewGroup parent, int viewType) -> bool +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter.ItemsViewPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs property) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreateAdapter() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewAdapter +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.CreateScrollListener() -> Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.CreateSpacingDecoration(Microsoft.Maui.Controls.IItemsLayout itemsLayout) -> AndroidX.RecyclerView.Widget.RecyclerView.ItemDecoration +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.DetermineTargetPosition(Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> int +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.GetSnapManager() -> Microsoft.Maui.Controls.Handlers.Items.SnapManager +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.LayoutPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs propertyChanged) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.ScrollTo(Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.SelectLayoutManager(Microsoft.Maui.Controls.IItemsLayout layoutSpecification) -> AndroidX.RecyclerView.Widget.RecyclerView.LayoutManager +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.SetUpNewElement(TItemsView newElement) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.TearDownOldElement(TItemsView oldElement) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateBackground(Microsoft.Maui.Controls.Brush brush = null) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.MauiRecyclerView.UpdateBackgroundColor(Microsoft.Maui.Graphics.Color color = null) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.RecyclerViewScrollListener.GetVisibleItemsIndex(AndroidX.RecyclerView.Widget.RecyclerView recyclerView) -> (int First, int Center, int Last) +~virtual Microsoft.Maui.Controls.Handlers.Items.SnapManager.CreateSnapHelper(Microsoft.Maui.Controls.SnapPointsType snapPointsType, Microsoft.Maui.Controls.SnapPointsAlignment alignment) -> AndroidX.RecyclerView.Widget.SnapHelper +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ContainerView.OnViewSet(Microsoft.Maui.Controls.View view) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.GetDigitsKeyListener(Android.Text.InputTypes inputTypes) -> Android.Text.Method.NumberKeyListener +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.SearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker.ResetAppearance(Google.Android.Material.BottomNavigation.BottomNavigationView bottomView) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker.SetAppearance(Google.Android.Material.BottomNavigation.BottomNavigationView bottomView, Microsoft.Maui.Controls.IShellAppearanceElement appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellBottomNavViewAppearanceTracker.SetBackgroundColor(Google.Android.Material.BottomNavigation.BottomNavigationView bottomView, Microsoft.Maui.Graphics.Color color) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellContentFragment.SetAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.DefaultItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.DefaultMenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.GenerateItemList() -> System.Collections.Generic.List +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRecyclerAdapter.OnFlyoutItemsChanged(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AttachFlyout(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, Android.Views.View content) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.OnShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.UpdateFlyoutSize(Android.Views.View flyoutView) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.LoadView(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.OnShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ChangeSection(Microsoft.Maui.Controls.ShellSection shellSection) -> bool +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.CreateItemBackgroundDrawable() -> Android.Graphics.Drawables.Drawable +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.CreateMoreBottomSheet(System.Action selectCallback) -> Google.Android.Material.BottomSheet.BottomSheetDialog +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.CreateMoreBottomSheet(System.Action selectCallback) -> Google.Android.Material.BottomSheet.BottomSheetDialog +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnItemSelected(Android.Views.IMenuItem item) -> bool +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnMoreItemSelected(Microsoft.Maui.Controls.ShellSection shellSection, Google.Android.Material.BottomSheet.BottomSheetDialog dialog) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnMoreSheetDismissed(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnTabReselected(Microsoft.Maui.Controls.ShellSection shellSection) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.SetAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.SetupMenu(Android.Views.IMenu menu, int maxBottomItems, Microsoft.Maui.Controls.ShellItem shellItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.UpdateShellSectionEnabled(Microsoft.Maui.Controls.ShellSection shellSection, Android.Views.IMenuItem menuItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.CreateFragmentForPage(Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.GetOrCreateFragmentForTab(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellObservableFragment +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.HandleFragmentUpdate(Microsoft.Maui.Controls.ShellNavigationSource navSource, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.HookChildEvents(Microsoft.Maui.Controls.ShellSection shellSection) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.HookEvents(Microsoft.Maui.Controls.ShellItem shellItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnDisplayedPageChanged(Microsoft.Maui.Controls.Page newPage, Microsoft.Maui.Controls.Page oldPage) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnNavigationRequested(object sender, Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnShellItemPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnShellItemsChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.SetupAnimation(Microsoft.Maui.Controls.ShellNavigationSource navSource, AndroidX.Fragment.App.FragmentTransaction t, Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.UnhookChildEvents(Microsoft.Maui.Controls.ShellSection shellSection) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRendererBase.UnhookEvents(Microsoft.Maui.Controls.ShellItem shellItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.CreateSearchHandlerAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.LoadView(Microsoft.Maui.Controls.SearchHandler searchHandler) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnClearButtonClicked(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnClearPlaceholderButtonClicked(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnSearchButtonClicked(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchView.OnSearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchViewAdapter.OnSearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnAnimationFinished(System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnItemsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnShellItemPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.SetAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker.ResetAppearance(Google.Android.Material.Tabs.TabLayout tabLayout) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker.SetAppearance(Google.Android.Material.Tabs.TabLayout tabLayout, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTabLayoutAppearanceTracker.SetColors(Google.Android.Material.Tabs.TabLayout tabLayout, Microsoft.Maui.Graphics.Color foreground, Microsoft.Maui.Graphics.Color background, Microsoft.Maui.Graphics.Color title, Microsoft.Maui.Graphics.Color unselected) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker.ResetAppearance(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker toolbarTracker) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker.SetAppearance(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker toolbarTracker, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarAppearanceTracker.SetColors(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Platform.Compatibility.IShellToolbarTracker toolbarTracker, Microsoft.Maui.Graphics.Color foreground, Microsoft.Maui.Graphics.Color background, Microsoft.Maui.Graphics.Color title) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.GetSearchView(Android.Content.Context context) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchView +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnPageChanged(Microsoft.Maui.Controls.Page oldPage, Microsoft.Maui.Controls.Page newPage) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnPagePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnPageToolbarItemsChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnSearchConfirmed(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnSearchHandlerChanged(Microsoft.Maui.Controls.SearchHandler oldValue, Microsoft.Maui.Controls.SearchHandler newValue) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.OnSearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateDrawerArrow(Android.Content.Context context, AndroidX.AppCompat.Widget.Toolbar toolbar, AndroidX.DrawerLayout.Widget.DrawerLayout drawerLayout) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateDrawerArrowFromBackButtonBehavior(Android.Content.Context context, AndroidX.AppCompat.Widget.Toolbar toolbar, AndroidX.DrawerLayout.Widget.DrawerLayout drawerLayout, Microsoft.Maui.Controls.BackButtonBehavior backButtonHandler) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateDrawerArrowFromFlyoutIcon(Android.Content.Context context, AndroidX.AppCompat.App.ActionBarDrawerToggle actionBarDrawerToggle) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateLeftBarButtonItem(Android.Content.Context context, AndroidX.AppCompat.Widget.Toolbar toolbar, AndroidX.DrawerLayout.Widget.DrawerLayout drawerLayout, Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateMenuItemIcon(Android.Content.Context context, Android.Views.IMenuItem menuItem, Microsoft.Maui.Controls.ToolbarItem toolBarItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateNavBarVisible(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdatePageTitle(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateTitleView(Android.Content.Context context, AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.View titleView) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateToolbarIconAccessibilityText(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Shell shell) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellToolbarTracker.UpdateToolbarItems(AndroidX.AppCompat.Widget.Toolbar toolbar, Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..bfa679a38978 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Unshipped.txt @@ -0,0 +1,15 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer.HeaderContainer.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +~override Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.DisconnectHandler(Android.Views.View platformView) -> void +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +~override Microsoft.Maui.Controls.Shell.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void diff --git a/src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..8d3543179274 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Shipped.txt @@ -0,0 +1,7836 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.ConstrainTo(CoreGraphics.CGSize constraint) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.Measure() -> CoreGraphics.CGSize +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.IsHorizontal.get -> bool +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.NeedsContentSizeUpdate(Microsoft.Maui.Graphics.Size currentSize) -> (bool, Microsoft.Maui.Graphics.Size) +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +const Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.EmptyTag = 333 -> int +const Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.FooterTag = 222 -> int +const Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.HeaderTag = 111 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions +Microsoft.Maui.Controls.Compatibility.Platform.iOS.ToolbarItemExtensions +Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.UpdateBackground(UIKit.UITableViewCell! tableViewCell, Microsoft.Maui.Controls.Cell! cell) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.WireUpForceUpdateSizeRequested(Microsoft.Maui.Controls.ICellController! cell, UIKit.UITableViewCell! platformCell, UIKit.UITableView! tableView) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.KeyboardDoneButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.TextFieldTextChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl +Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.FormsRefreshControl(bool usingLargeTitles) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.FrameRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.ImageCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.DeleteRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.DeleteRowsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.InsertRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.InsertRowsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ListViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadRowsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadSectionsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadSectionsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.NavigationRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.PhoneFlyoutPageRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.SetElementSize(Microsoft.Maui.Graphics.Size size) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ShellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.Dispose() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.OnLayoutSubviews() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.Reset() -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.SwitchCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.TabbedRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.AutomaticallyDeselect.get -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.AutomaticallyDeselect.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.HasBoundGestures -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.GetTableViewStyle(Microsoft.Maui.Controls.TableIntent intent) -> UIKit.UITableViewStyle +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.TableViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.TextCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.UnEvenTableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.Control.get -> TPlatformView? +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SetNativeControl(TPlatformView! control) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.get -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.Element.get -> TElement? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementChanged -> System.EventHandler!>? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementPropertyChanged -> System.EventHandler? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetElement(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRenderer() -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell +Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.CarouselTemplatedCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselViewController +Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.DefaultCell +Microsoft.Maui.Controls.Handlers.Items.DefaultCell.DefaultCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.Items.GridViewLayout +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GroupCount.get -> int +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.ItemCount.get -> int +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.ItemCountInGroup(nint group) -> int +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource.Loop.get -> bool +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource.Loop.set -> void +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource.LoopCount.get -> int +Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource.ObserveChanges.get -> bool +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource.ObserveChanges.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell +Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.ItemsViewCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.PreviousHorizontalOffset -> float +Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.PreviousVerticalOffset -> float +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ConstrainedDimension.get -> System.Runtime.InteropServices.NFloat +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ConstrainedDimension.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.DetermineCellSize() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.UpdateCellConstraints() -> void +Microsoft.Maui.Controls.Handlers.Items.LayoutAttributesChangedEventArgs +Microsoft.Maui.Controls.Handlers.Items.ListViewLayout +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.UpdateCanReorderItems() -> void +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ClearConstraints() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainedDimension -> System.Runtime.InteropServices.NFloat +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainedSize -> CoreGraphics.CGSize +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ContentSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Layout(CoreGraphics.CGSize constraints) -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.LayoutAttributesChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.OnContentSizeChanged() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.TemplatedCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.BrushExtensions +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.AllowFlyoutGesture.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.WillAppear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.WillDisappear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutTransition +Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellItemTransition +Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.IsRootPage.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.IsRootPage.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.IsInMoreTab.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.IsInMoreTab.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer.ShowNavBar.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellNavBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellNavBarAppearanceTracker.SafeShellNavBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.SafeShellTabBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.UpdateSearchBarColors() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.WillAppear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.WillDisappear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationCurve.get -> UIKit.UIViewAnimationCurve +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationCurve.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationDuration.get -> int +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationDuration.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ShellFlyoutRenderer() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemTransition +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemTransition.ShellItemTransition() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.ShellNavBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.IsRootPage.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.IsRootPage.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.DeleteRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.DeleteRowsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.InsertRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.InsertRowsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadRowsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadSectionsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadSectionsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.IsInMoreTab.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.IsInMoreTab.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.LayoutBar() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.SelectedIndex.get -> double +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.SelectedIndex.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.ShellSectionHeaderCell() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.ShellSectionHeaderCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionRootHeader() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellTabBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellTabBarAppearanceTracker.ShellTabBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.LayoutParallax() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.ClearCache() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.ScrolledEvent -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition +Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition.SlideFlyoutTransition() -> void +Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell +Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.Extensions +Microsoft.Maui.Controls.Platform.FontExtensions +Microsoft.Maui.Controls.Platform.FormattedStringExtensions +Microsoft.Maui.Controls.Platform.LabelExtensions +Microsoft.Maui.Controls.Platform.NavigationPageExtensions +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.ScrollViewExtensions +Microsoft.Maui.Controls.Platform.SearchBarExtensions +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.TextExtensions +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CreatePlatformElement() -> UIKit.UITableViewCell! +override Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.BeginRefreshing() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.Hidden.get -> bool +override Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.Hidden.set -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Draw(CoreGraphics.CGRect rect) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.DidRotate(UIKit.UIInterfaceOrientation fromInterfaceOrientation) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewDidAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewDidDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.WillRotate(UIKit.UIInterfaceOrientation toInterfaceOrientation, double duration) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.DidRotate(UIKit.UIInterfaceOrientation fromInterfaceOrientation) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewDidAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewDidDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.UpdateNativeWidget() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SizeToFit() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.ConstrainTo(CoreGraphics.CGSize constraint) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.Measure() -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.NeedsContentSizeUpdate(Microsoft.Maui.Graphics.Size currentSize) -> (bool, Microsoft.Maui.Graphics.Size) +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.IsHorizontal.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.RegisterViewTypes() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.UpdateVisibility() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.GetVisibleItemsIndex() -> (bool VisibleItems, int First, int Center, int Last) +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.FinalizeCollectionViewUpdates() -> void +override Microsoft.Maui.Controls.Handlers.Items.DefaultCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.CollectionViewContentSize.get -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.RegisterViewTypes() -> void +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.FinalizeCollectionViewUpdates() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.FlipsHorizontallyInOppositeLayoutDirection.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.PrepareLayout() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ShouldInvalidateLayoutForBoundsChange(CoreGraphics.CGRect newBounds) -> bool +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.TargetContentOffset(CoreGraphics.CGPoint proposedContentOffset, CoreGraphics.CGPoint scrollingVelocity) -> CoreGraphics.CGPoint +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.TargetContentOffsetForProposedContentOffset(CoreGraphics.CGPoint proposedContentOffset) -> CoreGraphics.CGPoint +override Microsoft.Maui.Controls.Handlers.Items.ListViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.DetermineEmptyViewFrame() -> CoreGraphics.CGRect +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.IsHorizontal.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainTo(CoreGraphics.CGSize constraint) -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Selected.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Selected.set -> void +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewWillDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.Frame.get -> CoreGraphics.CGRect +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.Frame.set -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.IntrinsicContentSize.get -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.Selected.get -> bool +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.Selected.set -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewSafeAreaInsetsDidChange() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ViewSafeAreaInsetsDidChange() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.LayoutSubviews() -> void +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.Mapper -> Microsoft.Maui.PropertyMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationId(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackground(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackgroundColor(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapIsEnabled(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions.ToCollectionViewScrollPosition(this Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, UIKit.UICollectionViewScrollDirection scrollDirection = UIKit.UICollectionViewScrollDirection.Vertical, bool isLtr = false) -> UIKit.UICollectionViewScrollPosition +static Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions.ToHorizontalCollectionViewScrollPosition(this Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isLtr) -> UIKit.UICollectionViewScrollPosition +static Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions.ToVerticalCollectionViewScrollPosition(this Microsoft.Maui.Controls.ScrollToPosition scrollToPosition) -> UIKit.UICollectionViewScrollPosition +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Platform.Extensions.ToPlatformModalPresentationStyle(this Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle style) -> UIKit.UIModalPresentationStyle +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToNSAttributedString(this Microsoft.Maui.Controls.FormattedString! formattedString, Microsoft.Maui.IFontManager! fontManager, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> Foundation.NSAttributedString! +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToNSAttributedString(this Microsoft.Maui.Controls.Label! label) -> Foundation.NSAttributedString? +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToNSAttributedString(this Microsoft.Maui.Controls.Span! span, Microsoft.Maui.IFontManager! fontManager, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> Foundation.NSAttributedString! +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.GetCell(Microsoft.Maui.Controls.Cell! item, UIKit.UITableViewCell! reusableCell, UIKit.UITableView! tv) -> UIKit.UITableViewCell! +virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.SetAccessibility(UIKit.UITableViewCell! tableViewCell, Microsoft.Maui.Controls.Cell! cell) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.SetBackgroundColor(UIKit.UITableViewCell! tableViewCell, Microsoft.Maui.Controls.Cell! cell, UIKit.UIColor! color) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SetupLayer() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnCurrentItemChanged() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetElementSize(Microsoft.Maui.Graphics.Size size) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.UpdateBackgroundColor() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.CreateNativeControl() -> TPlatformView! +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.DisconnectHandler(TPlatformView! oldNativeView) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementPropertyChanged(object! sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationId(string! id) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetBackground(Microsoft.Maui.Controls.Brush! brush) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetBackgroundColor(Microsoft.Maui.Graphics.Color? color) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetImportantForAccessibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetIsEnabled() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateNativeWidget() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ViewController.get -> UIKit.UIViewController? +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.DetermineEmptyViewFrame() -> CoreGraphics.CGRect +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.RegisterViewTypes() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateFlowDirection() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateItemsSource() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateVisibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetVisibleItemsIndex() -> (bool VisibleItems, int First, int Center, int Last) +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateLayout() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.UpdateItemSpacing() -> void +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.UpdateBackground() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnRendererSet() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateTabBarVisible() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateTitle() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateTitleView() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateToolbarItems() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.LoadPages() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnShellSectionSet() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.UpdateTabBarItem() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ResetAppearance() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.UpdateSelectedIndex(bool animated = false) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.LayoutRenderers() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.LoadRenderers() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.UpdateHeaderVisibility() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition.UpdateFlyoutSize(double height, double width) -> bool +virtual Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.Margin.get -> Microsoft.Maui.Thickness +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreateController(TItemsView newElement, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.SelectLayout() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~abstract Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.AttributesConsistentWithConstrainedDimension(UIKit.UICollectionViewLayoutAttributes attributes) -> bool +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Cell.get -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Cell.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.CellTableViewCell(UIKit.UITableViewCellStyle style, string key) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.HandlePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.PropertyChanged -> System.Action +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.EntryCellTableViewCell(string cellName) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.TextField.get -> UIKit.UITextField +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopToRootAsync(Microsoft.Maui.Controls.Page page, bool animated = true) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopViewAsync(Microsoft.Maui.Controls.Page page, bool animated = true) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PushPageAsync(Microsoft.Maui.Controls.Page page, bool animated = true) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetCurrentShellItemController(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer value) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetCurrentShellItemControllerAsync(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer value) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Shell.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.ShellScrollViewTracker(Microsoft.Maui.IPlatformViewHandler renderer) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Tabbed.get -> Microsoft.Maui.Controls.TabbedPage +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.LongPress(UIKit.UILongPressGestureRecognizer gesture) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.Table -> UIKit.UITableView +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.TableViewModelRenderer(Microsoft.Maui.Controls.TableView model) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.View -> Microsoft.Maui.Controls.TableView +~Microsoft.Maui.Controls.Handlers.Compatibility.UnEvenTableViewModelRenderer.UnEvenTableViewModelRenderer(Microsoft.Maui.Controls.TableView model) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CarouselViewController(Microsoft.Maui.Controls.CarouselView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.CarouselViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, Microsoft.Maui.Controls.Handlers.Items.CarouselViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.CarouselViewLayout(Microsoft.Maui.Controls.ItemsLayout itemsLayout, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.DefaultCell.Constraint.get -> UIKit.NSLayoutConstraint +~Microsoft.Maui.Controls.Handlers.Items.DefaultCell.Constraint.set -> void +~Microsoft.Maui.Controls.Handlers.Items.DefaultCell.Label.get -> UIKit.UILabel +~Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.GridViewLayout(Microsoft.Maui.Controls.GridItemsLayout itemsLayout, Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.GroupableItemsViewController(TItemsView groupableItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GroupableItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GetIndexForItem(object item) -> Foundation.NSIndexPath +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.Group(Foundation.NSIndexPath indexPath) -> object +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GroupItemsViewSource(Foundation.NSIndexPath indexPath) -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.this[Foundation.NSIndexPath indexPath].get -> object +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.InitializeContentConstraints(UIKit.UIView platformView) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CreateMeasurementCell(Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.Delegator.get -> UIKit.UICollectionViewDelegateFlowLayout +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.Delegator.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetItemAtIndex(Foundation.NSIndexPath index) -> object +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsSource.get -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsSource.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsView.get -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsViewController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsViewLayout.get -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsViewLayout.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.OnFormsElementMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.RemeasureLayout(Microsoft.Maui.Controls.VisualElement formsElement) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateLayout(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout newLayout) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.ItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.ItemsViewLayout.get -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.ViewController.get -> TViewController +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.Controller.get -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.IsIndexPathValid(Foundation.NSIndexPath indexPath) -> bool +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsView.get -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetPrototype.get -> System.Func +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetPrototype.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ItemsViewLayout(Microsoft.Maui.Controls.ItemsLayout itemsLayout, Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy = Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.PrepareCellForLayout(Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell cell) -> void +~Microsoft.Maui.Controls.Handlers.Items.LayoutAttributesChangedEventArgs.LayoutAttributesChangedEventArgs(UIKit.UICollectionViewLayoutAttributes newAttributes) -> void +~Microsoft.Maui.Controls.Handlers.Items.LayoutAttributesChangedEventArgs.NewAttributes.get -> UIKit.UICollectionViewLayoutAttributes +~Microsoft.Maui.Controls.Handlers.Items.ListViewLayout.ListViewLayout(Microsoft.Maui.Controls.LinearItemsLayout itemsLayout, Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.ReorderableItemsViewController(TItemsView reorderableItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator.ReorderableItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.SelectableItemsViewController(TItemsView selectableItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator.SelectableItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.StructuredItemsViewController(TItemsView structuredItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Bind(Microsoft.Maui.Controls.DataTemplate template, object bindingContext, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.CurrentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.OnLayoutAttributesChanged(UIKit.UICollectionViewLayoutAttributes newAttributes) -> void +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateNavBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreatePageRendererTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellFlyoutContentRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellSearchResultsRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellSectionRenderer(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateTabBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CurrentShellItemRenderer.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.Shell.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.AttachFlyout(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, UIKit.UIViewController content) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.View.get -> UIKit.UIView +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutTransition.LayoutViews(CoreGraphics.CGRect bounds, System.Runtime.InteropServices.NFloat openPercent, UIKit.UIView flyout, UIKit.UIView shell, Microsoft.Maui.FlyoutBehavior behavior) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ShellItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ShellItem.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemTransition.Transition(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer oldRenderer, Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer newRenderer) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.ResetAppearance(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.SetAppearance(UIKit.UINavigationController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.SetHasShadow(UIKit.UINavigationController controller, bool hasShadow) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.UpdateLayout(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.Page.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.ViewController.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.SearchHandler.get -> Microsoft.Maui.Controls.SearchHandler +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.SearchHandler.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker.ResetAppearance(UIKit.UITabBarController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker.SetAppearance(UIKit.UITabBarController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker.UpdateLayout(UIKit.UITabBarController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.SearchHandlerAppearanceTracker(UIKit.UISearchBar searchBar, Microsoft.Maui.Controls.SearchHandler searchHandler, Microsoft.Maui.IFontManager fontManager) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ShellFlyoutContentRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.FlyoutTransition.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutTransition +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.FlyoutTransition.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItem.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItemController.get -> Microsoft.Maui.Controls.IShellItemController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItemRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemTransition.Transition(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer oldRenderer, Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer newRenderer) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.ResetAppearance(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.SetAppearance(UIKit.UINavigationController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.UpdateLayout(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Page.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.ShellPageRendererTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.TitleViewContainer(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.ViewController.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ShellSearchResultsRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSectionRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSectionRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, System.Type navigationBarType, System.Type toolbarType) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShouldPopItem(UIKit.UINavigationBar _, UIKit.UINavigationItem __) -> bool +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.Label.get -> UIKit.UILabel +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.SelectedColor.get -> UIKit.UIColor +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.SelectedColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.UnSelectedColor.get -> UIKit.UIColor +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.UnSelectedColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionRootHeader(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ShellSectionRootRenderer(Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.CreateShellTableViewSource() -> Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ShellTableViewController(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView headerView, System.Action onElementSelected) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ShellTableViewController(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, System.Action onElementSelected) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.Groups.get -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.ShellTableViewSource(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, System.Action onElementSelected) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.BindingContext.get -> object +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.BindingContext.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.UIContainerCell(string cellId, Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.UIContainerView(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.AddSubview(UIKit.UIView view) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.HandleCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.SetBackground(Microsoft.Maui.Controls.Brush brush) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ViewController.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ChildViewControllerForHomeIndicatorAutoHidden.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ChildViewControllerForStatusBarHidden() -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopToRootViewController(bool animated) -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopViewController(bool animated) -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ChildViewControllerForHomeIndicatorAutoHidden.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ChildViewControllerForStatusBarHidden() -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ChildViewControllerForHomeIndicatorAutoHidden.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ChildViewControllerForStatusBarHidden() -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.SelectedViewController.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.SelectedViewController.set -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetCell(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetHeightForHeader(UIKit.UITableView tableView, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetViewForHeader(UIKit.UITableView tableView, nint section) -> UIKit.UIView +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.NumberOfSections(UIKit.UITableView tableView) -> nint +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.RowSelected(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.RowsInSection(UIKit.UITableView tableview, nint section) -> nint +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.SectionIndexTitles(UIKit.UITableView tableView) -> string[] +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.TitleForHeader(UIKit.UITableView tableView, nint section) -> string +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.WillDisplayHeaderView(UIKit.UITableView tableView, UIKit.UIView headerView, nint section) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.CreateNativeControl() -> UIKit.UITableView +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.UnEvenTableViewModelRenderer.GetHeightForRow(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.AttributesConsistentWithConstrainedDimension(UIKit.UICollectionViewLayoutAttributes attributes) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CacheCellAttributes(Foundation.NSIndexPath indexPath, CoreGraphics.CGSize size) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.DetermineCellReuseId() -> string +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.DraggingEnded(UIKit.UIScrollView scrollView, bool willDecelerate) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.DraggingStarted(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.GetCell(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.GetItemsCount(UIKit.UICollectionView collectionView, nint section) -> nint +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.DecelerationEnded(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.DraggingEnded(UIKit.UIScrollView scrollView, bool willDecelerate) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.DraggingStarted(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.ScrollAnimationEnded(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.Scrolled(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreateController(Microsoft.Maui.Controls.CarouselView newElement, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.CarouselViewController +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.SelectLayout() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.PrepareForCollectionViewUpdates(UIKit.UICollectionViewUpdateItem[] updateItems) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.GetInvalidationContext(UIKit.UICollectionViewLayoutAttributes preferredAttributes, UIKit.UICollectionViewLayoutAttributes originalAttributes) -> UIKit.UICollectionViewLayoutInvalidationContext +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.HandlePropertyChanged(System.ComponentModel.PropertyChangedEventArgs propertyChanged) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.LayoutAttributesForElementsInRect(CoreGraphics.CGRect rect) -> UIKit.UICollectionViewLayoutAttributes[] +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.GetViewForSupplementaryElement(UIKit.UICollectionView collectionView, Foundation.NSString elementKind, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionReusableView +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GetReferenceSizeForFooter(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> CoreGraphics.CGSize +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GetReferenceSizeForHeader(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> CoreGraphics.CGSize +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.ScrollAnimationEnded(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetCell(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetItemsCount(UIKit.UICollectionView collectionView, nint section) -> nint +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.NumberOfSections(UIKit.UICollectionView collectionView) -> nint +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.CellDisplayingEnded(UIKit.UICollectionView collectionView, UIKit.UICollectionViewCell cell, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetMinimumLineSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetSizeForItem(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, Foundation.NSIndexPath indexPath) -> CoreGraphics.CGSize +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.Scrolled(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ConnectHandler(UIKit.UIView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> UIKit.UIView +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.DisconnectHandler(UIKit.UIView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetInvalidationContext(UIKit.UICollectionViewLayoutAttributes preferredAttributes, UIKit.UICollectionViewLayoutAttributes originalAttributes) -> UIKit.UICollectionViewLayoutInvalidationContext +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.PrepareForCollectionViewUpdates(UIKit.UICollectionViewUpdateItem[] updateItems) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ShouldInvalidateLayout(UIKit.UICollectionViewLayoutAttributes preferredAttributes, UIKit.UICollectionViewLayoutAttributes originalAttributes) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.CanMoveItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.MoveItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath sourceIndexPath, Foundation.NSIndexPath destinationIndexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator.GetTargetIndexPathForMove(UIKit.UICollectionView collectionView, Foundation.NSIndexPath originalIndexPath, Foundation.NSIndexPath proposedIndexPath) -> Foundation.NSIndexPath +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.ItemDeselected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.ItemSelected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator.ItemDeselected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator.ItemSelected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.HandleFormsElementMeasureInvalidated(Microsoft.Maui.Controls.VisualElement formsElement) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.SelectLayout() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.PreferredLayoutAttributesFittingAttributes(UIKit.UICollectionViewLayoutAttributes layoutAttributes) -> UIKit.UICollectionViewLayoutAttributes +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.SelectedViewController.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.SelectedViewController.set -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.WillMoveToSuperview(UIKit.UIView newSuper) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.GetCell(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.NumberOfSections(UIKit.UITableView tableView) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.RowSelected(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.RowsInSection(UIKit.UITableView tableView, nint section) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PopToRootViewController(bool animated) -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PopToViewController(UIKit.UIViewController viewController, bool animated) -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PopViewController(bool animated) -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PushViewController(UIKit.UIViewController viewController, bool animated) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewControllers.get -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewControllers.set -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.CanMoveItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> bool +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.GetCell(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.GetItemsCount(UIKit.UICollectionView collectionView, nint section) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ItemDeselected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ItemSelected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.NumberOfSections(UIKit.UICollectionView collectionView) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShouldSelectItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> bool +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetCell(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetHeightForFooter(UIKit.UITableView tableView, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetHeightForRow(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetViewForFooter(UIKit.UITableView tableView, nint section) -> UIKit.UIView +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.NumberOfSections(UIKit.UITableView tableView) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.RowSelected(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.RowsInSection(UIKit.UITableView tableview, nint section) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.Scrolled(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.WillDisplay(UIKit.UITableView tableView, UIKit.UITableViewCell cell, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.WillMoveToSuperview(UIKit.UIView newSuper) -> void +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~readonly Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.Carousel -> Microsoft.Maui.Controls.CarouselView +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.IButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityElementsHidden(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, bool? _defaultAccessibilityElementsHidden = null) -> bool? +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityHint(this UIKit.UIBarItem Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityHint = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityHint(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityHint = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityLabel(this UIKit.UIBarItem Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityLabel = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityLabel(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityLabel = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityProperties(this UIKit.UIView nativeViewElement, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetIsAccessibilityElement(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, bool? _defaultIsAccessibilityElement = null) -> bool? +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.ToolbarItemExtensions.ToUIBarButtonItem(this Microsoft.Maui.Controls.ToolbarItem item, bool forceName = false, bool forcePrimary = false) -> UIKit.UIBarButtonItem +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.ToolbarItemExtensions.ToUIBarButtonItem(this Microsoft.Maui.Controls.ToolbarItem item, bool forceName) -> UIKit.UIBarButtonItem +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.Descendants(this UIKit.UIView self) -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.GetSizeRequest(this UIKit.UIView self, double widthConstraint, double heightConstraint, double minimumWidth = -1, double minimumHeight = -1) -> Microsoft.Maui.SizeRequest +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetBinding(this UIKit.UIView self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetBinding(this UIKit.UIView view, string propertyName, Microsoft.Maui.Controls.BindingBase bindingBase, string updateSourceEventName = null) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetBindingContext(this UIKit.UIView target, object bindingContext, System.Func> getChildren = null) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetValue(this UIKit.UIView target, Microsoft.Maui.Controls.BindableProperty targetProperty, object value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DatePicker.MapUpdateMode(Microsoft.Maui.Handlers.DatePickerHandler handler, Microsoft.Maui.Controls.DatePicker datePicker) -> void +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element view) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapAdjustsFontSizeToFitWidth(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Entry.MapCursorColor(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.ReuseId -> Foundation.NSString +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapLoop(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers.GenerateIndexPathRange(int section, int startIndex, int count) -> Foundation.NSIndexPath[] +~static Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers.GenerateLoopedIndexPathRange(int section, int sectionCount, int iterations, int startIndex, int count) -> Foundation.NSIndexPath[] +~static Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers.IsIndexPathValid(this Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource source, Foundation.NSIndexPath indexPath) -> bool +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapCharacterSpacing(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapFont(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapLineHeight(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextColor(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextDecorations(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.MapIsNavigationBarTranslucent(Microsoft.Maui.Handlers.NavigationViewHandler handler, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.NavigationPage.MapPrefersLargeTitles(Microsoft.Maui.Handlers.NavigationViewHandler handler, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Picker.MapUpdateMode(Microsoft.Maui.Handlers.PickerHandler handler, Microsoft.Maui.Controls.Picker picker) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.GetBackgroundImage(this UIKit.UIView control, Microsoft.Maui.Controls.Brush brush) -> UIKit.UIImage +~static Microsoft.Maui.Controls.Platform.BrushExtensions.GetBackgroundLayer(this UIKit.UIView control, Microsoft.Maui.Controls.Brush brush) -> CoreAnimation.CALayer +~static Microsoft.Maui.Controls.Platform.BrushExtensions.InsertBackgroundLayer(this CoreAnimation.CALayer layer, CoreAnimation.CALayer backgroundLayer, int index = -1) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.InsertBackgroundLayer(this UIKit.UIView view, CoreAnimation.CALayer backgroundLayer, int index = -1) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.RemoveBackgroundLayer(this CoreAnimation.CALayer layer) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.RemoveBackgroundLayer(this UIKit.UIView view) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackground(this UIKit.UIView control, Microsoft.Maui.Controls.Brush brush) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackgroundLayer(this UIKit.UIView view) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this UIKit.UIButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateLineBreakMode(this UIKit.UIButton nativeButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdatePadding(this UIKit.UIButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateText(this UIKit.UIButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.FontExtensions.ToUIFont(this Microsoft.Maui.Font self, Microsoft.Maui.IFontManager fontManager) -> UIKit.UIFont +~static Microsoft.Maui.Controls.Platform.FontExtensions.ToUIFont(this TFontElement fontElement) -> UIKit.UIFont +~static Microsoft.Maui.Controls.Platform.LabelExtensions.UpdateText(this UIKit.UILabel platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.NavigationPageExtensions.UpdateIsNavigationBarTranslucent(this UIKit.UINavigationController platformView, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.Platform.NavigationPageExtensions.UpdatePrefersLargeTitles(this UIKit.UINavigationController platformView, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions.OnThisPlatform(this T element) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.Platform.ScrollViewExtensions.UpdateShouldDelayContentTouches(this UIKit.UIScrollView platformView, Microsoft.Maui.Controls.ScrollView scrollView) -> void +~static Microsoft.Maui.Controls.Platform.SearchBarExtensions.UpdateSearchBarStyle(this UIKit.UISearchBar uiSearchBar, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.Platform.SearchBarExtensions.UpdateText(this UIKit.UISearchBar uiSearchBar, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateAdjustsFontSizeToFitWidth(this UIKit.UITextField textField, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateCursorColor(this UIKit.UITextField textField, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateLineBreakMode(this UIKit.UILabel platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateMaxLines(this UIKit.UILabel platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateText(this UIKit.UITextField textField, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateText(this UIKit.UITextView textView, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButton.MapContent(Microsoft.Maui.Handlers.RadioButtonHandler handler, Microsoft.Maui.Controls.RadioButton radioButton) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.ScrollView.MapShouldDelayContentTouches(Microsoft.Maui.Handlers.ScrollViewHandler handler, Microsoft.Maui.Controls.ScrollView scrollView) -> void +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapSearchBarStyle(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TimePicker.MapUpdateMode(Microsoft.Maui.Handlers.TimePickerHandler handler, Microsoft.Maui.Controls.TimePicker timePicker) -> void +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnPopToRoot(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnPopViewAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateFlyoutRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateNavBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreatePageRendererTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellFlyoutContentRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellItemRenderer(Microsoft.Maui.Controls.ShellItem item) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellItemTransition() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemTransition +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellSearchResultsRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellSectionRenderer(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateTabBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnCurrentItemChangedAsync() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnElementSet(Microsoft.Maui.Controls.Shell element) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.GetIcon(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task> +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.HandleCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.HandlePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CacheCellAttributes(Foundation.NSIndexPath indexPath, CoreGraphics.CGSize size) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.DetermineCellReuseId() -> string +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetIndexForItem(object item) -> Foundation.NSIndexPath +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.HandleFormsElementMeasureInvalidated(Microsoft.Maui.Controls.VisualElement formsElement) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateDefaultCell(Microsoft.Maui.Controls.Handlers.Items.DefaultCell cell, Foundation.NSIndexPath indexPath) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateTemplatedCell(Microsoft.Maui.Controls.Handlers.Items.TemplatedCell cell, Foundation.NSIndexPath indexPath) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetVisibleItemsIndexPath() -> (bool VisibleItems, Foundation.NSIndexPath First, Foundation.NSIndexPath Center, Foundation.NSIndexPath Last) +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetMinimumLineSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.HandlePropertyChanged(System.ComponentModel.PropertyChangedEventArgs propertyChanged) -> void +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.ResetAppearance(UIKit.UITabBarController controller) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.SetAppearance(UIKit.UITabBarController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.UpdateLayout(UIKit.UITabBarController controller) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.CreateShellTableViewController() -> Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.OnShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.DidShowViewController(UIKit.UINavigationController navigationController, UIKit.UIViewController viewController, bool animated) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnItemsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellItemSet(Microsoft.Maui.Controls.ShellItem shellItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.UpdateShellAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.SetHasShadow(UIKit.UINavigationController controller, bool hasShadow) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnBackButtonBehaviorPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnPagePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnPageSet(Microsoft.Maui.Controls.Page oldPage, Microsoft.Maui.Controls.Page newPage) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnSearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.RemoveSearchController(UIKit.UINavigationItem navigationItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateSearchIsEnabled(UIKit.UISearchController searchController) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateSearchVisibility(UIKit.UISearchController searchController) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.CreateShellSectionRootRenderer(Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.HandlePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnDisplayedPageChanged(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnInsertRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnNavigationRequested(object sender, Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPopRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPopToRootRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPushRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnRemoveRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.GetCellType() -> System.Type +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.SetAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.CreateShellSectionRootHeader(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.FooterView.get -> UIKit.UIView +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.FooterView.set -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.HeaderView.get -> Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.HeaderView.set -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.DefaultItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.DefaultMenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition.LayoutViews(CoreGraphics.CGRect bounds, System.Runtime.InteropServices.NFloat openPercent, UIKit.UIView flyout, UIKit.UIView shell, Microsoft.Maui.FlyoutBehavior behavior) -> void +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..9baa18457065 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-ios/PublicAPI.Unshipped.txt @@ -0,0 +1,13 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SetNeedsLayout() -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size diff --git a/src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..8d3543179274 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt @@ -0,0 +1,7836 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.ConstrainTo(CoreGraphics.CGSize constraint) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.Measure() -> CoreGraphics.CGSize +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.IsHorizontal.get -> bool +abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +abstract Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.NeedsContentSizeUpdate(Microsoft.Maui.Graphics.Size currentSize) -> (bool, Microsoft.Maui.Graphics.Size) +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +const Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.EmptyTag = 333 -> int +const Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.FooterTag = 222 -> int +const Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.HeaderTag = 111 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions +Microsoft.Maui.Controls.Compatibility.Platform.iOS.ToolbarItemExtensions +Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.UpdateBackground(UIKit.UITableViewCell! tableViewCell, Microsoft.Maui.Controls.Cell! cell) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.WireUpForceUpdateSizeRequested(Microsoft.Maui.Controls.ICellController! cell, UIKit.UITableViewCell! platformCell, UIKit.UITableView! tableView) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.KeyboardDoneButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.TextFieldTextChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl +Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.FormsRefreshControl(bool usingLargeTitles) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.FrameRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.ImageCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.DeleteRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.DeleteRowsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.InsertRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.InsertRowsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ListViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadRowsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadSectionsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ReloadSectionsAnimation.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.NavigationRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.PhoneFlyoutPageRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.SetElementSize(Microsoft.Maui.Graphics.Size size) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ShellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.Dispose() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.OnLayoutSubviews() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.Reset() -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.SwitchCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ElementChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.TabbedRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.AutomaticallyDeselect.get -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.AutomaticallyDeselect.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.HasBoundGestures -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.GetTableViewStyle(Microsoft.Maui.Controls.TableIntent intent) -> UIKit.UITableViewStyle +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.TableViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.TextCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.UnEvenTableViewModelRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.Control.get -> TPlatformView? +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SetNativeControl(TPlatformView! control) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.get -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.Element.get -> TElement? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementChanged -> System.EventHandler!>? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementPropertyChanged -> System.EventHandler? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetElement(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRenderer() -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell +Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.CarouselTemplatedCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselViewController +Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.DefaultCell +Microsoft.Maui.Controls.Handlers.Items.DefaultCell.DefaultCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.Items.GridViewLayout +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GroupCount.get -> int +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.ItemCount.get -> int +Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.ItemCountInGroup(nint group) -> int +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource.Loop.get -> bool +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource.Loop.set -> void +Microsoft.Maui.Controls.Handlers.Items.ILoopItemsViewSource.LoopCount.get -> int +Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource.ObserveChanges.get -> bool +Microsoft.Maui.Controls.Handlers.Items.IObservableItemsViewSource.ObserveChanges.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell +Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.ItemsViewCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.PreviousHorizontalOffset -> float +Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.PreviousVerticalOffset -> float +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ConstrainedDimension.get -> System.Runtime.InteropServices.NFloat +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ConstrainedDimension.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.DetermineCellSize() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.UpdateCellConstraints() -> void +Microsoft.Maui.Controls.Handlers.Items.LayoutAttributesChangedEventArgs +Microsoft.Maui.Controls.Handlers.Items.ListViewLayout +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.UpdateCanReorderItems() -> void +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ClearConstraints() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainedDimension -> System.Runtime.InteropServices.NFloat +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainedSize -> CoreGraphics.CGSize +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ContentSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Layout(CoreGraphics.CGSize constraints) -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.LayoutAttributesChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.OnContentSizeChanged() -> void +Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.TemplatedCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.BrushExtensions +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.Compatibility.IShellContext +Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.AllowFlyoutGesture.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.WillAppear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.WillDisappear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutTransition +Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellItemTransition +Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker +Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.IsRootPage.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.IsRootPage.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.IsInMoreTab.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.IsInMoreTab.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer +Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer.ShowNavBar.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellNavBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellNavBarAppearanceTracker.SafeShellNavBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.SafeShellTabBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.UpdateSearchBarColors() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.WillAppear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.WillDisappear -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationCurve.get -> UIKit.UIViewAnimationCurve +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationCurve.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationDuration.get -> int +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.AnimationDuration.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ShellFlyoutRenderer() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemTransition +Microsoft.Maui.Controls.Platform.Compatibility.ShellItemTransition.ShellItemTransition() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.ShellNavBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.IsRootPage.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.IsRootPage.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.DeleteRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.DeleteRowsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.InsertRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.InsertRowsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadRowsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadRowsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadSectionsAnimation.get -> UIKit.UITableViewRowAnimation +Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ReloadSectionsAnimation.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.IsInMoreTab.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.IsInMoreTab.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.LayoutBar() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.SelectedIndex.get -> double +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.SelectedIndex.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.ShellSectionHeaderCell() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.ShellSectionHeaderCell(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionRootHeader() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer +Microsoft.Maui.Controls.Platform.Compatibility.ShellTabBarAppearanceTracker +Microsoft.Maui.Controls.Platform.Compatibility.ShellTabBarAppearanceTracker.ShellTabBarAppearanceTracker() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.LayoutParallax() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.ClearCache() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.ScrolledEvent -> System.EventHandler +Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition +Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition.SlideFlyoutTransition() -> void +Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell +Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.Extensions +Microsoft.Maui.Controls.Platform.FontExtensions +Microsoft.Maui.Controls.Platform.FormattedStringExtensions +Microsoft.Maui.Controls.Platform.LabelExtensions +Microsoft.Maui.Controls.Platform.NavigationPageExtensions +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.ScrollViewExtensions +Microsoft.Maui.Controls.Platform.SearchBarExtensions +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.TextExtensions +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CreatePlatformElement() -> UIKit.UITableViewCell! +override Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.BeginRefreshing() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.Hidden.get -> bool +override Microsoft.Maui.Controls.Handlers.Compatibility.FormsRefreshControl.Hidden.set -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Draw(CoreGraphics.CGRect rect) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.DidRotate(UIKit.UIInterfaceOrientation fromInterfaceOrientation) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewDidAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewDidDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.WillRotate(UIKit.UIInterfaceOrientation toInterfaceOrientation, double duration) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.DidRotate(UIKit.UIInterfaceOrientation fromInterfaceOrientation) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewDidAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewDidDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.UpdateNativeWidget() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.SizeToFit() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.ConstrainTo(CoreGraphics.CGSize constraint) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.Measure() -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.NeedsContentSizeUpdate(Microsoft.Maui.Graphics.Size currentSize) -> (bool, Microsoft.Maui.Graphics.Size) +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.IsHorizontal.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.RegisterViewTypes() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.UpdateVisibility() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.GetVisibleItemsIndex() -> (bool VisibleItems, int First, int Center, int Last) +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.FinalizeCollectionViewUpdates() -> void +override Microsoft.Maui.Controls.Handlers.Items.DefaultCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.CollectionViewContentSize.get -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.RegisterViewTypes() -> void +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.FinalizeCollectionViewUpdates() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.FlipsHorizontallyInOppositeLayoutDirection.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.PrepareLayout() -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ShouldInvalidateLayoutForBoundsChange(CoreGraphics.CGRect newBounds) -> bool +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.TargetContentOffset(CoreGraphics.CGPoint proposedContentOffset, CoreGraphics.CGPoint scrollingVelocity) -> CoreGraphics.CGPoint +override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.TargetContentOffsetForProposedContentOffset(CoreGraphics.CGPoint proposedContentOffset) -> CoreGraphics.CGPoint +override Microsoft.Maui.Controls.Handlers.Items.ListViewLayout.ConstrainTo(CoreGraphics.CGSize size) -> void +override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.DetermineEmptyViewFrame() -> CoreGraphics.CGRect +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.IsHorizontal.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainTo(CoreGraphics.CGSize constraint) -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.ConstrainTo(System.Runtime.InteropServices.NFloat constant) -> void +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Selected.get -> bool +override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Selected.set -> void +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewWillDisappear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ViewWillLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.Frame.get -> CoreGraphics.CGRect +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.Frame.set -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.IntrinsicContentSize.get -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.Selected.get -> bool +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.Selected.set -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewSafeAreaInsetsDidChange() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ViewWillAppear(bool animated) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ViewDidLoad() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ViewSafeAreaInsetsDidChange() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.LayoutSubviews() -> void +override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.LayoutSubviews() -> void +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.Mapper -> Microsoft.Maui.PropertyMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationId(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackground(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackgroundColor(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapIsEnabled(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions.ToCollectionViewScrollPosition(this Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, UIKit.UICollectionViewScrollDirection scrollDirection = UIKit.UICollectionViewScrollDirection.Vertical, bool isLtr = false) -> UIKit.UICollectionViewScrollPosition +static Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions.ToHorizontalCollectionViewScrollPosition(this Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isLtr) -> UIKit.UICollectionViewScrollPosition +static Microsoft.Maui.Controls.Handlers.Items.ScrollToPositionExtensions.ToVerticalCollectionViewScrollPosition(this Microsoft.Maui.Controls.ScrollToPosition scrollToPosition) -> UIKit.UICollectionViewScrollPosition +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Platform.Extensions.ToPlatformModalPresentationStyle(this Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle style) -> UIKit.UIModalPresentationStyle +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToNSAttributedString(this Microsoft.Maui.Controls.FormattedString! formattedString, Microsoft.Maui.IFontManager! fontManager, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> Foundation.NSAttributedString! +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToNSAttributedString(this Microsoft.Maui.Controls.Label! label) -> Foundation.NSAttributedString? +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToNSAttributedString(this Microsoft.Maui.Controls.Span! span, Microsoft.Maui.IFontManager! fontManager, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> Foundation.NSAttributedString! +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.GetCell(Microsoft.Maui.Controls.Cell! item, UIKit.UITableViewCell! reusableCell, UIKit.UITableView! tv) -> UIKit.UITableViewCell! +virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.SetAccessibility(UIKit.UITableViewCell! tableViewCell, Microsoft.Maui.Controls.Cell! cell) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.SetBackgroundColor(UIKit.UITableViewCell! tableViewCell, Microsoft.Maui.Controls.Cell! cell, UIKit.UIColor! color) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SetupLayer() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnCurrentItemChanged() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetElementSize(Microsoft.Maui.Graphics.Size size) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.UpdateBackgroundColor() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.CreateNativeControl() -> TPlatformView! +virtual Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.DisconnectHandler(TPlatformView! oldNativeView) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementPropertyChanged(object! sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationId(string! id) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetBackground(Microsoft.Maui.Controls.Brush! brush) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetBackgroundColor(Microsoft.Maui.Graphics.Color? color) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetImportantForAccessibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetIsEnabled() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateNativeWidget() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ViewController.get -> UIKit.UIViewController? +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.DetermineEmptyViewFrame() -> CoreGraphics.CGRect +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.RegisterViewTypes() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateFlowDirection() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateItemsSource() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateVisibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetVisibleItemsIndex() -> (bool VisibleItems, int First, int Center, int Last) +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateLayout() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.UpdateItemSpacing() -> void +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.UpdateBackground() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnRendererSet() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateTabBarVisible() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateTitle() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateTitleView() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateToolbarItems() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.LoadPages() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnShellSectionSet() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.UpdateTabBarItem() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ResetAppearance() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.UpdateSelectedIndex(bool animated = false) -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.LayoutRenderers() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.LoadRenderers() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.UpdateHeaderVisibility() -> void +virtual Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition.UpdateFlyoutSize(double height, double width) -> bool +virtual Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.Margin.get -> Microsoft.Maui.Thickness +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreateController(TItemsView newElement, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.SelectLayout() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~abstract Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.AttributesConsistentWithConstrainedDimension(UIKit.UICollectionViewLayoutAttributes attributes) -> bool +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Cell.get -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Cell.set -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.CellTableViewCell(UIKit.UITableViewCellStyle style, string key) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.HandlePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.CellTableViewCell.PropertyChanged -> System.Action +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.EntryCellTableViewCell(string cellName) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellTableViewCell.TextField.get -> UIKit.UITextField +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopToRootAsync(Microsoft.Maui.Controls.Page page, bool animated = true) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopViewAsync(Microsoft.Maui.Controls.Page page, bool animated = true) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PushPageAsync(Microsoft.Maui.Controls.Page page, bool animated = true) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetCurrentShellItemController(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer value) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetCurrentShellItemControllerAsync(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer value) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Shell.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.ShellScrollViewTracker.ShellScrollViewTracker(Microsoft.Maui.IPlatformViewHandler renderer) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Element.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.SetElement(Microsoft.Maui.Controls.VisualElement element) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Tabbed.get -> Microsoft.Maui.Controls.TabbedPage +~Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.LongPress(UIKit.UILongPressGestureRecognizer gesture) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.Table -> UIKit.UITableView +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.TableViewModelRenderer(Microsoft.Maui.Controls.TableView model) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.View -> Microsoft.Maui.Controls.TableView +~Microsoft.Maui.Controls.Handlers.Compatibility.UnEvenTableViewModelRenderer.UnEvenTableViewModelRenderer(Microsoft.Maui.Controls.TableView model) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CarouselViewController(Microsoft.Maui.Controls.CarouselView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.CarouselViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, Microsoft.Maui.Controls.Handlers.Items.CarouselViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.CarouselViewLayout(Microsoft.Maui.Controls.ItemsLayout itemsLayout, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.DefaultCell.Constraint.get -> UIKit.NSLayoutConstraint +~Microsoft.Maui.Controls.Handlers.Items.DefaultCell.Constraint.set -> void +~Microsoft.Maui.Controls.Handlers.Items.DefaultCell.Label.get -> UIKit.UILabel +~Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.GridViewLayout(Microsoft.Maui.Controls.GridItemsLayout itemsLayout, Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.GroupableItemsViewController(TItemsView groupableItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GroupableItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GetIndexForItem(object item) -> Foundation.NSIndexPath +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.Group(Foundation.NSIndexPath indexPath) -> object +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.GroupItemsViewSource(Foundation.NSIndexPath indexPath) -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource.this[Foundation.NSIndexPath indexPath].get -> object +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell.InitializeContentConstraints(UIKit.UIView platformView) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CreateMeasurementCell(Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.Delegator.get -> UIKit.UICollectionViewDelegateFlowLayout +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.Delegator.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetItemAtIndex(Foundation.NSIndexPath index) -> object +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsSource.get -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsSource.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsView.get -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsViewController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsViewLayout.get -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.ItemsViewLayout.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.OnFormsElementMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.RemeasureLayout(Microsoft.Maui.Controls.VisualElement formsElement) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateLayout(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout newLayout) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.ItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.ItemsViewLayout.get -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.ViewController.get -> TViewController +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.Controller.get -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.IsIndexPathValid(Foundation.NSIndexPath indexPath) -> bool +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsView.get -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetPrototype.get -> System.Func +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetPrototype.set -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ItemsViewLayout(Microsoft.Maui.Controls.ItemsLayout itemsLayout, Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy = Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.PrepareCellForLayout(Microsoft.Maui.Controls.Handlers.Items.ItemsViewCell cell) -> void +~Microsoft.Maui.Controls.Handlers.Items.LayoutAttributesChangedEventArgs.LayoutAttributesChangedEventArgs(UIKit.UICollectionViewLayoutAttributes newAttributes) -> void +~Microsoft.Maui.Controls.Handlers.Items.LayoutAttributesChangedEventArgs.NewAttributes.get -> UIKit.UICollectionViewLayoutAttributes +~Microsoft.Maui.Controls.Handlers.Items.ListViewLayout.ListViewLayout(Microsoft.Maui.Controls.LinearItemsLayout itemsLayout, Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.ReorderableItemsViewController(TItemsView reorderableItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator.ReorderableItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.SelectableItemsViewController(TItemsView selectableItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator.SelectableItemsViewDelegator(Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout itemsViewLayout, TViewController itemsViewController) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.StructuredItemsViewController(TItemsView structuredItemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.Bind(Microsoft.Maui.Controls.DataTemplate template, object bindingContext, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.CurrentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.OnLayoutAttributesChanged(UIKit.UICollectionViewLayoutAttributes newAttributes) -> void +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateNavBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreatePageRendererTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellFlyoutContentRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellSearchResultsRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateShellSectionRenderer(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CreateTabBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.CurrentShellItemRenderer.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +~Microsoft.Maui.Controls.Platform.Compatibility.IShellContext.Shell.get -> Microsoft.Maui.Controls.Shell +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.AttachFlyout(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, UIKit.UIViewController content) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.View.get -> UIKit.UIView +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutTransition.LayoutViews(CoreGraphics.CGRect bounds, System.Runtime.InteropServices.NFloat openPercent, UIKit.UIView flyout, UIKit.UIView shell, Microsoft.Maui.FlyoutBehavior behavior) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ShellItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ShellItem.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellItemTransition.Transition(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer oldRenderer, Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer newRenderer) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.ResetAppearance(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.SetAppearance(UIKit.UINavigationController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.SetHasShadow(UIKit.UINavigationController controller, bool hasShadow) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker.UpdateLayout(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.Page.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker.ViewController.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.SearchHandler.get -> Microsoft.Maui.Controls.SearchHandler +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.SearchHandler.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker.ResetAppearance(UIKit.UITabBarController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker.SetAppearance(UIKit.UITabBarController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker.UpdateLayout(UIKit.UITabBarController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.SearchHandlerAppearanceTracker.SearchHandlerAppearanceTracker(UIKit.UISearchBar searchBar, Microsoft.Maui.Controls.SearchHandler searchHandler, Microsoft.Maui.IFontManager fontManager) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ShellFlyoutContentRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.FlyoutTransition.get -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutTransition +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.FlyoutTransition.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.NativeView.get -> UIKit.UIView +~Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItem.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItemController.get -> Microsoft.Maui.Controls.IShellItemController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.ShellItemRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellItemTransition.Transition(Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer oldRenderer, Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer newRenderer) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.ResetAppearance(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.SetAppearance(UIKit.UINavigationController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.UpdateLayout(UIKit.UINavigationController controller) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.Page.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.ShellPageRendererTracker(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.TitleViewContainer(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.ViewController.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.ShellSearchResultsRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSectionRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShellSectionRenderer(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, System.Type navigationBarType, System.Type toolbarType) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ShouldPopItem(UIKit.UINavigationBar _, UIKit.UINavigationItem __) -> bool +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSection.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSection.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.Label.get -> UIKit.UILabel +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.SelectedColor.get -> UIKit.UIColor +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.SelectedColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.UnSelectedColor.get -> UIKit.UIColor +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionHeaderCell.UnSelectedColor.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShellSectionRootHeader(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ViewController.get -> UIKit.UIViewController +~Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.ShellSectionRootRenderer(Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.CreateShellTableViewSource() -> Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ShellTableViewController(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView headerView, System.Action onElementSelected) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.ShellTableViewController(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, System.Action onElementSelected) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.Groups.get -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.ShellTableViewSource(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext context, System.Action onElementSelected) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.BindingContext.get -> object +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.BindingContext.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.UIContainerCell(string cellId, Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.UIContainerView(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.AddSubview(UIKit.UIView view) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.HandleCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.SetBackground(Microsoft.Maui.Controls.Brush brush) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ViewController.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ChildViewControllerForHomeIndicatorAutoHidden.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.ChildViewControllerForStatusBarHidden() -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopToRootViewController(bool animated) -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.PopViewController(bool animated) -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ChildViewControllerForHomeIndicatorAutoHidden.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.ChildViewControllerForStatusBarHidden() -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ChildViewControllerForHomeIndicatorAutoHidden.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.ChildViewControllerForStatusBarHidden() -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.SelectedViewController.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.SelectedViewController.set -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetCell(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetHeightForHeader(UIKit.UITableView tableView, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.GetViewForHeader(UIKit.UITableView tableView, nint section) -> UIKit.UIView +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.NumberOfSections(UIKit.UITableView tableView) -> nint +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.RowSelected(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.RowsInSection(UIKit.UITableView tableview, nint section) -> nint +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.SectionIndexTitles(UIKit.UITableView tableView) -> string[] +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.TitleForHeader(UIKit.UITableView tableView, nint section) -> string +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewModelRenderer.WillDisplayHeaderView(UIKit.UITableView tableView, UIKit.UIView headerView, nint section) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.CreateNativeControl() -> UIKit.UITableView +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.TraitCollectionDidChange(UIKit.UITraitCollection previousTraitCollection) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Compatibility.UnEvenTableViewModelRenderer.GetHeightForRow(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.GetCell(Microsoft.Maui.Controls.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.AttributesConsistentWithConstrainedDimension(UIKit.UICollectionViewLayoutAttributes attributes) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CacheCellAttributes(Foundation.NSIndexPath indexPath, CoreGraphics.CGSize size) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.DetermineCellReuseId() -> string +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.DraggingEnded(UIKit.UIScrollView scrollView, bool willDecelerate) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.DraggingStarted(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.GetCell(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.GetItemsCount(UIKit.UICollectionView collectionView, nint section) -> nint +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.DecelerationEnded(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.DraggingEnded(UIKit.UIScrollView scrollView, bool willDecelerate) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.DraggingStarted(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.ScrollAnimationEnded(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewDelegator.Scrolled(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreateController(Microsoft.Maui.Controls.CarouselView newElement, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.CarouselViewController +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.SelectLayout() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewLayout.PrepareForCollectionViewUpdates(UIKit.UICollectionViewUpdateItem[] updateItems) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.GetInvalidationContext(UIKit.UICollectionViewLayoutAttributes preferredAttributes, UIKit.UICollectionViewLayoutAttributes originalAttributes) -> UIKit.UICollectionViewLayoutInvalidationContext +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.HandlePropertyChanged(System.ComponentModel.PropertyChangedEventArgs propertyChanged) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GridViewLayout.LayoutAttributesForElementsInRect(CoreGraphics.CGRect rect) -> UIKit.UICollectionViewLayoutAttributes[] +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewController.GetViewForSupplementaryElement(UIKit.UICollectionView collectionView, Foundation.NSString elementKind, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionReusableView +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GetReferenceSizeForFooter(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> CoreGraphics.CGSize +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.GetReferenceSizeForHeader(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> CoreGraphics.CGSize +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewDelegator.ScrollAnimationEnded(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetCell(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetItemsCount(UIKit.UICollectionView collectionView, nint section) -> nint +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.NumberOfSections(UIKit.UICollectionView collectionView) -> nint +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.CellDisplayingEnded(UIKit.UICollectionView collectionView, UIKit.UICollectionViewCell cell, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetMinimumLineSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetSizeForItem(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, Foundation.NSIndexPath indexPath) -> CoreGraphics.CGSize +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.Scrolled(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ConnectHandler(UIKit.UIView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> UIKit.UIView +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.DisconnectHandler(UIKit.UIView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetInvalidationContext(UIKit.UICollectionViewLayoutAttributes preferredAttributes, UIKit.UICollectionViewLayoutAttributes originalAttributes) -> UIKit.UICollectionViewLayoutInvalidationContext +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.PrepareForCollectionViewUpdates(UIKit.UICollectionViewUpdateItem[] updateItems) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.ShouldInvalidateLayout(UIKit.UICollectionViewLayoutAttributes preferredAttributes, UIKit.UICollectionViewLayoutAttributes originalAttributes) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.CanMoveItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> bool +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController.MoveItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath sourceIndexPath, Foundation.NSIndexPath destinationIndexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator.GetTargetIndexPathForMove(UIKit.UICollectionView collectionView, Foundation.NSIndexPath originalIndexPath, Foundation.NSIndexPath proposedIndexPath) -> Foundation.NSIndexPath +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.ItemDeselected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewController.ItemSelected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator.ItemDeselected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewDelegator.ItemSelected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewController.HandleFormsElementMeasureInvalidated(Microsoft.Maui.Controls.VisualElement formsElement) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.CreateController(TItemsView itemsView, Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout layout) -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewController +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.SelectLayout() -> Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout +~override Microsoft.Maui.Controls.Handlers.Items.TemplatedCell.PreferredLayoutAttributesFittingAttributes(UIKit.UICollectionViewLayoutAttributes layoutAttributes) -> UIKit.UICollectionViewLayoutAttributes +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.SelectedViewController.get -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.SelectedViewController.set -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.TitleViewContainer.WillMoveToSuperview(UIKit.UIView newSuper) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.GetCell(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.NumberOfSections(UIKit.UITableView tableView) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.RowSelected(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSearchResultsRenderer.RowsInSection(UIKit.UITableView tableView, nint section) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PopToRootViewController(bool animated) -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PopToViewController(UIKit.UIViewController viewController, bool animated) -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PopViewController(bool animated) -> UIKit.UIViewController +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.PushViewController(UIKit.UIViewController viewController, bool animated) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewControllers.get -> UIKit.UIViewController[] +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.ViewControllers.set -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.CanMoveItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> bool +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.GetCell(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> UIKit.UICollectionViewCell +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.GetItemsCount(UIKit.UICollectionView collectionView, nint section) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ItemDeselected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ItemSelected(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.NumberOfSections(UIKit.UICollectionView collectionView) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.ShouldSelectItem(UIKit.UICollectionView collectionView, Foundation.NSIndexPath indexPath) -> bool +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetCell(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> UIKit.UITableViewCell +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetHeightForFooter(UIKit.UITableView tableView, nint section) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetHeightForRow(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> System.Runtime.InteropServices.NFloat +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.GetViewForFooter(UIKit.UITableView tableView, nint section) -> UIKit.UIView +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.NumberOfSections(UIKit.UITableView tableView) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.RowSelected(UIKit.UITableView tableView, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.RowsInSection(UIKit.UITableView tableview, nint section) -> nint +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.Scrolled(UIKit.UIScrollView scrollView) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.WillDisplay(UIKit.UITableView tableView, UIKit.UITableViewCell cell, Foundation.NSIndexPath indexPath) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView.WillMoveToSuperview(UIKit.UIView newSuper) -> void +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~readonly Microsoft.Maui.Controls.Handlers.Items.CarouselViewController.Carousel -> Microsoft.Maui.Controls.CarouselView +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.IButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityElementsHidden(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, bool? _defaultAccessibilityElementsHidden = null) -> bool? +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityHint(this UIKit.UIBarItem Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityHint = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityHint(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityHint = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityLabel(this UIKit.UIBarItem Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityLabel = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityLabel(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, string _defaultAccessibilityLabel = null) -> string +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetAccessibilityProperties(this UIKit.UIView nativeViewElement, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.AccessibilityExtensions.SetIsAccessibilityElement(this UIKit.UIView Control, Microsoft.Maui.Controls.Element Element, bool? _defaultIsAccessibilityElement = null) -> bool? +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.ToolbarItemExtensions.ToUIBarButtonItem(this Microsoft.Maui.Controls.ToolbarItem item, bool forceName = false, bool forcePrimary = false) -> UIKit.UIBarButtonItem +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.ToolbarItemExtensions.ToUIBarButtonItem(this Microsoft.Maui.Controls.ToolbarItem item, bool forceName) -> UIKit.UIBarButtonItem +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.Descendants(this UIKit.UIView self) -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.GetSizeRequest(this UIKit.UIView self, double widthConstraint, double heightConstraint, double minimumWidth = -1, double minimumHeight = -1) -> Microsoft.Maui.SizeRequest +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetBinding(this UIKit.UIView self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetBinding(this UIKit.UIView view, string propertyName, Microsoft.Maui.Controls.BindingBase bindingBase, string updateSourceEventName = null) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetBindingContext(this UIKit.UIView target, object bindingContext, System.Func> getChildren = null) -> void +~static Microsoft.Maui.Controls.Compatibility.Platform.iOS.UIViewExtensions.SetValue(this UIKit.UIView target, Microsoft.Maui.Controls.BindableProperty targetProperty, object value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DatePicker.MapUpdateMode(Microsoft.Maui.Handlers.DatePickerHandler handler, Microsoft.Maui.Controls.DatePicker datePicker) -> void +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element view) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapAdjustsFontSizeToFitWidth(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Entry.MapCursorColor(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselTemplatedCell.ReuseId -> Foundation.NSString +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapLoop(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers.GenerateIndexPathRange(int section, int startIndex, int count) -> Foundation.NSIndexPath[] +~static Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers.GenerateLoopedIndexPathRange(int section, int sectionCount, int iterations, int startIndex, int count) -> Foundation.NSIndexPath[] +~static Microsoft.Maui.Controls.Handlers.Items.IndexPathHelpers.IsIndexPathValid(this Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource source, Foundation.NSIndexPath indexPath) -> bool +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapCharacterSpacing(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapFont(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapLineHeight(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextColor(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextDecorations(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.MapIsNavigationBarTranslucent(Microsoft.Maui.Handlers.NavigationViewHandler handler, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.NavigationPage.MapPrefersLargeTitles(Microsoft.Maui.Handlers.NavigationViewHandler handler, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Picker.MapUpdateMode(Microsoft.Maui.Handlers.PickerHandler handler, Microsoft.Maui.Controls.Picker picker) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.GetBackgroundImage(this UIKit.UIView control, Microsoft.Maui.Controls.Brush brush) -> UIKit.UIImage +~static Microsoft.Maui.Controls.Platform.BrushExtensions.GetBackgroundLayer(this UIKit.UIView control, Microsoft.Maui.Controls.Brush brush) -> CoreAnimation.CALayer +~static Microsoft.Maui.Controls.Platform.BrushExtensions.InsertBackgroundLayer(this CoreAnimation.CALayer layer, CoreAnimation.CALayer backgroundLayer, int index = -1) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.InsertBackgroundLayer(this UIKit.UIView view, CoreAnimation.CALayer backgroundLayer, int index = -1) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.RemoveBackgroundLayer(this CoreAnimation.CALayer layer) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.RemoveBackgroundLayer(this UIKit.UIView view) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackground(this UIKit.UIView control, Microsoft.Maui.Controls.Brush brush) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.UpdateBackgroundLayer(this UIKit.UIView view) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this UIKit.UIButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateLineBreakMode(this UIKit.UIButton nativeButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdatePadding(this UIKit.UIButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateText(this UIKit.UIButton platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.FontExtensions.ToUIFont(this Microsoft.Maui.Font self, Microsoft.Maui.IFontManager fontManager) -> UIKit.UIFont +~static Microsoft.Maui.Controls.Platform.FontExtensions.ToUIFont(this TFontElement fontElement) -> UIKit.UIFont +~static Microsoft.Maui.Controls.Platform.LabelExtensions.UpdateText(this UIKit.UILabel platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.NavigationPageExtensions.UpdateIsNavigationBarTranslucent(this UIKit.UINavigationController platformView, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.Platform.NavigationPageExtensions.UpdatePrefersLargeTitles(this UIKit.UINavigationController platformView, Microsoft.Maui.Controls.NavigationPage navigationPage) -> void +~static Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions.OnThisPlatform(this T element) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.Platform.ScrollViewExtensions.UpdateShouldDelayContentTouches(this UIKit.UIScrollView platformView, Microsoft.Maui.Controls.ScrollView scrollView) -> void +~static Microsoft.Maui.Controls.Platform.SearchBarExtensions.UpdateSearchBarStyle(this UIKit.UISearchBar uiSearchBar, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.Platform.SearchBarExtensions.UpdateText(this UIKit.UISearchBar uiSearchBar, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateAdjustsFontSizeToFitWidth(this UIKit.UITextField textField, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateCursorColor(this UIKit.UITextField textField, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateLineBreakMode(this UIKit.UILabel platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateMaxLines(this UIKit.UILabel platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateText(this UIKit.UITextField textField, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateText(this UIKit.UITextView textView, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButton.MapContent(Microsoft.Maui.Handlers.RadioButtonHandler handler, Microsoft.Maui.Controls.RadioButton radioButton) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.ScrollView.MapShouldDelayContentTouches(Microsoft.Maui.Handlers.ScrollViewHandler handler, Microsoft.Maui.Controls.ScrollView scrollView) -> void +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapSearchBarStyle(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TimePicker.MapUpdateMode(Microsoft.Maui.Handlers.TimePickerHandler handler, Microsoft.Maui.Controls.TimePicker timePicker) -> void +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnPopToRoot(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnPopViewAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateFlyoutRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateNavBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellNavBarAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreatePageRendererTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellPageRendererTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellFlyoutContentRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellFlyoutContentRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellItemRenderer(Microsoft.Maui.Controls.ShellItem item) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellItemTransition() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellItemTransition +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellSearchResultsRenderer() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSearchResultsRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateShellSectionRenderer(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRenderer +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.CreateTabBarAppearanceTracker() -> Microsoft.Maui.Controls.Platform.Compatibility.IShellTabBarAppearanceTracker +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnCurrentItemChangedAsync() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer.OnElementSet(Microsoft.Maui.Controls.Shell element) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.GetIcon(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task> +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TabbedRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.HandleCellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.HandlePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CacheCellAttributes(Foundation.NSIndexPath indexPath, CoreGraphics.CGSize size) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CreateDelegator() -> UIKit.UICollectionViewDelegateFlowLayout +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.CreateItemsViewSource() -> Microsoft.Maui.Controls.Handlers.Items.IItemsViewSource +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.DetermineCellReuseId() -> string +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.GetIndexForItem(object item) -> Foundation.NSIndexPath +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.HandleFormsElementMeasureInvalidated(Microsoft.Maui.Controls.VisualElement formsElement) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateDefaultCell(Microsoft.Maui.Controls.Handlers.Items.DefaultCell cell, Foundation.NSIndexPath indexPath) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewController.UpdateTemplatedCell(Microsoft.Maui.Controls.Handlers.Items.TemplatedCell cell, Foundation.NSIndexPath indexPath) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewDelegator.GetVisibleItemsIndexPath() -> (bool VisibleItems, Foundation.NSIndexPath First, Foundation.NSIndexPath Center, Foundation.NSIndexPath Last) +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ScrollToRequested(object sender, Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetInsetForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> UIKit.UIEdgeInsets +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.GetMinimumLineSpacingForSection(UIKit.UICollectionView collectionView, UIKit.UICollectionViewLayout layout, nint section) -> System.Runtime.InteropServices.NFloat +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewLayout.HandlePropertyChanged(System.ComponentModel.PropertyChangedEventArgs propertyChanged) -> void +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.ResetAppearance(UIKit.UITabBarController controller) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.SetAppearance(UIKit.UITabBarController controller, Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SafeShellTabBarAppearanceTracker.UpdateLayout(UIKit.UITabBarController controller) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.CreateShellTableViewController() -> Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutContentRenderer.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutRenderer.OnShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.DidShowViewController(UIKit.UINavigationController navigationController, UIKit.UIViewController viewController, bool animated) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnItemsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellItemSet(Microsoft.Maui.Controls.ShellItem shellItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellItemRenderer.UpdateShellAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellNavBarAppearanceTracker.SetHasShadow(UIKit.UINavigationController controller, bool hasShadow) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnBackButtonBehaviorPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnPagePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnPageSet(Microsoft.Maui.Controls.Page oldPage, Microsoft.Maui.Controls.Page newPage) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.OnSearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.RemoveSearchController(UIKit.UINavigationItem navigationItem) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateSearchIsEnabled(UIKit.UISearchController searchController) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellPageRendererTracker.UpdateSearchVisibility(UIKit.UISearchController searchController) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.CreateShellSectionRootRenderer(Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootRenderer +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.HandlePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnDisplayedPageChanged(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnInsertRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnNavigationRequested(object sender, Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPopRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPopToRootRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnPushRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRenderer.OnRemoveRequested(Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.GetCellType() -> System.Type +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootHeader.SetAppearance(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.CreateShellSectionRootHeader(Microsoft.Maui.Controls.Platform.Compatibility.IShellContext shellContext) -> Microsoft.Maui.Controls.Platform.Compatibility.IShellSectionRootHeader +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.HandleShellPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellSectionRootRenderer.OnShellSectionPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.FooterView.get -> UIKit.UIView +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.FooterView.set -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.HeaderView.get -> Microsoft.Maui.Controls.Platform.Compatibility.UIContainerView +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewController.HeaderView.set -> void +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.DefaultItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~virtual Microsoft.Maui.Controls.Platform.Compatibility.ShellTableViewSource.DefaultMenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~virtual Microsoft.Maui.Controls.Platform.Compatibility.SlideFlyoutTransition.LayoutViews(CoreGraphics.CGRect bounds, System.Runtime.InteropServices.NFloat openPercent, UIKit.UIView flyout, UIKit.UIView shell, Microsoft.Maui.FlyoutBehavior behavior) -> void +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..9baa18457065 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt @@ -0,0 +1,13 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SetNeedsLayout() -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size diff --git a/src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..11c8a71f33a3 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Shipped.txt @@ -0,0 +1,7347 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Platform.GestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultFlyoutItemHeight = 60 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultFlyoutItemWidth = 250 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultIconPadding = 15 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultIconSize = 30 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultMargin = 10 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultMenuSize = 40 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultNavBarHeight = 70 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultTitleFontSize = 23 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.DefaultTitleMargin = 23 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.TV.DefaultFlyoutIconColumnSize = 40 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.TV.DefaultFlyoutIconSize = 25 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.TV.DefaultFlyoutItemfontSize = 25 -> int +const Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.TV.DefaultMenuSize = 70 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor +Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor.EmptyItemAdaptor(Microsoft.Maui.Controls.ItemsView! itemsView) -> void +Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor.EmptyItemAdaptor(Microsoft.Maui.Controls.ItemsView! itemsView, System.Collections.IEnumerable! items, Microsoft.Maui.Controls.DataTemplate! template) -> void +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemDefaultTemplateAdaptor +Microsoft.Maui.Controls.Handlers.Items.ItemDefaultTemplateAdaptor.ItemDefaultTemplateAdaptor(Microsoft.Maui.Controls.ItemsView! itemsView) -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.Element.get -> Microsoft.Maui.Controls.Element! +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.Element.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.GetTemplatedView(ElmSharp.EvasObject! evasObject) -> Microsoft.Maui.Controls.View! +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.GetTemplatedView(int index) -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate! +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.ItemTemplate.set -> void +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.ItemTemplateAdaptor(Microsoft.Maui.Controls.ItemsView! itemsView) -> void +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.ItemTemplateAdaptor(Microsoft.Maui.Controls.ItemsView! itemsView, System.Collections.IEnumerable! items, Microsoft.Maui.Controls.DataTemplate! template) -> void +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.SendItemSelected(object! selectedItem) -> void +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor._footerCache -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor._headerCache -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.ShellHandler +Microsoft.Maui.Controls.Handlers.ShellHandler.ShellHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.CollectionViewExtensions +Microsoft.Maui.Controls.Platform.DragDropExtensions +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Ask = 4 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Copy = 1 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Description = 7 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Link = 6 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.List = 5 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Move = 2 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Private = 3 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType.Unknown = 0 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.Html = 16 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.Image = 4 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.MarkUp = 2 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.None = 0 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.Targets = -1 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.Text = 1 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType.VCard = 8 -> Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragAcceptCallback +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragIconCreateCallback +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragPositionCallback +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragStateCallback +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DropCallback +Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.Interop() -> void +Microsoft.Maui.Controls.Platform.DragGestureHandler +Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData +Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData.AcceptedOperation.set -> void +Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData.CustomDragStateData() -> void +Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomWindow +Microsoft.Maui.Controls.Platform.DragGestureHandler.ResetCurrentStateData() -> void +Microsoft.Maui.Controls.Platform.DropGestureHandler +Microsoft.Maui.Controls.Platform.DropGestureHandler.AddDropGesture() -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.FontExtensions +Microsoft.Maui.Controls.Platform.GestureHandler +Microsoft.Maui.Controls.Platform.GestureHandler.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Platform.IGestureController +Microsoft.Maui.Controls.Platform.IShellSectionHandler +Microsoft.Maui.Controls.Platform.IShellSectionHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PanGestureHandler +Microsoft.Maui.Controls.Platform.PinchGestureHandler +Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.SearchBarExtensions +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.ShellExtensions +Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor +Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.HasHeader.get -> bool +Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.HasHeader.set -> void +Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.Shell.get -> Microsoft.Maui.Controls.Shell! +Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.ShellFlyoutItemAdaptor(Microsoft.Maui.Controls.Shell! shell, Microsoft.Maui.IMauiContext! context, System.Collections.IEnumerable! items, bool hasHeader) -> void +Microsoft.Maui.Controls.Platform.ShellItemView +Microsoft.Maui.Controls.Platform.ShellItemView.Dispose() -> void +Microsoft.Maui.Controls.Platform.ShellItemView.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Platform.ShellItemView.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellItemView.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellItemView.ShellItemView(Microsoft.Maui.Controls.ShellItem! item, Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Controls.Platform.ShellItemView.TabBarBackgroundColor.get -> ElmSharp.Color +Microsoft.Maui.Controls.Platform.ShellItemView.TabBarBackgroundColor.set -> void +Microsoft.Maui.Controls.Platform.ShellItemView.TabBarTitleColor.get -> ElmSharp.Color +Microsoft.Maui.Controls.Platform.ShellItemView.TabBarTitleColor.set -> void +Microsoft.Maui.Controls.Platform.ShellItemView.~ShellItemView() -> void +Microsoft.Maui.Controls.Platform.ShellMoreTabs +Microsoft.Maui.Controls.Platform.ShellMoreTabs.HeightRequest.get -> int +Microsoft.Maui.Controls.Platform.ShellNavBar +Microsoft.Maui.Controls.Platform.ShellNavBar.Dispose() -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Platform.ShellNavBar.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.ForegroundColor.get -> ElmSharp.Color +Microsoft.Maui.Controls.Platform.ShellNavBar.ForegroundColor.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.HasBackButton.get -> bool +Microsoft.Maui.Controls.Platform.ShellNavBar.HasBackButton.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Controls.Platform.ShellNavBar.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellNavBar.SearchHandler.get -> Microsoft.Maui.Controls.SearchHandler? +Microsoft.Maui.Controls.Platform.ShellNavBar.SearchHandler.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.SetPage(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.ShellController.get -> Microsoft.Maui.Controls.IShellController! +Microsoft.Maui.Controls.Platform.ShellNavBar.ShellNavBar(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.Title.get -> string! +Microsoft.Maui.Controls.Platform.ShellNavBar.Title.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.TitleColor.get -> ElmSharp.Color +Microsoft.Maui.Controls.Platform.ShellNavBar.TitleColor.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.TitleView.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Platform.ShellNavBar.TitleView.set -> void +Microsoft.Maui.Controls.Platform.ShellNavBar.~ShellNavBar() -> void +Microsoft.Maui.Controls.Platform.ShellSearchResultList +Microsoft.Maui.Controls.Platform.ShellSearchResultList.Height.get -> int +Microsoft.Maui.Controls.Platform.ShellSearchResultList.UpdateLayout() -> void +Microsoft.Maui.Controls.Platform.ShellSearchView +Microsoft.Maui.Controls.Platform.ShellSearchView.Dispose() -> void +Microsoft.Maui.Controls.Platform.ShellSearchView.Element.get -> Microsoft.Maui.Controls.SearchHandler! +Microsoft.Maui.Controls.Platform.ShellSearchView.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Controls.Platform.ShellSearchView.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellSearchView.PlatformView.get -> ElmSharp.EvasObject? +Microsoft.Maui.Controls.Platform.ShellSearchView.ShellSearchView(Microsoft.Maui.Controls.SearchHandler! searchHandler, Microsoft.Maui.IMauiContext? context) -> void +Microsoft.Maui.Controls.Platform.ShellSearchView.~ShellSearchView() -> void +Microsoft.Maui.Controls.Platform.ShellSectionHandler +Microsoft.Maui.Controls.Platform.ShellSectionHandler.Dispose() -> void +Microsoft.Maui.Controls.Platform.ShellSectionHandler.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Platform.ShellSectionHandler.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellSectionHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellSectionHandler.ShellSection.get -> Microsoft.Maui.Controls.ShellSection! +Microsoft.Maui.Controls.Platform.ShellSectionHandler.ShellSectionHandler(Microsoft.Maui.Controls.ShellSection! section, Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Controls.Platform.ShellSectionHandler.ToolbarBackgroundColor.get -> ElmSharp.Color +Microsoft.Maui.Controls.Platform.ShellSectionHandler.ToolbarBackgroundColor.set -> void +Microsoft.Maui.Controls.Platform.ShellSectionHandler.ToolbarForegroundColor.get -> ElmSharp.Color +Microsoft.Maui.Controls.Platform.ShellSectionHandler.ToolbarForegroundColor.set -> void +Microsoft.Maui.Controls.Platform.ShellSectionHandler.~ShellSectionHandler() -> void +Microsoft.Maui.Controls.Platform.ShellSectionStack +Microsoft.Maui.Controls.Platform.ShellSectionStack.Dispose() -> void +Microsoft.Maui.Controls.Platform.ShellSectionStack.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Controls.Platform.ShellSectionStack.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellSectionStack.ShellSectionStack(Microsoft.Maui.Controls.ShellSection! section, Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Controls.Platform.ShellSectionStack.~ShellSectionStack() -> void +Microsoft.Maui.Controls.Platform.ShellView +Microsoft.Maui.Controls.Platform.ShellView.Element.get -> Microsoft.Maui.Controls.Shell? +Microsoft.Maui.Controls.Platform.ShellView.HeaderOnMenu.get -> bool +Microsoft.Maui.Controls.Platform.ShellView.ItemsView.get -> Tizen.UIExtensions.ElmSharp.CollectionView! +Microsoft.Maui.Controls.Platform.ShellView.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Controls.Platform.ShellView.NavigationView.get -> Tizen.UIExtensions.ElmSharp.INavigationView! +Microsoft.Maui.Controls.Platform.ShellView.OnDrawerToggled(object? sender, System.EventArgs! e) -> void +Microsoft.Maui.Controls.Platform.ShellView.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.ShellView.ShellView(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Controls.Platform.SimpleViewStack +Microsoft.Maui.Controls.Platform.SimpleViewStack.Pop() -> void +Microsoft.Maui.Controls.Platform.SimpleViewStack.PopToRoot() -> void +Microsoft.Maui.Controls.Platform.SwipeGestureHandler +Microsoft.Maui.Controls.Platform.TapGestureHandler +Microsoft.Maui.Controls.Platform.TextExtensions +Microsoft.Maui.Controls.Platform.ThemeConstants +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.ColorClass +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.ColorClass.ColorClass() -> void +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.ColorClass.TV +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.ColorClass.TV.TV() -> void +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.Resources() -> void +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.TV +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Resources.TV.TV() -> void +Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.Shell() -> void +Microsoft.Maui.Controls.Platform.ThemeConstants.ThemeConstants() -> void +Microsoft.Maui.Controls.Platform.ThemeManager +Microsoft.Maui.Controls.Platform.TVShellItemAdaptor +Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.DefaultTemplate.get -> Microsoft.Maui.Controls.DataTemplate! +Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.TVShellItemAdaptor(Microsoft.Maui.Controls.Element! element, Tizen.UIExtensions.ElmSharp.INavigationView? nv, Microsoft.Maui.IMauiContext! context, System.Collections.IEnumerable! items, bool isCollapsed) -> void +Microsoft.Maui.Controls.Platform.TVShellItemView +Microsoft.Maui.Controls.Platform.TVShellSectionHandler +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.Dispose() -> void +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.ItemsView.get -> Tizen.UIExtensions.ElmSharp.CollectionView? +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.ShellSection.get -> Microsoft.Maui.Controls.ShellSection! +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.TVShellSectionHandler(Microsoft.Maui.Controls.ShellSection! section, Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Controls.Platform.TVShellSectionHandler.~TVShellSectionHandler() -> void +Microsoft.Maui.Controls.Platform.TVShellSectionStack +Microsoft.Maui.Controls.Platform.TVShellView +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor.CreateNativeView(int index, ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject! +override Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor.MeasureItem(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor.RemoveNativeView(ElmSharp.EvasObject! native) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.CreateNativeView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.CreateNativeView(int index, ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.GetFooterView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.GetHeaderView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.GetViewCategory(int index) -> object! +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.MeasureFooter(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.MeasureHeader(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.MeasureItem(int index, int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.MeasureItem(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.RemoveNativeView(ElmSharp.EvasObject! native) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.SetBinding(ElmSharp.EvasObject! native, int index) -> void +override Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.UnBinding(ElmSharp.EvasObject! native) -> void +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Platform.DragGestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +override Microsoft.Maui.Controls.Platform.DropGestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +override Microsoft.Maui.Controls.Platform.PanGestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +override Microsoft.Maui.Controls.Platform.PinchGestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.CreateNativeView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.CreateNativeView(int index, ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.GetFooterView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.GetHeaderView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.MeasureFooter(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.MeasureHeader(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.MeasureItem(int index, int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.MeasureItem(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.RemoveNativeView(ElmSharp.EvasObject! platformView) -> void +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.SetBinding(ElmSharp.EvasObject! platformView, int index) -> void +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.UnBinding(ElmSharp.EvasObject! platformView) -> void +override Microsoft.Maui.Controls.Platform.ShellNavBar.BackgroundColor.get -> ElmSharp.Color +override Microsoft.Maui.Controls.Platform.ShellNavBar.BackgroundColor.set -> void +override Microsoft.Maui.Controls.Platform.SwipeGestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +override Microsoft.Maui.Controls.Platform.TapGestureHandler.Type.get -> ElmSharp.GestureLayer.GestureType +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.CreateNativeView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.CreateNativeView(int index, ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.GetFooterView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.GetHeaderView(ElmSharp.EvasObject! parent) -> ElmSharp.EvasObject? +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.MeasureFooter(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.MeasureHeader(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.MeasureItem(int index, int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.MeasureItem(int widthConstraint, int heightConstraint) -> ElmSharp.Size +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.RemoveNativeView(ElmSharp.EvasObject! native) -> void +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.SetBinding(ElmSharp.EvasObject! native, int index) -> void +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.UnBinding(ElmSharp.EvasObject! native) -> void +override Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.UpdateViewState(ElmSharp.EvasObject! native, Tizen.UIExtensions.ElmSharp.ViewHolderState state) -> void +override Microsoft.Maui.Controls.Platform.TVShellItemView.UpdateTabsItems() -> void +override Microsoft.Maui.Controls.Platform.TVShellSectionStack.NavBarIsVisible.get -> bool +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler! handler, Microsoft.Maui.Controls.Element! element) -> void +static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler! handler, Microsoft.Maui.Controls.Element! element) -> void +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor.Create(Microsoft.Maui.Controls.ItemsView! itemsView) -> Microsoft.Maui.Controls.Handlers.Items.EmptyItemAdaptor! +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Platform.CollectionViewExtensions.ToPlatform(this Microsoft.Maui.Controls.ItemSizingStrategy itemSizingStrategy) -> Tizen.UIExtensions.ElmSharp.ItemSizingStrategy +static Microsoft.Maui.Controls.Platform.CollectionViewExtensions.ToPlatform(this Microsoft.Maui.Controls.SelectionMode selectionMode) -> Tizen.UIExtensions.ElmSharp.CollectionViewSelectionMode +static Microsoft.Maui.Controls.Platform.CollectionViewExtensions.ToPlatform(this Microsoft.Maui.Controls.SnapPointsType snapPointsType) -> Tizen.UIExtensions.ElmSharp.SnapPointsType +static Microsoft.Maui.Controls.Platform.SearchBarExtensions.ToPlatform(this Microsoft.Maui.Controls.FontAttributes fontAttribute) -> Tizen.UIExtensions.Common.FontAttributes +static Microsoft.Maui.Controls.Platform.ShellExtensions.ToPlatform(this Microsoft.Maui.FlyoutBehavior behavior) -> Tizen.UIExtensions.Common.DrawerBehavior +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Platform.ShellView.DefaultBackgroundColor -> ElmSharp.Color +static readonly Microsoft.Maui.Controls.Platform.ShellView.DefaultForegroundColor -> ElmSharp.Color +static readonly Microsoft.Maui.Controls.Platform.ShellView.DefaultTitleColor -> ElmSharp.Color +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.CreateFooterView() -> Microsoft.Maui.Controls.View? +virtual Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.CreateHeaderView() -> Microsoft.Maui.Controls.View? +virtual Microsoft.Maui.Controls.Handlers.Items.ItemTemplateAdaptor.IsSelectable.get -> bool +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Platform.GestureHandler.Timeout.get -> double +virtual Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.DefaultItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate? +virtual Microsoft.Maui.Controls.Platform.ShellFlyoutItemAdaptor.DefaultMenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate? +virtual Microsoft.Maui.Controls.Platform.ShellItemView.CreateShellSectionStack(Microsoft.Maui.Controls.ShellSection! section) -> Microsoft.Maui.Controls.Platform.ShellSectionStack! +virtual Microsoft.Maui.Controls.Platform.ShellItemView.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.ShellItemView.UpdateTabsItems() -> void +virtual Microsoft.Maui.Controls.Platform.ShellNavBar.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.ShellSearchView.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.ShellSectionHandler.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.ShellSectionHandler.TabBarIsVisible.get -> bool +virtual Microsoft.Maui.Controls.Platform.ShellSectionHandler.TabBarIsVisible.set -> void +virtual Microsoft.Maui.Controls.Platform.ShellSectionStack.CreateShellSectionView(Microsoft.Maui.Controls.ShellSection! section) -> Microsoft.Maui.Controls.Platform.IShellSectionHandler! +virtual Microsoft.Maui.Controls.Platform.ShellSectionStack.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.ShellSectionStack.NavBarIsVisible.get -> bool +virtual Microsoft.Maui.Controls.Platform.ShellSectionStack.NavBarIsVisible.set -> void +virtual Microsoft.Maui.Controls.Platform.ShellSectionStack.OnPagePropertyChanged(object? sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.BuildMenu() -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.CreateItemsView() -> Tizen.UIExtensions.ElmSharp.CollectionView! +virtual Microsoft.Maui.Controls.Platform.ShellView.CreateNavigationDrawer() -> Tizen.UIExtensions.ElmSharp.INavigationDrawer! +virtual Microsoft.Maui.Controls.Platform.ShellView.CreateNavigationView() -> Tizen.UIExtensions.ElmSharp.INavigationView! +virtual Microsoft.Maui.Controls.Platform.ShellView.CreateShellItemView(Microsoft.Maui.Controls.ShellItem! item) -> Microsoft.Maui.Controls.Platform.ShellItemView! +virtual Microsoft.Maui.Controls.Platform.ShellView.GetItemAdaptor(System.Collections.IEnumerable! items) -> Tizen.UIExtensions.ElmSharp.ItemAdaptor! +virtual Microsoft.Maui.Controls.Platform.ShellView.OnElementPropertyChanged(object? sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.SetElement(Microsoft.Maui.Controls.Shell! shell, Microsoft.Maui.IMauiContext! context) -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.UpdateFlyoutBehavior() -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.UpdateFlyoutHeader() -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.UpdateFlyoutIsPresented() -> void +virtual Microsoft.Maui.Controls.Platform.ShellView.UpdateFooter() -> void +virtual Microsoft.Maui.Controls.Platform.TVShellItemAdaptor.IsSelectable.get -> bool +virtual Microsoft.Maui.Controls.Platform.TVShellSectionHandler.CreateItemsView() -> Tizen.UIExtensions.ElmSharp.CollectionView! +virtual Microsoft.Maui.Controls.Platform.TVShellSectionHandler.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.Platform.GestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~abstract Microsoft.Maui.Controls.Platform.GestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~abstract Microsoft.Maui.Controls.Platform.GestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~abstract Microsoft.Maui.Controls.Platform.GestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.LibElementary = "libelementary.so.1" -> string +~const Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.LibEvas = "libevas.so.1" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper, Microsoft.Maui.CommandMapper commandMapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData.DataPackage.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData.DataPackage.set -> void +~Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomWindow.CustomWindow(ElmSharp.EvasObject handle) -> void +~Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomWindow.CustomWindow(ElmSharp.EvasObject parent, System.IntPtr handle) -> void +~Microsoft.Maui.Controls.Platform.DragGestureHandler.DragGestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer, Microsoft.Maui.IViewHandler handler) -> void +~Microsoft.Maui.Controls.Platform.DragGestureHandler.Handler.get -> Microsoft.Maui.IViewHandler +~Microsoft.Maui.Controls.Platform.DropGestureHandler.DropGestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer, Microsoft.Maui.IViewHandler handler) -> void +~Microsoft.Maui.Controls.Platform.DropGestureHandler.Handler.get -> Microsoft.Maui.IViewHandler +~Microsoft.Maui.Controls.Platform.GestureHandler.GestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer) -> void +~Microsoft.Maui.Controls.Platform.GestureHandler.Recognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.Platform.IGestureController.SendCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~Microsoft.Maui.Controls.Platform.IGestureController.SendCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~Microsoft.Maui.Controls.Platform.IGestureController.SendMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~Microsoft.Maui.Controls.Platform.IGestureController.SendStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~Microsoft.Maui.Controls.Platform.PanGestureHandler.PanGestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer) -> void +~Microsoft.Maui.Controls.Platform.PinchGestureHandler.PinchGestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer, Microsoft.Maui.IViewHandler handler) -> void +~Microsoft.Maui.Controls.Platform.ShellMoreTabs.AddItem(Microsoft.Maui.Controls.ShellSection section) -> void +~Microsoft.Maui.Controls.Platform.ShellMoreTabs.NativeParent.get -> ElmSharp.EvasObject +~Microsoft.Maui.Controls.Platform.ShellMoreTabs.ShellMoreTabs(ElmSharp.EvasObject parent) -> void +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.ItemsSource.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.ItemsSource.set -> void +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.MauiContext.get -> Microsoft.Maui.IMauiContext +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.PlatformParent.get -> ElmSharp.EvasObject +~Microsoft.Maui.Controls.Platform.ShellSearchResultList.ShellSearchResultList(Microsoft.Maui.IMauiContext context) -> void +~Microsoft.Maui.Controls.Platform.SimpleViewStack.Insert(ElmSharp.EvasObject before, ElmSharp.EvasObject view) -> void +~Microsoft.Maui.Controls.Platform.SimpleViewStack.Push(ElmSharp.EvasObject view) -> void +~Microsoft.Maui.Controls.Platform.SimpleViewStack.Remove(ElmSharp.EvasObject view) -> void +~Microsoft.Maui.Controls.Platform.SimpleViewStack.SimpleViewStack(ElmSharp.EvasObject parent) -> void +~Microsoft.Maui.Controls.Platform.SimpleViewStack.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Platform.SwipeGestureHandler.SwipeGestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer) -> void +~Microsoft.Maui.Controls.Platform.TapGestureHandler.TapGestureHandler(Microsoft.Maui.Controls.IGestureRecognizer recognizer) -> void +~Microsoft.Maui.Controls.Platform.TVShellItemView.TVShellItemView(Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.IMauiContext context) -> void +~Microsoft.Maui.Controls.Platform.TVShellSectionStack.TVShellSectionStack(Microsoft.Maui.Controls.ShellSection section, Microsoft.Maui.IMauiContext context) -> void +~Microsoft.Maui.Controls.Platform.TVShellView.TVShellView(ElmSharp.EvasObject parent) -> void +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.CollectionView +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.ConnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiShapeView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.ShellHandler.CreatePlatformView() -> Microsoft.Maui.Controls.Platform.ShellView +~override Microsoft.Maui.Controls.Handlers.ShellHandler.SetVirtualView(Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomWindow.CreateHandle(ElmSharp.EvasObject parent) -> System.IntPtr +~override Microsoft.Maui.Controls.Platform.DragGestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DragGestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DragGestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DragGestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DropGestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DropGestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DropGestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.DropGestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PanGestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PanGestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PanGestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PanGestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PinchGestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PinchGestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PinchGestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.PinchGestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.SwipeGestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.SwipeGestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.SwipeGestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.SwipeGestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.TapGestureHandler.OnCanceled(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.TapGestureHandler.OnCompleted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.TapGestureHandler.OnMoved(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.TapGestureHandler.OnStarted(Microsoft.Maui.Controls.View sender, object data) -> void +~override Microsoft.Maui.Controls.Platform.TVShellItemView.CreateShellSectionStack(Microsoft.Maui.Controls.ShellSection section) -> Microsoft.Maui.Controls.Platform.ShellSectionStack +~override Microsoft.Maui.Controls.Platform.TVShellSectionStack.CreateShellSectionView(Microsoft.Maui.Controls.ShellSection section) -> Microsoft.Maui.Controls.Platform.IShellSectionHandler +~override Microsoft.Maui.Controls.Platform.TVShellView.CreateNavigationDrawer() -> Tizen.UIExtensions.ElmSharp.INavigationDrawer +~override Microsoft.Maui.Controls.Platform.TVShellView.CreateNavigationView() -> Tizen.UIExtensions.ElmSharp.INavigationView +~override Microsoft.Maui.Controls.Platform.TVShellView.CreateShellItemView(Microsoft.Maui.Controls.ShellItem item) -> Microsoft.Maui.Controls.Platform.ShellItemView +~override Microsoft.Maui.Controls.Platform.TVShellView.GetItemAdaptor(System.Collections.IEnumerable items) -> Tizen.UIExtensions.ElmSharp.ItemAdaptor +~override Microsoft.Maui.Controls.Platform.TVShellView.SetElement(Microsoft.Maui.Controls.Shell shell, Microsoft.Maui.IMauiContext context) -> void +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.IButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapLoop(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.ShellHandler.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.ShellHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapFont(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextColor(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextDecorations(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this ElmSharp.Button platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Platform.CollectionViewExtensions.UpdateAdaptor(this Tizen.UIExtensions.ElmSharp.CollectionView platformView, Microsoft.Maui.Controls.ItemsView view) -> void +~static Microsoft.Maui.Controls.Platform.CollectionViewExtensions.UpdateItemsLayout(this Tizen.UIExtensions.ElmSharp.CollectionView platformView, Microsoft.Maui.Controls.StructuredItemsView view) -> void +~static Microsoft.Maui.Controls.Platform.CollectionViewExtensions.UpdateItemsSource(this Tizen.UIExtensions.ElmSharp.CollectionView platformView, Microsoft.Maui.Controls.ItemsView view) -> void +~static Microsoft.Maui.Controls.Platform.DragDropExtensions.AddDropTarget(ElmSharp.EvasObject obj, Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType contentType, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragStateCallback enterCallback, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragStateCallback leaveCallback, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragPositionCallback positionCallback, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DropCallback dropCallback) -> void +~static Microsoft.Maui.Controls.Platform.DragDropExtensions.StartDrag(ElmSharp.EvasObject obj, Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropContentType contentType, string data, Microsoft.Maui.Controls.Platform.DragDropExtensions.DragDropActionType actionType, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragIconCreateCallback iconCallback, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragPositionCallback positionCallback, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragAcceptCallback acceptCallback, Microsoft.Maui.Controls.Platform.DragDropExtensions.Interop.DragStateCallback statCallback) -> void +~static Microsoft.Maui.Controls.Platform.DragGestureHandler.CurrentStateData.get -> Microsoft.Maui.Controls.Platform.DragGestureHandler.CustomDragStateData +~static Microsoft.Maui.Controls.Platform.FontExtensions.ToNativeFontFamily(this string self, Microsoft.Maui.IFontManager fontManager) -> string +~static Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions.OnThisPlatform(this T element) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateLineBreakMode(this Tizen.UIExtensions.ElmSharp.Label platformLabel, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Platform.TextExtensions.UpdateText(this Tizen.UIExtensions.ElmSharp.Entry entry, Microsoft.Maui.Controls.InputView inputView) -> void +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultIconPadding(this Microsoft.Maui.Controls.Platform.ShellMoreTabs self) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultIconSize(this Microsoft.Maui.Controls.Platform.ShellMoreTabs self) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultMargin(this Microsoft.Maui.Controls.Platform.ShellNavBar navBar) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultMenuSize(this Microsoft.Maui.Controls.Platform.ShellNavBar navBar) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultNavBarHeight(this Microsoft.Maui.Controls.Platform.ShellNavBar navBar) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultTitleFontSize(this Microsoft.Maui.Controls.Platform.ShellNavBar navBar) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetDefaultTitleVMargin(this Microsoft.Maui.Controls.Platform.ShellNavBar navBar) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutIconColumnSize(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutIconSize(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutItemColor(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutItemFocusedColor(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutItemFontSize(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutItemHeight(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutItemWidth(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> double +~static Microsoft.Maui.Controls.Platform.ThemeManager.GetTvFlyoutMargin(this Tizen.UIExtensions.ElmSharp.INavigationView nav) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.ColorClass.TV.DefaultFlyoutItemColor -> Microsoft.Maui.Graphics.Color +~static readonly Microsoft.Maui.Controls.Platform.ThemeConstants.Shell.ColorClass.TV.DefaultFlyoutItemFocusedColor -> Microsoft.Maui.Graphics.Color +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Platform.DragGestureHandler.Element.get -> Microsoft.Maui.IView +~virtual Microsoft.Maui.Controls.Platform.GestureHandler.OnRecognizerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..97c24524f23f --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-tizen/PublicAPI.Unshipped.txt @@ -0,0 +1,12 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size diff --git a/src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..5ecb38cd3306 --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Shipped.txt @@ -0,0 +1,7397 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.Controls_Core_XamlTypeInfo.XamlMetaDataProvider +Microsoft.Maui.Controls.Controls_Core_XamlTypeInfo.XamlMetaDataProvider.XamlMetaDataProvider() -> void +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.EntryCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRendererCompleted +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRendererCompleted.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRendererCompleted.EntryCellRendererCompleted() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.FrameRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ICellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.ImageCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.ListViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.SwitchCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.TableViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.TextCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.ViewCellRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer.ViewRenderer() -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.get -> bool +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.AutoPackage.set -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ContainerElement.get -> Microsoft.UI.Xaml.FrameworkElement! +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.Control.get -> TPlatformElement? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.Element.get -> TElement? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementChanged -> System.EventHandler!>? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ElementPropertyChanged -> System.EventHandler? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.GeTPlatformElement() -> Microsoft.UI.Xaml.UIElement? +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetElement(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetNativeControl(TPlatformElement! control) -> void +Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRenderer() -> void +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.ShellContentHandler +Microsoft.Maui.Controls.Handlers.ShellContentHandler.ShellContentHandler() -> void +Microsoft.Maui.Controls.Handlers.ShellHandler +Microsoft.Maui.Controls.Handlers.ShellHandler.ShellHandler() -> void +Microsoft.Maui.Controls.Handlers.ShellItemHandler +Microsoft.Maui.Controls.Handlers.ShellItemHandler.ShellItemHandler() -> void +Microsoft.Maui.Controls.Handlers.ShellSectionHandler +Microsoft.Maui.Controls.Handlers.ShellSectionHandler.ShellSectionHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.AccessibilityExtensions +Microsoft.Maui.Controls.Platform.AccessKeyHelper +Microsoft.Maui.Controls.Platform.ActionSheetContent +Microsoft.Maui.Controls.Platform.ActionSheetContent.OptionSelected -> System.EventHandler +Microsoft.Maui.Controls.Platform.AlertDialog +Microsoft.Maui.Controls.Platform.AlertDialog.AlertDialog() -> void +Microsoft.Maui.Controls.Platform.AlertDialog.VerticalScrollBarVisibility.get -> Microsoft.UI.Xaml.Controls.ScrollBarVisibility +Microsoft.Maui.Controls.Platform.AlertDialog.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.Platform.BrushExtensions +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.Compatibility.CaseConverter +Microsoft.Maui.Controls.Platform.Compatibility.CaseConverter.CaseConverter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.CaseConverter.ConvertToUpper.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.CaseConverter.ConvertToUpper.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.CellControl +Microsoft.Maui.Controls.Platform.Compatibility.CellControl.CellControl() -> void +Microsoft.Maui.Controls.Platform.Compatibility.CellControl.IsGroupHeader.get -> bool +Microsoft.Maui.Controls.Platform.Compatibility.CellControl.IsGroupHeader.set -> void +Microsoft.Maui.Controls.Platform.Compatibility.CollapseWhenEmptyConverter +Microsoft.Maui.Controls.Platform.Compatibility.CollapseWhenEmptyConverter.CollapseWhenEmptyConverter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ColorConverter +Microsoft.Maui.Controls.Platform.Compatibility.ColorConverter.ColorConverter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.EntryCellTextBox +Microsoft.Maui.Controls.Platform.Compatibility.EntryCellTextBox.EntryCellTextBox() -> void +Microsoft.Maui.Controls.Platform.Compatibility.HeightConverter +Microsoft.Maui.Controls.Platform.Compatibility.HeightConverter.HeightConverter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.HorizontalTextAlignmentConverter +Microsoft.Maui.Controls.Platform.Compatibility.HorizontalTextAlignmentConverter.HorizontalTextAlignmentConverter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.KeyboardConverter +Microsoft.Maui.Controls.Platform.Compatibility.KeyboardConverter.KeyboardConverter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ListGroupHeaderPresenter +Microsoft.Maui.Controls.Platform.Compatibility.ListGroupHeaderPresenter.ListGroupHeaderPresenter() -> void +Microsoft.Maui.Controls.Platform.Compatibility.ListViewGroupStyleSelector +Microsoft.Maui.Controls.Platform.Compatibility.ListViewGroupStyleSelector.ListViewGroupStyleSelector() -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.FontExtensions +Microsoft.Maui.Controls.Platform.FormattedStringExtensions +Microsoft.Maui.Controls.Platform.GeometryExtensions +Microsoft.Maui.Controls.Platform.IconConverter +Microsoft.Maui.Controls.Platform.IconConverter.IconConverter() -> void +Microsoft.Maui.Controls.Platform.IIconElementHandler +Microsoft.Maui.Controls.Platform.IImageSourceHandler +Microsoft.Maui.Controls.Platform.ImageConverter +Microsoft.Maui.Controls.Platform.ImageConverter.ImageConverter() -> void +Microsoft.Maui.Controls.Platform.InputViewExtensions +Microsoft.Maui.Controls.Platform.ItemContentControl +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemContentControl() -> void +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemHeight.get -> double +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemHeight.set -> void +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemSpacing.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemSpacing.set -> void +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemWidth.get -> double +Microsoft.Maui.Controls.Platform.ItemContentControl.ItemWidth.set -> void +Microsoft.Maui.Controls.Platform.MauiCommandBar +Microsoft.Maui.Controls.Platform.MauiCommandBar.IsInValidLocation.get -> bool +Microsoft.Maui.Controls.Platform.MauiCommandBar.IsInValidLocation.set -> void +Microsoft.Maui.Controls.Platform.MauiCommandBar.MauiCommandBar() -> void +Microsoft.Maui.Controls.Platform.PageControl +Microsoft.Maui.Controls.Platform.PageControl.ContentHeight.get -> double +Microsoft.Maui.Controls.Platform.PageControl.ContentMargin.get -> Microsoft.UI.Xaml.Thickness +Microsoft.Maui.Controls.Platform.PageControl.ContentMargin.set -> void +Microsoft.Maui.Controls.Platform.PageControl.ContentWidth.get -> double +Microsoft.Maui.Controls.Platform.PageControl.PageControl() -> void +Microsoft.Maui.Controls.Platform.PageControl.ShouldShowToolbar.get -> bool +Microsoft.Maui.Controls.Platform.PageControl.ShouldShowToolbar.set -> void +Microsoft.Maui.Controls.Platform.PageControl.TitleInset.get -> double +Microsoft.Maui.Controls.Platform.PageControl.TitleInset.set -> void +Microsoft.Maui.Controls.Platform.PageControl.TitleViewVisibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.Controls.Platform.PageControl.TitleViewVisibility.set -> void +Microsoft.Maui.Controls.Platform.PageControl.TitleVisibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.Controls.Platform.PageControl.TitleVisibility.set -> void +Microsoft.Maui.Controls.Platform.PageControl.ToolbarDynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Platform.PageControl.ToolbarDynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Platform.PageControl.ToolbarPlacement.get -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.Platform.PageControl.ToolbarPlacement.set -> void +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PlatformBindingExtensions +Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.PromptDialog +Microsoft.Maui.Controls.Platform.PromptDialog.MaxLength.get -> int +Microsoft.Maui.Controls.Platform.PromptDialog.MaxLength.set -> void +Microsoft.Maui.Controls.Platform.PromptDialog.PromptDialog() -> void +Microsoft.Maui.Controls.Platform.RefreshViewExtensions +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.ShellFlyoutItemView +Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.IsSelected.get -> bool +Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.IsSelected.set -> void +Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.ShellFlyoutItemView() -> void +Microsoft.Maui.Controls.Platform.ShellFlyoutTemplateSelector +Microsoft.Maui.Controls.Platform.ShellFlyoutTemplateSelector.ShellFlyoutTemplateSelector() -> void +Microsoft.Maui.Controls.Platform.ShellFooterView +Microsoft.Maui.Controls.Platform.ShellHeaderView +Microsoft.Maui.Controls.Platform.ShellToolbarItemView +Microsoft.Maui.Controls.Platform.ShellToolbarItemView.ShellToolbarItemView() -> void +Microsoft.Maui.Controls.Platform.ShellView +Microsoft.Maui.Controls.Platform.ShellView.ShellView() -> void +Microsoft.Maui.Controls.Platform.TransformExtensions +Microsoft.Maui.Controls.Platform.ViewToHandlerConverter +Microsoft.Maui.Controls.Platform.ViewToHandlerConverter.Convert(object! value, System.Type! targetType, object! parameter, string! language) -> object? +Microsoft.Maui.Controls.Platform.ViewToHandlerConverter.ConvertBack(object! value, System.Type! targetType, object! parameter, string! language) -> object! +Microsoft.Maui.Controls.Platform.ViewToHandlerConverter.ViewToHandlerConverter() -> void +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.Platform.VisualElementExtensions +Microsoft.Maui.Controls.Platform.VisualElementTracker +Microsoft.Maui.Controls.Platform.VisualElementTracker.Container.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.Controls.Platform.VisualElementTracker.Container.set -> void +Microsoft.Maui.Controls.Platform.VisualElementTracker.Control.get -> TPlatformElement? +Microsoft.Maui.Controls.Platform.VisualElementTracker.Control.set -> void +Microsoft.Maui.Controls.Platform.VisualElementTracker.Dispose() -> void +Microsoft.Maui.Controls.Platform.VisualElementTracker.Element.get -> TElement? +Microsoft.Maui.Controls.Platform.VisualElementTracker.Element.set -> void +Microsoft.Maui.Controls.Platform.VisualElementTracker.PreventGestureBubbling.get -> bool +Microsoft.Maui.Controls.Platform.VisualElementTracker.PreventGestureBubbling.set -> void +Microsoft.Maui.Controls.Platform.VisualElementTracker.Updated -> System.EventHandler? +Microsoft.Maui.Controls.Platform.VisualElementTracker.VisualElementTracker() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.ArrangeOverride(Windows.Foundation.Size finalSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.UpdateBackground() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.UpdateBackgroundColor() -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.Dispose(bool disposing) -> void +override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.ArrangeOverride(Windows.Foundation.Size finalSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.UpdateItemTemplate() -> void +override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.UpdateItemTemplate() -> void +override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.UpdateItemsSource() -> void +override Microsoft.Maui.Controls.Handlers.ShellItemHandler.ConnectHandler(Microsoft.UI.Xaml.FrameworkElement! platformView) -> void +override Microsoft.Maui.Controls.Handlers.ShellItemHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.FrameworkElement! +override Microsoft.Maui.Controls.Handlers.ShellItemHandler.DisconnectHandler(Microsoft.UI.Xaml.FrameworkElement! platformView) -> void +override Microsoft.Maui.Controls.Handlers.ShellItemHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Controls.Handlers.ShellSectionHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.Frame! platformView) -> void +override Microsoft.Maui.Controls.Handlers.ShellSectionHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Controls.Frame! +override Microsoft.Maui.Controls.Handlers.ShellSectionHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.Frame! platformView) -> void +override Microsoft.Maui.Controls.Handlers.ShellSectionHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Platform.Compatibility.CellControl.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Platform.ItemContentControl.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Platform.MauiCommandBar.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.ArrangeOverride(Windows.Foundation.Size finalSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationId(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesHelpText(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesLabeledBy(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapAutomationPropertiesName(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackground(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapBackgroundColor(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MapIsEnabled(Microsoft.Maui.IPlatformViewHandler! handler, TElement! view) -> void +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.VisualElementRendererMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Handlers.ShellItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.ShellItemHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.ShellItemHandler! handler, Microsoft.Maui.Controls.ShellItem! item) -> void +static Microsoft.Maui.Controls.Handlers.ShellItemHandler.Mapper -> Microsoft.Maui.PropertyMapper! +static Microsoft.Maui.Controls.Handlers.ShellItemHandler.MapTabBarIsVisible(Microsoft.Maui.Controls.Handlers.ShellItemHandler! handler, Microsoft.Maui.Controls.ShellItem! item) -> void +static Microsoft.Maui.Controls.Handlers.ShellSectionHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Controls.Handlers.ShellSectionHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.ShellSectionHandler! handler, Microsoft.Maui.Controls.ShellSection! item) -> void +static Microsoft.Maui.Controls.Handlers.ShellSectionHandler.Mapper -> Microsoft.Maui.PropertyMapper! +static Microsoft.Maui.Controls.Handlers.ShellSectionHandler.RequestNavigation(Microsoft.Maui.Controls.Handlers.ShellSectionHandler! handler, Microsoft.Maui.IStackNavigation! view, object? arg3) -> void +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this Microsoft.UI.Xaml.Controls.Button! mauiButton, Microsoft.Maui.Controls.Button! button) -> void +static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateLineBreakMode(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.Controls.Button! button) -> void +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToRunAndColorsTuple(this Microsoft.Maui.Controls.Span! span, Microsoft.Maui.IFontManager! fontManager, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> System.Tuple! +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.ToRunAndColorsTuples(this Microsoft.Maui.Controls.FormattedString! formattedString, Microsoft.Maui.IFontManager! fontManager, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> System.Collections.Generic.IEnumerable!>! +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.UpdateInlines(this Microsoft.UI.Xaml.Controls.TextBlock! textBlock, Microsoft.Maui.Controls.Label! label) -> void +static Microsoft.Maui.Controls.Platform.FormattedStringExtensions.UpdateInlines(this Microsoft.UI.Xaml.Controls.TextBlock! textBlock, Microsoft.Maui.IFontManager! fontManager, Microsoft.Maui.Controls.FormattedString! formattedString, double defaultLineHeight = 0, Microsoft.Maui.TextAlignment defaultHorizontalAlignment = Microsoft.Maui.TextAlignment.Start, Microsoft.Maui.Font? defaultFont = null, Microsoft.Maui.Graphics.Color? defaultColor = null, Microsoft.Maui.TextTransform defaultTextTransform = Microsoft.Maui.TextTransform.Default) -> void +static Microsoft.Maui.Controls.Platform.VisualElementExtensions.UpdateAccessKey(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Controls.RadioButton.MapContent(Microsoft.Maui.Handlers.RadioButtonHandler! handler, Microsoft.Maui.Controls.RadioButton! radioButton) -> void +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.Toolbar.MapBackButtonEnabled(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBackButtonTitle(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBackButtonVisible(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBarBackground(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapBarTextColor(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapIcon(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapIconColor(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapIsVisible(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapTitleIcon(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapTitleView(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapToolbarDynamicOverflowEnabled(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapToolbarItems(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.Toolbar.MapToolbarPlacement(Microsoft.Maui.Handlers.ToolbarHandler! arg1, Microsoft.Maui.Controls.Toolbar! arg2) -> void +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.MinimumSize() -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.OnElementPropertyChanged(object! sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationId(string! id) -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationPropertiesAccessibilityView() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationPropertiesHelpText() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationPropertiesLabeledBy() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetAutomationPropertiesName() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.SetIsEnabled() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateBackground() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateBackgroundColor() -> void +virtual Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer.UpdateNativeControl() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CleanUpCollectionViewSource() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemCount.get -> int +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateEmptyView() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateEmptyViewVisibility() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateItemsLayout() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateItemsSource() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.UpdateItemTemplate() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.UpdateFooter() -> void +virtual Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.UpdateHeader() -> void +virtual Microsoft.Maui.Controls.Handlers.ShellSectionHandler.CreateNavigationManager() -> Microsoft.Maui.Platform.StackNavigationManager! +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Platform.VisualElementTracker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Controls.Platform.VisualElementTracker.OnPropertyChanged(object? sender, System.ComponentModel.PropertyChangedEventArgs! e) -> void +virtual Microsoft.Maui.Controls.Platform.VisualElementTracker.UpdatePlatformControl() -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.Layout.get -> Microsoft.Maui.Controls.IItemsLayout +~abstract Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.SelectListViewBase() -> Microsoft.UI.Xaml.Controls.ListViewBase +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.Controls_Core_XamlTypeInfo.XamlMetaDataProvider.GetXamlType(string fullName) -> Microsoft.UI.Xaml.Markup.IXamlType +~Microsoft.Maui.Controls.Controls_Core_XamlTypeInfo.XamlMetaDataProvider.GetXamlType(System.Type type) -> Microsoft.UI.Xaml.Markup.IXamlType +~Microsoft.Maui.Controls.Controls_Core_XamlTypeInfo.XamlMetaDataProvider.GetXmlnsDefinitions() -> Microsoft.UI.Xaml.Markup.XmlnsDefinition[] +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRendererCompleted.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRendererCompleted.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Handlers.Compatibility.ICellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.List.get -> Microsoft.UI.Xaml.Controls.ListView +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CollectionViewSource -> Microsoft.UI.Xaml.Data.CollectionViewSource +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.Element.get -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsView.get -> TItemsView +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewTemplate.get -> Microsoft.UI.Xaml.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ListViewBase.get -> Microsoft.UI.Xaml.Controls.ListViewBase +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ViewTemplate.get -> Microsoft.UI.Xaml.DataTemplate +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.Platform.ActionSheetContent.ActionSheetContent(Microsoft.Maui.Controls.Internals.ActionSheetArguments sheetOptions) -> void +~Microsoft.Maui.Controls.Platform.Compatibility.CaseConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.CaseConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.CellControl.Cell.get -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.Platform.Compatibility.CellControl.Cell.set -> void +~Microsoft.Maui.Controls.Platform.Compatibility.CellControl.CellContent.get -> Microsoft.UI.Xaml.FrameworkElement +~Microsoft.Maui.Controls.Platform.Compatibility.CollapseWhenEmptyConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.CollapseWhenEmptyConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.ColorConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.ColorConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.HeightConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.HeightConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.HorizontalTextAlignmentConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.HorizontalTextAlignmentConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.KeyboardConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.Compatibility.KeyboardConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.IconConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.IconConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.IIconElementHandler.LoadIconElementAsync(Microsoft.Maui.Controls.ImageSource imagesource, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.IIconElementHandler.LoadIconSourceAsync(Microsoft.Maui.Controls.ImageSource imagesource, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.IImageSourceHandler.LoadImageAsync(Microsoft.Maui.Controls.ImageSource imagesource, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Platform.ImageConverter.Convert(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.ImageConverter.ConvertBack(object value, System.Type targetType, object parameter, string language) -> object +~Microsoft.Maui.Controls.Platform.ItemContentControl.FormsContainer.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Platform.ItemContentControl.FormsContainer.set -> void +~Microsoft.Maui.Controls.Platform.ItemContentControl.FormsDataContext.get -> object +~Microsoft.Maui.Controls.Platform.ItemContentControl.FormsDataContext.set -> void +~Microsoft.Maui.Controls.Platform.ItemContentControl.FormsDataTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Platform.ItemContentControl.FormsDataTemplate.set -> void +~Microsoft.Maui.Controls.Platform.ItemContentControl.MauiContext.get -> Microsoft.Maui.IMauiContext +~Microsoft.Maui.Controls.Platform.ItemContentControl.MauiContext.set -> void +~Microsoft.Maui.Controls.Platform.PageControl.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Platform.PageControl.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Platform.PageControl.TitleBrush.get -> Microsoft.UI.Xaml.Media.Brush +~Microsoft.Maui.Controls.Platform.PageControl.TitleBrush.set -> void +~Microsoft.Maui.Controls.Platform.PageControl.TitleIcon.get -> Microsoft.UI.Xaml.Media.ImageSource +~Microsoft.Maui.Controls.Platform.PageControl.TitleIcon.set -> void +~Microsoft.Maui.Controls.Platform.PageControl.TitleView.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.Platform.PageControl.TitleView.set -> void +~Microsoft.Maui.Controls.Platform.PageControl.ToolbarBackground.get -> Microsoft.UI.Xaml.Media.Brush +~Microsoft.Maui.Controls.Platform.PageControl.ToolbarBackground.set -> void +~Microsoft.Maui.Controls.Platform.PromptDialog.Input.get -> string +~Microsoft.Maui.Controls.Platform.PromptDialog.Input.set -> void +~Microsoft.Maui.Controls.Platform.PromptDialog.InputScope.get -> Microsoft.UI.Xaml.Input.InputScope +~Microsoft.Maui.Controls.Platform.PromptDialog.InputScope.set -> void +~Microsoft.Maui.Controls.Platform.PromptDialog.Message.get -> string +~Microsoft.Maui.Controls.Platform.PromptDialog.Message.set -> void +~Microsoft.Maui.Controls.Platform.PromptDialog.Placeholder.get -> string +~Microsoft.Maui.Controls.Platform.PromptDialog.Placeholder.set -> void +~Microsoft.Maui.Controls.Platform.ShellFooterView.SetElement(Microsoft.Maui.Controls.Shell shell) -> void +~Microsoft.Maui.Controls.Platform.ShellFooterView.ShellFooterView(Microsoft.Maui.Controls.Shell element) -> void +~Microsoft.Maui.Controls.Platform.ShellHeaderView.SetElement(Microsoft.Maui.Controls.Shell shell) -> void +~Microsoft.Maui.Controls.Platform.ShellHeaderView.ShellHeaderView(Microsoft.Maui.Controls.Shell element) -> void +~Microsoft.Maui.Controls.Platform.ShellToolbarItemView.ToolbarItem.get -> Microsoft.Maui.Controls.ToolbarItem +~Microsoft.Maui.Controls.Platform.ShellToolbarItemView.ToolbarItem.set -> void +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Compatibility.CellRenderer.CreatePlatformElement() -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Handlers.Compatibility.EntryCellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnCreateAutomationPeer() -> Microsoft.UI.Xaml.Automation.Peers.AutomationPeer +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ImageCellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.SwitchCellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer.OnElementChanged(Microsoft.Maui.Controls.Platform.ElementChangedEventArgs e) -> void +~override Microsoft.Maui.Controls.Handlers.Compatibility.TextCellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.GetTemplate(Microsoft.Maui.Controls.Cell cell) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.ComputeVisibleIndexes(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs args, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation, bool advancing) -> Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreateCollectionViewSource() -> Microsoft.UI.Xaml.Data.CollectionViewSource +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.GetCollectionView(Microsoft.UI.Xaml.Data.CollectionViewSource collectionViewSource) -> Microsoft.UI.Xaml.Data.ICollectionView +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Layout.get -> Microsoft.Maui.Controls.IItemsLayout +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.OnScrollViewerFound(Microsoft.UI.Xaml.Controls.ScrollViewer scrollViewer) -> void +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.SelectListViewBase() -> Microsoft.UI.Xaml.Controls.ListViewBase +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreateCollectionViewSource() -> Microsoft.UI.Xaml.Data.CollectionViewSource +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.ListViewBase +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ListViewBase platformView) -> void +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.Layout.get -> Microsoft.Maui.Controls.IItemsLayout +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.SelectListViewBase() -> Microsoft.UI.Xaml.Controls.ListViewBase +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.ConnectHandler(Microsoft.Maui.Graphics.Win2D.W2DGraphicsView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolygonHandler.DisconnectHandler(Microsoft.Maui.Graphics.Win2D.W2DGraphicsView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.ConnectHandler(Microsoft.Maui.Graphics.Win2D.W2DGraphicsView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.PolylineHandler.DisconnectHandler(Microsoft.Maui.Graphics.Win2D.W2DGraphicsView nativeView) -> void +~override Microsoft.Maui.Controls.Handlers.ShellContentHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.FrameworkElement +~override Microsoft.Maui.Controls.Handlers.ShellHandler.ConnectHandler(Microsoft.Maui.Controls.Platform.ShellView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.ShellHandler.CreatePlatformView() -> Microsoft.Maui.Controls.Platform.ShellView +~override Microsoft.Maui.Controls.Handlers.ShellHandler.DisconnectHandler(Microsoft.Maui.Controls.Platform.ShellView platformView) -> void +~override Microsoft.Maui.Controls.Handlers.ShellHandler.SetVirtualView(Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.CellControl.OnCreateAutomationPeer() -> Microsoft.UI.Xaml.Automation.Peers.AutomationPeer +~override Microsoft.Maui.Controls.Platform.Compatibility.EntryCellTextBox.OnKeyUp(Microsoft.UI.Xaml.Input.KeyRoutedEventArgs e) -> void +~override Microsoft.Maui.Controls.Platform.Compatibility.ListViewGroupStyleSelector.SelectGroupStyleCore(object group, uint level) -> Microsoft.UI.Xaml.Controls.GroupStyle +~override Microsoft.Maui.Controls.Platform.ItemContentControl.OnContentChanged(object oldContent, object newContent) -> void +~override Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.OnContentChanged(object oldContent, object newContent) -> void +~override Microsoft.Maui.Controls.Platform.ShellFlyoutTemplateSelector.SelectTemplateCore(object item) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.Platform.ShellFlyoutTemplateSelector.SelectTemplateCore(object item, Microsoft.UI.Xaml.DependencyObject container) -> Microsoft.UI.Xaml.DataTemplate +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapImageSource(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.IButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapDetectReadingOrderFromContent(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element view) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesHelpText(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesLabeledBy(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesName(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapDetectReadingOrderFromContent(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapLoop(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.ShellContentHandler.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.ShellContentHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.ShellHandler.CommandMapper -> Microsoft.Maui.CommandMapper +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyout(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.IFlyoutView flyoutView) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutBackdrop(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutBackground(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutBehavior(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.IFlyoutView flyoutView) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutFooter(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutHeader(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutHeaderBehavior(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutItems(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutVerticalScrollMode(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapFlyoutWidth(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.IFlyoutView flyoutView) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapIsPresented(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.IFlyoutView flyoutView) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.MapItems(Microsoft.Maui.Controls.Handlers.ShellHandler handler, Microsoft.Maui.Controls.Shell view) -> void +~static Microsoft.Maui.Controls.Handlers.ShellHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapDetectReadingOrderFromContent(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetAutomationProperties(this Microsoft.UI.Xaml.FrameworkElement frameworkElement, Microsoft.Maui.Controls.Element element, Microsoft.Maui.IMauiContext mauiContext, string defaultName = null) -> void +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetAutomationPropertiesAccessibilityView(this Microsoft.UI.Xaml.FrameworkElement Control, Microsoft.Maui.Controls.Element Element, Microsoft.UI.Xaml.Automation.Peers.AccessibilityView? _defaultAutomationPropertiesAccessibilityView = null) -> Microsoft.UI.Xaml.Automation.Peers.AccessibilityView? +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetAutomationPropertiesAutomationId(this Microsoft.UI.Xaml.FrameworkElement Control, string id) -> void +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetAutomationPropertiesHelpText(this Microsoft.UI.Xaml.FrameworkElement Control, Microsoft.Maui.Controls.Element Element, string _defaultAutomationPropertiesHelpText = null) -> string +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetAutomationPropertiesLabeledBy(this Microsoft.UI.Xaml.FrameworkElement Control, Microsoft.Maui.Controls.Element Element, Microsoft.Maui.IMauiContext mauiContext, Microsoft.UI.Xaml.UIElement _defaultAutomationPropertiesLabeledBy = null) -> Microsoft.UI.Xaml.UIElement +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetAutomationPropertiesName(this Microsoft.UI.Xaml.FrameworkElement Control, Microsoft.Maui.Controls.Element Element, string _defaultAutomationPropertiesName = null) -> string +~static Microsoft.Maui.Controls.Platform.AccessibilityExtensions.SetBackButtonTitle(this Microsoft.Maui.Controls.Platform.PageControl Control, Microsoft.Maui.Controls.Element Element) -> void +~static Microsoft.Maui.Controls.Platform.AccessKeyHelper.UpdateAccessKey(Microsoft.UI.Xaml.FrameworkElement control, Microsoft.Maui.Controls.VisualElement element) -> void +~static Microsoft.Maui.Controls.Platform.BrushExtensions.ToBrush(this Microsoft.Maui.Controls.Brush brush) -> Microsoft.UI.Xaml.Media.Brush +~static Microsoft.Maui.Controls.Platform.FontExtensions.ApplyFont(this Microsoft.UI.Xaml.Controls.Control self, Microsoft.Maui.Font font, Microsoft.Maui.IFontManager fontManager) -> void +~static Microsoft.Maui.Controls.Platform.FontExtensions.ApplyFont(this Microsoft.UI.Xaml.Controls.TextBlock self, Microsoft.Maui.Font font, Microsoft.Maui.IFontManager fontManager) -> void +~static Microsoft.Maui.Controls.Platform.FontExtensions.ToFontFamily(this string fontFamily, Microsoft.Maui.IFontManager fontManager) -> Microsoft.UI.Xaml.Media.FontFamily +~static Microsoft.Maui.Controls.Platform.GeometryExtensions.ToPlatform(this Microsoft.Maui.Controls.Shapes.Geometry geometry) -> Microsoft.UI.Xaml.Media.Geometry +~static Microsoft.Maui.Controls.Platform.InputViewExtensions.UpdateDetectReadingOrderFromContent(this Microsoft.UI.Xaml.Controls.TextBox platformControl, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Platform.InputViewExtensions.UpdateDetectReadingOrderFromContent(this Microsoft.UI.Xaml.Controls.TextBox platformControl, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.Platform.PlatformBindingExtensions.SetBinding(this Microsoft.UI.Xaml.FrameworkElement view, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~static Microsoft.Maui.Controls.Platform.PlatformBindingExtensions.SetBindingContext(this Microsoft.UI.Xaml.FrameworkElement target, object bindingContext, System.Func> getChildren = null) -> void +~static Microsoft.Maui.Controls.Platform.PlatformBindingExtensions.SetValue(this Microsoft.UI.Xaml.FrameworkElement target, Microsoft.Maui.Controls.BindableProperty targetProperty, object value) -> void +~static Microsoft.Maui.Controls.Platform.PlatformConfigurationExtensions.OnThisPlatform(this T element) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.Platform.RefreshViewExtensions.UpdateRefreshPullDirection(this Microsoft.UI.Xaml.Controls.RefreshContainer refreshContainer, Microsoft.Maui.Controls.RefreshView refreshView) -> void +~static Microsoft.Maui.Controls.Platform.TransformExtensions.ToWindows(this Microsoft.Maui.Controls.Shapes.Transform transform) -> Microsoft.UI.Xaml.Media.MatrixTransform +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RefreshView.MapRefreshPullDirection(Microsoft.Maui.Handlers.RefreshViewHandler handler, Microsoft.Maui.Controls.RefreshView refreshView) -> void +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapAccessKey(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapAccessKeyHorizontalOffset(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapAccessKeyPlacement(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapAccessKeyVerticalOffset(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Platform.Compatibility.CellControl.CellProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.Compatibility.CellControl.IsGroupHeaderProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.FormsContainerProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.FormsDataContextProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.FormsDataTemplateProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.ItemHeightProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.ItemSpacingProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.ItemWidthProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ItemContentControl.MauiContextProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.BackButtonTitleProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.ContentMarginProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.TitleBrushProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.TitleIconProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.TitleInsetProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.TitleViewProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.TitleViewVisibilityProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.TitleVisibilityProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.PageControl.ToolbarBackgroundProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ShellFlyoutItemView.IsSelectedProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.Platform.ShellToolbarItemView.ToolbarItemProperty -> Microsoft.UI.Xaml.DependencyProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ComputeVisibleIndexes(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs args, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation, bool advancing) -> Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreateCollectionViewSource() -> Microsoft.UI.Xaml.Data.CollectionViewSource +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.GetCollectionView(Microsoft.UI.Xaml.Data.CollectionViewSource collectionViewSource) -> Microsoft.UI.Xaml.Data.ICollectionView +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.GetItem(int index) -> object +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.OnScrollViewerFound(Microsoft.UI.Xaml.Controls.ScrollViewer scrollViewer) -> void +~virtual Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ScrollTo(Microsoft.Maui.Controls.ScrollToRequestEventArgs args) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Platform.ShellView.CreateShellFlyoutTemplateSelector() -> Microsoft.Maui.Controls.Platform.ShellFlyoutTemplateSelector +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..97c24524f23f --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net-windows/PublicAPI.Unshipped.txt @@ -0,0 +1,12 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size diff --git a/src/Controls/src/Core/PublicAPI/net/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/net/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..fe3182e1bd7b --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net/PublicAPI.Shipped.txt @@ -0,0 +1,6957 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapLoop(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this object platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/net/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/net/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..97c24524f23f --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/net/PublicAPI.Unshipped.txt @@ -0,0 +1,12 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size diff --git a/src/Controls/src/Core/PublicAPI/netstandard/PublicAPI.Shipped.txt b/src/Controls/src/Core/PublicAPI/netstandard/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..fe3182e1bd7b --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/netstandard/PublicAPI.Shipped.txt @@ -0,0 +1,6957 @@ +#nullable enable +abstract Microsoft.Maui.Controls.Brush.IsEmpty.get -> bool +abstract Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildren(double x, double y, double width, double height) -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.FinishedParsing() -> void +abstract Microsoft.Maui.Controls.Internals.GIFImageParser.StartParsing() -> void +abstract Microsoft.Maui.Controls.Internals.TableModel.GetRowCount(int section) -> int +abstract Microsoft.Maui.Controls.Internals.TableModel.GetSectionCount() -> int +abstract Microsoft.Maui.Controls.Shapes.Shape.GetPath() -> Microsoft.Maui.Graphics.PathF! +const Microsoft.Maui.Controls.Cell.DefaultCellHeight = 40 -> int +Microsoft.Maui.Controls.AbsoluteLayout +Microsoft.Maui.Controls.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Accelerator +Microsoft.Maui.Controls.AcceleratorTypeConverter +Microsoft.Maui.Controls.AcceleratorTypeConverter.AcceleratorTypeConverter() -> void +Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Auto = 0 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Bottom = 2 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Center = 5 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Left = 4 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Right = 3 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.AccessKeyPlacement.Top = 1 -> Microsoft.Maui.Controls.AccessKeyPlacement +Microsoft.Maui.Controls.ActivityIndicator +Microsoft.Maui.Controls.ActivityIndicator.ActivityIndicator() -> void +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.Controls.ActivityIndicator.IsRunning.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger +Microsoft.Maui.Controls.AdaptiveTrigger.AdaptiveTrigger() -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeight.set -> void +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.get -> double +Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidth.set -> void +Microsoft.Maui.Controls.AndExpandLayoutManager +Microsoft.Maui.Controls.AndExpandLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.AndExpandLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Animation +Microsoft.Maui.Controls.Animation.Animation() -> void +Microsoft.Maui.Controls.Animation.IsEnabled.get -> bool +Microsoft.Maui.Controls.AnimationExtensions +Microsoft.Maui.Controls.Application +Microsoft.Maui.Controls.Application.Application() -> void +Microsoft.Maui.Controls.Application.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks! +Microsoft.Maui.Controls.Application.MainPage.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Application.MainPage.set -> void +Microsoft.Maui.Controls.Application.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Application.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Application.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy? +Microsoft.Maui.Controls.Application.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration! +Microsoft.Maui.Controls.Application.PageAppearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PageDisappearing -> System.EventHandler? +Microsoft.Maui.Controls.Application.PlatformAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.Properties.get -> System.Collections.Generic.IDictionary! +Microsoft.Maui.Controls.Application.Quit() -> void +Microsoft.Maui.Controls.Application.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.RequestedThemeChanged -> System.EventHandler! +Microsoft.Maui.Controls.Application.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary! +Microsoft.Maui.Controls.Application.Resources.set -> void +Microsoft.Maui.Controls.Application.SavePropertiesAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Controls.Application.SendOnAppLinkRequestReceived(System.Uri! uri) -> void +Microsoft.Maui.Controls.Application.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider! provider) -> void +Microsoft.Maui.Controls.Application.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.Application.UserAppTheme.set -> void +Microsoft.Maui.Controls.Application.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Controls.AppLinkEntry +Microsoft.Maui.Controls.AppLinkEntry.AppLinkEntry() -> void +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.AppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs +Microsoft.Maui.Controls.AppThemeChangedEventArgs.AppThemeChangedEventArgs(Microsoft.Maui.ApplicationModel.AppTheme appTheme) -> void +Microsoft.Maui.Controls.AppThemeChangedEventArgs.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.Controls.AutomationProperties +Microsoft.Maui.Controls.AutomationProperties.AutomationProperties() -> void +Microsoft.Maui.Controls.BackButtonBehavior +Microsoft.Maui.Controls.BackButtonBehavior.BackButtonBehavior() -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsEnabled.set -> void +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.get -> bool +Microsoft.Maui.Controls.BackButtonBehavior.IsVisible.set -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs +Microsoft.Maui.Controls.BackButtonPressedEventArgs.BackButtonPressedEventArgs() -> void +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.BackButtonPressedEventArgs.Handled.set -> void +Microsoft.Maui.Controls.BackgroundingEventArgs +Microsoft.Maui.Controls.BaseMenuItem +Microsoft.Maui.Controls.BaseMenuItem.BaseMenuItem() -> void +Microsoft.Maui.Controls.BaseShellItem +Microsoft.Maui.Controls.BaseShellItem.Appearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.BaseShellItem() -> void +Microsoft.Maui.Controls.BaseShellItem.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.FlyoutItemIsVisible.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsChecked.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsEnabled.set -> void +Microsoft.Maui.Controls.BaseShellItem.IsVisible.get -> bool +Microsoft.Maui.Controls.BaseShellItem.IsVisible.set -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs +Microsoft.Maui.Controls.BaseSwipeEventArgs.BaseSwipeEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.BaseSwipeEventArgs.SwipeDirection.set -> void +Microsoft.Maui.Controls.Behavior +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.Behavior.Behavior() -> void +Microsoft.Maui.Controls.BindableLayout +Microsoft.Maui.Controls.BindableObject +Microsoft.Maui.Controls.BindableObject.ApplyBindings() -> void +Microsoft.Maui.Controls.BindableObject.BindableObject() -> void +Microsoft.Maui.Controls.BindableObject.BindingContextChanged -> System.EventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.BindableObject.PropertyChanging -> Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.BindableObject.UnapplyBindings() -> void +Microsoft.Maui.Controls.BindableObjectExtensions +Microsoft.Maui.Controls.BindableProperty +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate +Microsoft.Maui.Controls.BindableProperty.DefaultBindingMode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindableProperty.IsReadOnly.get -> bool +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate +Microsoft.Maui.Controls.BindablePropertyConverter +Microsoft.Maui.Controls.BindablePropertyConverter.BindablePropertyConverter() -> void +Microsoft.Maui.Controls.BindablePropertyKey +Microsoft.Maui.Controls.Binding +Microsoft.Maui.Controls.Binding.Binding() -> void +Microsoft.Maui.Controls.BindingBase +Microsoft.Maui.Controls.BindingBase.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingBase.Mode.set -> void +Microsoft.Maui.Controls.BindingCondition +Microsoft.Maui.Controls.BindingCondition.BindingCondition() -> void +Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.Default = 0 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneTime = 4 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWay = 2 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.OneWayToSource = 3 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.BindingMode.TwoWay = 1 -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Border +Microsoft.Maui.Controls.Border.Border() -> void +Microsoft.Maui.Controls.Border.Content.get -> Microsoft.Maui.Controls.View? +Microsoft.Maui.Controls.Border.Content.set -> void +Microsoft.Maui.Controls.Border.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Border.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.Border.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Padding.set -> void +Microsoft.Maui.Controls.Border.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Border.Stroke.get -> Microsoft.Maui.Controls.Brush? +Microsoft.Maui.Controls.Border.Stroke.set -> void +Microsoft.Maui.Controls.Border.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection? +Microsoft.Maui.Controls.Border.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Border.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Border.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Border.StrokeDashPattern.get -> float[]? +Microsoft.Maui.Controls.Border.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Border.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Border.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Border.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Border.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Border.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Border.StrokeShape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Controls.Border.StrokeShape.set -> void +Microsoft.Maui.Controls.Border.StrokeThickness.get -> double +Microsoft.Maui.Controls.Border.StrokeThickness.set -> void +Microsoft.Maui.Controls.BoundsConstraint +Microsoft.Maui.Controls.BoundsTypeConverter +Microsoft.Maui.Controls.BoundsTypeConverter.BoundsTypeConverter() -> void +Microsoft.Maui.Controls.BoxView +Microsoft.Maui.Controls.BoxView.BoxView() -> void +Microsoft.Maui.Controls.BoxView.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.BoxView.CornerRadius.set -> void +Microsoft.Maui.Controls.Brush +Microsoft.Maui.Controls.Brush.Brush() -> void +Microsoft.Maui.Controls.BrushTypeConverter +Microsoft.Maui.Controls.BrushTypeConverter.BrushTypeConverter() -> void +Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser +Microsoft.Maui.Controls.Button +Microsoft.Maui.Controls.Button.BorderWidth.get -> double +Microsoft.Maui.Controls.Button.BorderWidth.set -> void +Microsoft.Maui.Controls.Button.Button() -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout +Microsoft.Maui.Controls.Button.ButtonContentLayout.ButtonContentLayout(Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition position, double spacing) -> void +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Bottom = 3 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Left = 0 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Right = 2 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition.Top = 1 -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Position.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout.ImagePosition +Microsoft.Maui.Controls.Button.ButtonContentLayout.Spacing.get -> double +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter +Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ButtonContentTypeConverter() -> void +Microsoft.Maui.Controls.Button.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Button.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Button.Clicked -> System.EventHandler +Microsoft.Maui.Controls.Button.CornerRadius.get -> int +Microsoft.Maui.Controls.Button.CornerRadius.set -> void +Microsoft.Maui.Controls.Button.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Button.FontAttributes.set -> void +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Button.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Button.FontSize.get -> double +Microsoft.Maui.Controls.Button.FontSize.set -> void +Microsoft.Maui.Controls.Button.IsPressed.get -> bool +Microsoft.Maui.Controls.Button.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Button.LineBreakMode.set -> void +Microsoft.Maui.Controls.Button.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Button.Padding.set -> void +Microsoft.Maui.Controls.Button.Pressed -> System.EventHandler +Microsoft.Maui.Controls.Button.Released -> System.EventHandler +Microsoft.Maui.Controls.Button.SendClicked() -> void +Microsoft.Maui.Controls.Button.SendPressed() -> void +Microsoft.Maui.Controls.Button.SendReleased() -> void +Microsoft.Maui.Controls.Button.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Button.TextTransform.set -> void +Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Primary = 1 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ButtonsMask.Secondary = 2 -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.CarouselLayoutTypeConverter +Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CarouselLayoutTypeConverter() -> void +Microsoft.Maui.Controls.CarouselView +Microsoft.Maui.Controls.CarouselView.CarouselView() -> void +Microsoft.Maui.Controls.CarouselView.CurrentItemChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsBounceEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.IsDragging.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrollAnimated.set -> void +Microsoft.Maui.Controls.CarouselView.IsScrolling.get -> bool +Microsoft.Maui.Controls.CarouselView.IsScrolling.set -> void +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.get -> bool +Microsoft.Maui.Controls.CarouselView.IsSwipeEnabled.set -> void +Microsoft.Maui.Controls.CarouselView.Loop.get -> bool +Microsoft.Maui.Controls.CarouselView.Loop.set -> void +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.CarouselView.PeekAreaInsets.set -> void +Microsoft.Maui.Controls.CarouselView.Position.get -> int +Microsoft.Maui.Controls.CarouselView.Position.set -> void +Microsoft.Maui.Controls.CarouselView.PositionChanged -> System.EventHandler +Microsoft.Maui.Controls.CarouselView.SetIsDragging(bool value) -> void +Microsoft.Maui.Controls.Cell +Microsoft.Maui.Controls.Cell.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.Cell() -> void +Microsoft.Maui.Controls.Cell.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Cell.ForceUpdateSize() -> void +Microsoft.Maui.Controls.Cell.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.Cell.HasContextActions.get -> bool +Microsoft.Maui.Controls.Cell.Height.get -> double +Microsoft.Maui.Controls.Cell.Height.set -> void +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsContextActionsLegacyModeEnabled.set -> void +Microsoft.Maui.Controls.Cell.IsEnabled.get -> bool +Microsoft.Maui.Controls.Cell.IsEnabled.set -> void +Microsoft.Maui.Controls.Cell.RenderHeight.get -> double +Microsoft.Maui.Controls.Cell.SendAppearing() -> void +Microsoft.Maui.Controls.Cell.SendDisappearing() -> void +Microsoft.Maui.Controls.Cell.Tapped -> System.EventHandler +Microsoft.Maui.Controls.CheckBox +Microsoft.Maui.Controls.CheckBox.CheckBox() -> void +Microsoft.Maui.Controls.CheckBox.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.CheckBox.IsChecked.get -> bool +Microsoft.Maui.Controls.CheckBox.IsChecked.set -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs +Microsoft.Maui.Controls.CheckedChangedEventArgs.CheckedChangedEventArgs(bool value) -> void +Microsoft.Maui.Controls.CheckedChangedEventArgs.Value.get -> bool +Microsoft.Maui.Controls.ChildGestureRecognizer +Microsoft.Maui.Controls.ChildGestureRecognizer.ChildGestureRecognizer() -> void +Microsoft.Maui.Controls.ChildGestureRecognizer.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ClickedEventArgs +Microsoft.Maui.Controls.ClickedEventArgs.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.get -> Microsoft.Maui.Controls.ButtonsMask +Microsoft.Maui.Controls.ClickGestureRecognizer.Buttons.set -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ClickGestureRecognizer.ClickGestureRecognizer() -> void +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.get -> int +Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequired.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.CloseRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.CloseRequestedEventArgs.CloseRequestedEventArgs(bool animated) -> void +Microsoft.Maui.Controls.CollectionSynchronizationCallback +Microsoft.Maui.Controls.CollectionView +Microsoft.Maui.Controls.CollectionView.CollectionView() -> void +Microsoft.Maui.Controls.ColumnDefinition +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition() -> void +Microsoft.Maui.Controls.ColumnDefinition.ColumnDefinition(Microsoft.Maui.GridLength width) -> void +Microsoft.Maui.Controls.ColumnDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.ColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.ColumnDefinition.Width.set -> void +Microsoft.Maui.Controls.ColumnDefinitionCollection +Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection() -> void +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ColumnDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.Command.CanExecuteChanged -> System.EventHandler +Microsoft.Maui.Controls.Command.ChangeCanExecute() -> void +Microsoft.Maui.Controls.Command +Microsoft.Maui.Controls.CompareStateTrigger +Microsoft.Maui.Controls.CompareStateTrigger.CompareStateTrigger() -> void +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout +Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AbsoluteLayout() -> void +Microsoft.Maui.Controls.Compatibility.Constraint +Microsoft.Maui.Controls.Compatibility.Constraint.Constraint() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Constant.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ConstraintExpression() -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.get -> double +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Factor.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.get -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Type.set -> void +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter +Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConstraintTypeConverter() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.Compatibility.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.Compatibility.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.Compatibility.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.Compatibility.Grid +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.Grid.Grid() -> void +Microsoft.Maui.Controls.Compatibility.Grid.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Compatibility.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.Compatibility.INativeElementView +Microsoft.Maui.Controls.Compatibility.Layout +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Compatibility.Layout.ForceLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Compatibility.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Compatibility.Layout.Padding.set -> void +Microsoft.Maui.Controls.Compatibility.Layout.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.Compatibility.Layout.Layout() -> void +Microsoft.Maui.Controls.Compatibility.RelativeLayout +Microsoft.Maui.Controls.Compatibility.RelativeLayout.RelativeLayout() -> void +Microsoft.Maui.Controls.Compatibility.StackLayout +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.Compatibility.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.get -> double +Microsoft.Maui.Controls.Compatibility.StackLayout.Spacing.set -> void +Microsoft.Maui.Controls.Compatibility.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.CompressedLayout +Microsoft.Maui.Controls.Condition +Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.Constant = 2 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToParent = 0 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ConstraintType.RelativeToView = 1 -> Microsoft.Maui.Controls.ConstraintType +Microsoft.Maui.Controls.ContentPage +Microsoft.Maui.Controls.ContentPage.ContentPage() -> void +Microsoft.Maui.Controls.ContentPresenter +Microsoft.Maui.Controls.ContentPresenter.ContentPresenter() -> void +Microsoft.Maui.Controls.ContentPropertyAttribute +Microsoft.Maui.Controls.ContentView +Microsoft.Maui.Controls.ContentView.ContentView() -> void +Microsoft.Maui.Controls.ControlsColorExtensions +Microsoft.Maui.Controls.ControlTemplate +Microsoft.Maui.Controls.ControlTemplate.ControlTemplate() -> void +Microsoft.Maui.Controls.CurrentItemChangedEventArgs +Microsoft.Maui.Controls.DataPackage +Microsoft.Maui.Controls.DataPackage.DataPackage() -> void +Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.Copy = 1 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackageOperation.None = 0 -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DataPackagePropertySet +Microsoft.Maui.Controls.DataPackagePropertySet.Count.get -> int +Microsoft.Maui.Controls.DataPackagePropertySet.DataPackagePropertySet() -> void +Microsoft.Maui.Controls.DataPackagePropertySetView +Microsoft.Maui.Controls.DataPackagePropertySetView.Count.get -> int +Microsoft.Maui.Controls.DataPackageView +Microsoft.Maui.Controls.DataTemplate +Microsoft.Maui.Controls.DataTemplate.DataTemplate() -> void +Microsoft.Maui.Controls.DataTemplateSelector +Microsoft.Maui.Controls.DataTemplateSelector.DataTemplateSelector() -> void +Microsoft.Maui.Controls.DataTrigger +Microsoft.Maui.Controls.DateChangedEventArgs +Microsoft.Maui.Controls.DateChangedEventArgs.DateChangedEventArgs(System.DateTime oldDate, System.DateTime newDate) -> void +Microsoft.Maui.Controls.DateChangedEventArgs.NewDate.get -> System.DateTime +Microsoft.Maui.Controls.DateChangedEventArgs.OldDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.DatePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.DatePicker.Date.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.Date.set -> void +Microsoft.Maui.Controls.DatePicker.DatePicker() -> void +Microsoft.Maui.Controls.DatePicker.DateSelected -> System.EventHandler +Microsoft.Maui.Controls.DatePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.DatePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.DatePicker.FontSize.get -> double +Microsoft.Maui.Controls.DatePicker.FontSize.set -> void +Microsoft.Maui.Controls.DatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MaximumDate.set -> void +Microsoft.Maui.Controls.DatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.Controls.DatePicker.MinimumDate.set -> void +Microsoft.Maui.Controls.DefinitionCollection.Add(T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.Clear() -> void +Microsoft.Maui.Controls.DefinitionCollection.Contains(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.Count.get -> int +Microsoft.Maui.Controls.DefinitionCollection.IndexOf(T item) -> int +Microsoft.Maui.Controls.DefinitionCollection.Insert(int index, T item) -> void +Microsoft.Maui.Controls.DefinitionCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.DefinitionCollection.ItemSizeChanged -> System.EventHandler +Microsoft.Maui.Controls.DefinitionCollection.Remove(T item) -> bool +Microsoft.Maui.Controls.DefinitionCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.DefinitionCollection.this[int index].get -> T +Microsoft.Maui.Controls.DefinitionCollection.this[int index].set -> void +Microsoft.Maui.Controls.DependencyAttribute +Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance = 0 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyFetchTarget.NewInstance = 1 -> Microsoft.Maui.Controls.DependencyFetchTarget +Microsoft.Maui.Controls.DependencyService +Microsoft.Maui.Controls.DesignMode +Microsoft.Maui.Controls.Device +Microsoft.Maui.Controls.Device.Styles +Microsoft.Maui.Controls.DeviceStateTrigger +Microsoft.Maui.Controls.DeviceStateTrigger.DeviceStateTrigger() -> void +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensity.get -> float +Microsoft.Maui.Controls.DisplayDensityChangedEventArgs.DisplayDensityChangedEventArgs(float displayDensity) -> void +Microsoft.Maui.Controls.DoubleCollection +Microsoft.Maui.Controls.DoubleCollection.DoubleCollection() -> void +Microsoft.Maui.Controls.DoubleCollectionConverter +Microsoft.Maui.Controls.DoubleCollectionConverter.DoubleCollectionConverter() -> void +Microsoft.Maui.Controls.DragEventArgs +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.get -> Microsoft.Maui.Controls.DataPackageOperation +Microsoft.Maui.Controls.DragEventArgs.AcceptedOperation.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.get -> bool +Microsoft.Maui.Controls.DragGestureRecognizer.CanDrag.set -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragGestureRecognizer() -> void +Microsoft.Maui.Controls.DragGestureRecognizer.DragStarting -> System.EventHandler +Microsoft.Maui.Controls.DragGestureRecognizer.DropCompleted -> System.EventHandler +Microsoft.Maui.Controls.DragStartingEventArgs +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.DragStartingEventArgs.DragStartingEventArgs() -> void +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DragStartingEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropCompletedEventArgs +Microsoft.Maui.Controls.DropCompletedEventArgs.DropCompletedEventArgs() -> void +Microsoft.Maui.Controls.DropEventArgs +Microsoft.Maui.Controls.DropEventArgs.Handled.get -> bool +Microsoft.Maui.Controls.DropEventArgs.Handled.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.get -> bool +Microsoft.Maui.Controls.DropGestureRecognizer.AllowDrop.set -> void +Microsoft.Maui.Controls.DropGestureRecognizer.DragLeave -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DragOver -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.Drop -> System.EventHandler +Microsoft.Maui.Controls.DropGestureRecognizer.DropGestureRecognizer() -> void +Microsoft.Maui.Controls.Editor +Microsoft.Maui.Controls.Editor.AutoSize.get -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Editor.AutoSize.set -> void +Microsoft.Maui.Controls.Editor.Completed -> System.EventHandler +Microsoft.Maui.Controls.Editor.CursorPosition.get -> int +Microsoft.Maui.Controls.Editor.CursorPosition.set -> void +Microsoft.Maui.Controls.Editor.Editor() -> void +Microsoft.Maui.Controls.Editor.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Editor.FontAttributes.set -> void +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Editor.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Editor.FontSize.get -> double +Microsoft.Maui.Controls.Editor.FontSize.set -> void +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Editor.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Editor.OnHorizontalTextAlignmentPropertyChanged(Microsoft.Maui.TextAlignment oldValue, Microsoft.Maui.TextAlignment newValue) -> void +Microsoft.Maui.Controls.Editor.SelectionLength.get -> int +Microsoft.Maui.Controls.Editor.SelectionLength.set -> void +Microsoft.Maui.Controls.Editor.SendCompleted() -> void +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Editor.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.Disabled = 0 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.EditorAutoSizeOption.TextChanges = 1 -> Microsoft.Maui.Controls.EditorAutoSizeOption +Microsoft.Maui.Controls.Effect +Microsoft.Maui.Controls.Effect.IsAttached.get -> bool +Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.Explicit = 2 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveFlowDirection.RightToLeft = 1 -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.EffectiveVisualExtensions +Microsoft.Maui.Controls.Element +Microsoft.Maui.Controls.Element.ChildAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.ChildRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantAdded -> System.EventHandler +Microsoft.Maui.Controls.Element.DescendantRemoved -> System.EventHandler +Microsoft.Maui.Controls.Element.Element() -> void +Microsoft.Maui.Controls.Element.HandlerChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.HandlerChanging -> System.EventHandler +Microsoft.Maui.Controls.Element.Id.get -> System.Guid +Microsoft.Maui.Controls.Element.ParentChanged -> System.EventHandler +Microsoft.Maui.Controls.Element.ParentChanging -> System.EventHandler +Microsoft.Maui.Controls.ElementEventArgs +Microsoft.Maui.Controls.ElementTemplate +Microsoft.Maui.Controls.Entry +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.Controls.Entry.ClearButtonVisibility.set -> void +Microsoft.Maui.Controls.Entry.Completed -> System.EventHandler +Microsoft.Maui.Controls.Entry.CursorPosition.get -> int +Microsoft.Maui.Controls.Entry.CursorPosition.set -> void +Microsoft.Maui.Controls.Entry.Entry() -> void +Microsoft.Maui.Controls.Entry.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Entry.FontAttributes.set -> void +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Entry.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Entry.FontSize.get -> double +Microsoft.Maui.Controls.Entry.FontSize.set -> void +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Entry.IsPassword.get -> bool +Microsoft.Maui.Controls.Entry.IsPassword.set -> void +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.Entry.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.Entry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.Controls.Entry.ReturnType.set -> void +Microsoft.Maui.Controls.Entry.SelectionLength.get -> int +Microsoft.Maui.Controls.Entry.SelectionLength.set -> void +Microsoft.Maui.Controls.Entry.SendCompleted() -> void +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Entry.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell +Microsoft.Maui.Controls.EntryCell.Completed -> System.EventHandler +Microsoft.Maui.Controls.EntryCell.EntryCell() -> void +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.EntryCell.SendCompleted() -> void +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.EntryCell.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.EventTrigger +Microsoft.Maui.Controls.EventTrigger.EventTrigger() -> void +Microsoft.Maui.Controls.ExportEffectAttribute +Microsoft.Maui.Controls.ExportFontAttribute +Microsoft.Maui.Controls.FileImageSource +Microsoft.Maui.Controls.FileImageSource.FileImageSource() -> void +Microsoft.Maui.Controls.FileImageSourceConverter +Microsoft.Maui.Controls.FileImageSourceConverter.FileImageSourceConverter() -> void +Microsoft.Maui.Controls.FlexLayout +Microsoft.Maui.Controls.FlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Controls.FlexLayout.AlignContent.set -> void +Microsoft.Maui.Controls.FlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Controls.FlexLayout.AlignItems.set -> void +Microsoft.Maui.Controls.FlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Controls.FlexLayout.Direction.set -> void +Microsoft.Maui.Controls.FlexLayout.FlexLayout() -> void +Microsoft.Maui.Controls.FlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Controls.FlexLayout.JustifyContent.set -> void +Microsoft.Maui.Controls.FlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.Controls.FlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Controls.FlexLayout.Position.set -> void +Microsoft.Maui.Controls.FlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Controls.FlexLayout.Wrap.set -> void +Microsoft.Maui.Controls.FlowDirectionConverter +Microsoft.Maui.Controls.FlowDirectionConverter.FlowDirectionConverter() -> void +Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsMultipleItems = 1 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutDisplayOptions.AsSingleItem = 0 -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.CollapseOnScroll = 3 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Fixed = 1 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutHeaderBehavior.Scroll = 2 -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.FlyoutItem +Microsoft.Maui.Controls.FlyoutItem.FlyoutItem() -> void +Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Default = 0 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Popover = 3 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.Split = 2 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnLandscape = 1 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutLayoutBehavior.SplitOnPortrait = 4 -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage +Microsoft.Maui.Controls.FlyoutPage.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.get -> Microsoft.Maui.Controls.FlyoutLayoutBehavior +Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehavior.set -> void +Microsoft.Maui.Controls.FlyoutPage.FlyoutPage() -> void +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresented.get -> bool +Microsoft.Maui.Controls.FlyoutPage.IsPresented.set -> void +Microsoft.Maui.Controls.FlyoutPage.IsPresentedChanged -> System.EventHandler +Microsoft.Maui.Controls.FlyoutPage.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.FocusEventArgs +Microsoft.Maui.Controls.FocusEventArgs.IsFocused.get -> bool +Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Bold = 1 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.Italic = 2 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributes.None = 0 -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.FontAttributesConverter +Microsoft.Maui.Controls.FontAttributesConverter.FontAttributesConverter() -> void +Microsoft.Maui.Controls.FontExtensions +Microsoft.Maui.Controls.FontImageSource +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.FontImageSource.FontImageSource() -> void +Microsoft.Maui.Controls.FontImageSource.Size.get -> double +Microsoft.Maui.Controls.FontImageSource.Size.set -> void +Microsoft.Maui.Controls.FontSizeConverter +Microsoft.Maui.Controls.FontSizeConverter.FontSizeConverter() -> void +Microsoft.Maui.Controls.FormattedString +Microsoft.Maui.Controls.FormattedString.FormattedString() -> void +Microsoft.Maui.Controls.Frame +Microsoft.Maui.Controls.Frame.CornerRadius.get -> float +Microsoft.Maui.Controls.Frame.CornerRadius.set -> void +Microsoft.Maui.Controls.Frame.Frame() -> void +Microsoft.Maui.Controls.Frame.HasShadow.get -> bool +Microsoft.Maui.Controls.Frame.HasShadow.set -> void +Microsoft.Maui.Controls.GestureElement +Microsoft.Maui.Controls.GestureElement.GestureElement() -> void +Microsoft.Maui.Controls.GestureRecognizer +Microsoft.Maui.Controls.GestureRecognizer.GestureRecognizer() -> void +Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Began = 0 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Cancelled = 4 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Ended = 2 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Failed = 3 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Possible = 5 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GestureState.Update = 1 -> Microsoft.Maui.Controls.GestureState +Microsoft.Maui.Controls.GradientBrush +Microsoft.Maui.Controls.GradientBrush.GradientBrush() -> void +Microsoft.Maui.Controls.GradientBrush.InvalidateGradientBrushRequested -> System.EventHandler +Microsoft.Maui.Controls.GradientStop +Microsoft.Maui.Controls.GradientStop.GradientStop() -> void +Microsoft.Maui.Controls.GradientStop.Offset.get -> float +Microsoft.Maui.Controls.GradientStop.Offset.set -> void +Microsoft.Maui.Controls.GradientStopCollection +Microsoft.Maui.Controls.GradientStopCollection.GradientStopCollection() -> void +Microsoft.Maui.Controls.GraphicsView +Microsoft.Maui.Controls.GraphicsView.CancelInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.DragInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.EndInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.GraphicsView() -> void +Microsoft.Maui.Controls.GraphicsView.Invalidate() -> void +Microsoft.Maui.Controls.GraphicsView.MoveHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartHoverInteraction -> System.EventHandler +Microsoft.Maui.Controls.GraphicsView.StartInteraction -> System.EventHandler +Microsoft.Maui.Controls.Grid +Microsoft.Maui.Controls.Grid.ColumnSpacing.get -> double +Microsoft.Maui.Controls.Grid.ColumnSpacing.set -> void +Microsoft.Maui.Controls.Grid.Grid() -> void +Microsoft.Maui.Controls.Grid.RowSpacing.get -> double +Microsoft.Maui.Controls.Grid.RowSpacing.set -> void +Microsoft.Maui.Controls.GridExtensions +Microsoft.Maui.Controls.GridItemsLayout +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(int span, Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.GridItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacing.set -> void +Microsoft.Maui.Controls.GridItemsLayout.Span.get -> int +Microsoft.Maui.Controls.GridItemsLayout.Span.set -> void +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.get -> double +Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacing.set -> void +Microsoft.Maui.Controls.GridLengthTypeConverter +Microsoft.Maui.Controls.GridLengthTypeConverter.GridLengthTypeConverter() -> void +Microsoft.Maui.Controls.GroupableItemsView +Microsoft.Maui.Controls.GroupableItemsView.GroupableItemsView() -> void +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.get -> bool +Microsoft.Maui.Controls.GroupableItemsView.IsGrouped.set -> void +Microsoft.Maui.Controls.HandlerAttribute +Microsoft.Maui.Controls.HandlerAttribute.Priority.get -> short +Microsoft.Maui.Controls.HandlerAttribute.Priority.set -> void +Microsoft.Maui.Controls.HandlerChangingEventArgs +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler +Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler +Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler() -> void +Microsoft.Maui.Controls.Handlers.LineHandler +Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler() -> void +Microsoft.Maui.Controls.Handlers.PathHandler +Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler() -> void +Microsoft.Maui.Controls.Handlers.PolygonHandler +Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler() -> void +Microsoft.Maui.Controls.Handlers.PolylineHandler +Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler() -> void +Microsoft.Maui.Controls.Handlers.RectangleHandler +Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler() -> void +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler +Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler() -> void +Microsoft.Maui.Controls.HorizontalStackLayout +Microsoft.Maui.Controls.HorizontalStackLayout.HorizontalStackLayout() -> void +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Hosting.IEffectsBuilder +Microsoft.Maui.Controls.HtmlWebViewSource +Microsoft.Maui.Controls.HtmlWebViewSource.HtmlWebViewSource() -> void +Microsoft.Maui.Controls.IAnimatable +Microsoft.Maui.Controls.IAnimatable.BatchBegin() -> void +Microsoft.Maui.Controls.IAnimatable.BatchCommit() -> void +Microsoft.Maui.Controls.IAppearanceObserver +Microsoft.Maui.Controls.IAppIndexingProvider +Microsoft.Maui.Controls.IApplicationController +Microsoft.Maui.Controls.IAppLinkEntry +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.get -> bool +Microsoft.Maui.Controls.IAppLinkEntry.IsLinkActive.set -> void +Microsoft.Maui.Controls.IAppLinks +Microsoft.Maui.Controls.IBindableLayout +Microsoft.Maui.Controls.IBorderElement +Microsoft.Maui.Controls.IBorderElement.BorderWidth.get -> double +Microsoft.Maui.Controls.IBorderElement.BorderWidthDefaultValue.get -> double +Microsoft.Maui.Controls.IBorderElement.CornerRadius.get -> int +Microsoft.Maui.Controls.IBorderElement.CornerRadiusDefaultValue.get -> int +Microsoft.Maui.Controls.IBorderElement.IsBackgroundColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBackgroundSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderColorSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsBorderWidthSet() -> bool +Microsoft.Maui.Controls.IBorderElement.IsCornerRadiusSet() -> bool +Microsoft.Maui.Controls.IButtonController +Microsoft.Maui.Controls.IButtonController.SendClicked() -> void +Microsoft.Maui.Controls.IButtonController.SendPressed() -> void +Microsoft.Maui.Controls.IButtonController.SendReleased() -> void +Microsoft.Maui.Controls.ICellController +Microsoft.Maui.Controls.ICellController.ForceUpdateSizeRequested -> System.EventHandler +Microsoft.Maui.Controls.ICellController.SendAppearing() -> void +Microsoft.Maui.Controls.ICellController.SendDisappearing() -> void +Microsoft.Maui.Controls.IConfigPlatform +Microsoft.Maui.Controls.IDecorableTextElement +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.IDecorableTextElement.TextDecorations.set -> void +Microsoft.Maui.Controls.IDefinition +Microsoft.Maui.Controls.IDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.IEditorController +Microsoft.Maui.Controls.IEditorController.SendCompleted() -> void +Microsoft.Maui.Controls.IEffectControlProvider +Microsoft.Maui.Controls.IElementController +Microsoft.Maui.Controls.IElementExtensions +Microsoft.Maui.Controls.IEntryCellController +Microsoft.Maui.Controls.IEntryCellController.SendCompleted() -> void +Microsoft.Maui.Controls.IEntryController +Microsoft.Maui.Controls.IEntryController.SendCompleted() -> void +Microsoft.Maui.Controls.IExtendedTypeConverter +Microsoft.Maui.Controls.IFlyoutBehaviorObserver +Microsoft.Maui.Controls.IFlyoutBehaviorObserver.OnFlyoutBehaviorChanged(Microsoft.Maui.FlyoutBehavior behavior) -> void +Microsoft.Maui.Controls.IFlyoutPageController +Microsoft.Maui.Controls.IFlyoutPageController.BackButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.CanChangeIsPresented.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.DetailBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IFlyoutPageController.FlyoutBounds.set -> void +Microsoft.Maui.Controls.IFlyoutPageController.ShouldShowSplitMode.get -> bool +Microsoft.Maui.Controls.IFlyoutPageController.UpdateFlyoutLayoutBehavior() -> void +Microsoft.Maui.Controls.IGestureRecognizer +Microsoft.Maui.Controls.IGestureRecognizers +Microsoft.Maui.Controls.IGridController +Microsoft.Maui.Controls.IGridController.InvalidateMeasureInernalNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IImageController +Microsoft.Maui.Controls.IImageController.GetLoadAsAnimation() -> bool +Microsoft.Maui.Controls.IImageController.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.IImageElement +Microsoft.Maui.Controls.IImageElement.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.IImageElement.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.IImageElement.IsLoading.get -> bool +Microsoft.Maui.Controls.IImageElement.IsOpaque.get -> bool +Microsoft.Maui.Controls.IImageElement.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.IItemsLayout +Microsoft.Maui.Controls.IItemViewController +Microsoft.Maui.Controls.IItemViewController.Count.get -> int +Microsoft.Maui.Controls.ILayout +Microsoft.Maui.Controls.ILayout.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.ILayoutController +Microsoft.Maui.Controls.IListProxy +Microsoft.Maui.Controls.IListProxy.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IListViewController +Microsoft.Maui.Controls.IListViewController.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.IListViewController.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.IListViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IListViewController.SendRefreshing() -> void +Microsoft.Maui.Controls.Image +Microsoft.Maui.Controls.Image.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Image.Aspect.set -> void +Microsoft.Maui.Controls.Image.Image() -> void +Microsoft.Maui.Controls.Image.IsAnimationPlaying.get -> bool +Microsoft.Maui.Controls.Image.IsAnimationPlaying.set -> void +Microsoft.Maui.Controls.Image.IsLoading.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.get -> bool +Microsoft.Maui.Controls.Image.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton +Microsoft.Maui.Controls.ImageButton.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.ImageButton.Aspect.set -> void +Microsoft.Maui.Controls.ImageButton.BorderWidth.get -> double +Microsoft.Maui.Controls.ImageButton.BorderWidth.set -> void +Microsoft.Maui.Controls.ImageButton.Clicked -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.CornerRadius.get -> int +Microsoft.Maui.Controls.ImageButton.CornerRadius.set -> void +Microsoft.Maui.Controls.ImageButton.ImageButton() -> void +Microsoft.Maui.Controls.ImageButton.IsLoading.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.get -> bool +Microsoft.Maui.Controls.ImageButton.IsOpaque.set -> void +Microsoft.Maui.Controls.ImageButton.IsPressed.get -> bool +Microsoft.Maui.Controls.ImageButton.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.ImageButton.Padding.set -> void +Microsoft.Maui.Controls.ImageButton.Pressed -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.PropagateUpClicked() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpPressed() -> void +Microsoft.Maui.Controls.ImageButton.PropagateUpReleased() -> void +Microsoft.Maui.Controls.ImageButton.RaiseImageSourcePropertyChanged() -> void +Microsoft.Maui.Controls.ImageButton.Released -> System.EventHandler +Microsoft.Maui.Controls.ImageButton.SendClicked() -> void +Microsoft.Maui.Controls.ImageButton.SendPressed() -> void +Microsoft.Maui.Controls.ImageButton.SendReleased() -> void +Microsoft.Maui.Controls.ImageButton.SetIsLoading(bool isLoading) -> void +Microsoft.Maui.Controls.ImageButton.SetIsPressed(bool isPressed) -> void +Microsoft.Maui.Controls.ImageCell +Microsoft.Maui.Controls.ImageCell.ImageCell() -> void +Microsoft.Maui.Controls.ImageSource +Microsoft.Maui.Controls.ImageSource.ImageSource() -> void +Microsoft.Maui.Controls.ImageSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.ImageSourceConverter +Microsoft.Maui.Controls.ImageSourceConverter.ImageSourceConverter() -> void +Microsoft.Maui.Controls.IMenuItemController +Microsoft.Maui.Controls.IMenuItemController.Activate() -> void +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.get -> bool +Microsoft.Maui.Controls.IMenuItemController.IsEnabled.set -> void +Microsoft.Maui.Controls.IMessagingCenter +Microsoft.Maui.Controls.IMultiPageController +Microsoft.Maui.Controls.IMultiPageController.GetPageByIndex(int index) -> T +Microsoft.Maui.Controls.IMultiValueConverter +Microsoft.Maui.Controls.INavigation +Microsoft.Maui.Controls.INavigationPageController +Microsoft.Maui.Controls.INavigationPageController.InsertPageBeforeRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PopToRootRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.PushRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.RemovePageRequested -> System.EventHandler +Microsoft.Maui.Controls.INavigationPageController.StackDepth.get -> int +Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Circle = 0 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorShape.Square = 1 -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView +Microsoft.Maui.Controls.IndicatorView.Count.get -> int +Microsoft.Maui.Controls.IndicatorView.Count.set -> void +Microsoft.Maui.Controls.IndicatorView.HideSingle.get -> bool +Microsoft.Maui.Controls.IndicatorView.HideSingle.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.get -> double +Microsoft.Maui.Controls.IndicatorView.IndicatorSize.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.get -> Microsoft.Maui.Controls.IndicatorShape +Microsoft.Maui.Controls.IndicatorView.IndicatorsShape.set -> void +Microsoft.Maui.Controls.IndicatorView.IndicatorView() -> void +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.get -> int +Microsoft.Maui.Controls.IndicatorView.MaximumVisible.set -> void +Microsoft.Maui.Controls.IndicatorView.Position.get -> int +Microsoft.Maui.Controls.IndicatorView.Position.set -> void +Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.DisableCss = 1 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InitializationFlags.SkipRenderers = 2 -> Microsoft.Maui.Controls.InitializationFlags +Microsoft.Maui.Controls.InputView +Microsoft.Maui.Controls.InputView.CharacterSpacing.get -> double +Microsoft.Maui.Controls.InputView.CharacterSpacing.set -> void +Microsoft.Maui.Controls.InputView.IsReadOnly.get -> bool +Microsoft.Maui.Controls.InputView.IsReadOnly.set -> void +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.get -> bool +Microsoft.Maui.Controls.InputView.IsSpellCheckEnabled.set -> void +Microsoft.Maui.Controls.InputView.MaxLength.get -> int +Microsoft.Maui.Controls.InputView.MaxLength.set -> void +Microsoft.Maui.Controls.InputView.OnTextTransformChanged(Microsoft.Maui.TextTransform oldValue, Microsoft.Maui.TextTransform newValue) -> void +Microsoft.Maui.Controls.InputView.TextChanged -> System.EventHandler +Microsoft.Maui.Controls.InputView.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.InputView.TextTransform.set -> void +Microsoft.Maui.Controls.Internals.ActionSheetArguments +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.ActionSheetArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Internals.AlertArguments.FlowDirection.set -> void +Microsoft.Maui.Controls.Internals.AlertArguments.SetResult(bool result) -> void +Microsoft.Maui.Controls.Internals.AsyncValue +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.get -> bool +Microsoft.Maui.Controls.Internals.AsyncValue.IsRunning.set -> void +Microsoft.Maui.Controls.Internals.AsyncValue.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.Internals.AsyncValue.Value.get -> T +Microsoft.Maui.Controls.Internals.AsyncValueExtensions +Microsoft.Maui.Controls.Internals.AutoId +Microsoft.Maui.Controls.Internals.AutoId.AutoId() -> void +Microsoft.Maui.Controls.Internals.AutoId.Increment() -> int +Microsoft.Maui.Controls.Internals.AutoId.Value.get -> int +Microsoft.Maui.Controls.Internals.CellExtensions +Microsoft.Maui.Controls.Internals.ContentPageEx +Microsoft.Maui.Controls.Internals.DataTemplateExtensions +Microsoft.Maui.Controls.Internals.DependencyResolver +Microsoft.Maui.Controls.Internals.DynamicResource +Microsoft.Maui.Controls.Internals.EffectUtilities +Microsoft.Maui.Controls.Internals.EvalRequested +Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.Internals.EventArg +Microsoft.Maui.Controls.Internals.EventArg.Data.get -> T +Microsoft.Maui.Controls.Internals.EventArg.EventArg(T data) -> void +Microsoft.Maui.Controls.Internals.ExpressionSearch +Microsoft.Maui.Controls.Internals.ExpressionSearch.ExpressionSearch() -> void +Microsoft.Maui.Controls.Internals.GIFBitmap +Microsoft.Maui.Controls.Internals.GIFBitmap.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.DataPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFBitmap.Delay.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Dispose.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.LeaveInPlace = 1 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.NoAction = 0 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToBackground = 2 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod.RestoreToPrevious = 3 -> Microsoft.Maui.Controls.Internals.GIFBitmap.DisposeMethod +Microsoft.Maui.Controls.Internals.GIFBitmap.IsInterlaced.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.IsTransparent.get -> bool +Microsoft.Maui.Controls.Internals.GIFBitmap.LoopCount.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Rect(int x, int y, int width, int height) -> void +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.X.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.Rect.Y.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmap.TransparencyIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder +Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.GIFBitmapDecoder() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable +Microsoft.Maui.Controls.Internals.GIFColorTable.ResetTransparency() -> void +Microsoft.Maui.Controls.Internals.GIFColorTable.SetTransparency(int transparencyIndex) -> void +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException +Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException() -> void +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockSize.get -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentPosition.get -> long +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.Read() -> int +Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadShort() -> int +Microsoft.Maui.Controls.Internals.GIFHeader +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColor.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.BackgroundColorIndex.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Height.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.IsGIFHeader.get -> bool +Microsoft.Maui.Controls.Internals.GIFHeader.PixelAspectRatio.get -> int +Microsoft.Maui.Controls.Internals.GIFHeader.Width.get -> int +Microsoft.Maui.Controls.Internals.GIFImageParser +Microsoft.Maui.Controls.Internals.GIFImageParser.GIFImageParser() -> void +Microsoft.Maui.Controls.Internals.IDataTemplateController +Microsoft.Maui.Controls.Internals.IDataTemplateController.Id.get -> int +Microsoft.Maui.Controls.Internals.IDynamicResourceHandler +Microsoft.Maui.Controls.Internals.IExpressionSearch +Microsoft.Maui.Controls.Internals.IFontElement +Microsoft.Maui.Controls.Internals.IFontElement.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Internals.IFontElement.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.IFontElement.FontSize.get -> double +Microsoft.Maui.Controls.Internals.IFontElement.FontSizeDefaultValueCreator() -> double +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAttributesChanged(Microsoft.Maui.Controls.FontAttributes oldValue, Microsoft.Maui.Controls.FontAttributes newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontAutoScalingEnabledChanged(bool oldValue, bool newValue) -> void +Microsoft.Maui.Controls.Internals.IFontElement.OnFontSizeChanged(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.Internals.IFontNamedSizeService +Microsoft.Maui.Controls.Internals.IGestureController +Microsoft.Maui.Controls.Internals.INameScope +Microsoft.Maui.Controls.Internals.INavigationProxy +Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.HorizontalOptionsChanged = 2 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MarginChanged = 32 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.MeasureChanged = 1 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.RendererReady = 16 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.SizeRequestChanged = 8 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.Undefined = 0 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.InvalidationTrigger.VerticalOptionsChanged = 4 -> Microsoft.Maui.Controls.Internals.InvalidationTrigger +Microsoft.Maui.Controls.Internals.IPerformanceProvider +Microsoft.Maui.Controls.Internals.IPlatformSizeService +Microsoft.Maui.Controls.Internals.IResourceDictionary +Microsoft.Maui.Controls.Internals.IResourceDictionary.ValuesChanged -> System.EventHandler +Microsoft.Maui.Controls.Internals.ISpatialElement +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.get -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Internals.ISpatialElement.Region.set -> void +Microsoft.Maui.Controls.Internals.ISystemResourcesProvider +Microsoft.Maui.Controls.Internals.NameScope +Microsoft.Maui.Controls.Internals.NameScope.NameScope() -> void +Microsoft.Maui.Controls.Internals.NavigationProxy +Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationProxy() -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.get -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.RequestType.set -> void +Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Insert = 4 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Pop = 2 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.PopToRoot = 3 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Push = 1 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Remove = 5 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NavigationRequestType.Unknown = 0 -> Microsoft.Maui.Controls.Internals.NavigationRequestType +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.Count.get -> int +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action) -> void +Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions +Microsoft.Maui.Controls.Internals.PageExtensions +Microsoft.Maui.Controls.Internals.Performance +Microsoft.Maui.Controls.Internals.Performance.Performance() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute +Microsoft.Maui.Controls.Internals.PreserveAttribute.AllMembers -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.Conditional -> bool +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute() -> void +Microsoft.Maui.Controls.Internals.PreserveAttribute.PreserveAttribute(bool allMembers, bool conditional) -> void +Microsoft.Maui.Controls.Internals.Profile +Microsoft.Maui.Controls.Internals.Profile.Datum +Microsoft.Maui.Controls.Internals.Profile.Datum.Datum() -> void +Microsoft.Maui.Controls.Internals.Profile.Datum.Depth -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Line -> int +Microsoft.Maui.Controls.Internals.Profile.Datum.Ticks -> long +Microsoft.Maui.Controls.Internals.Profile.Dispose() -> void +Microsoft.Maui.Controls.Internals.Profile.Profile() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum +Microsoft.Maui.Controls.Internals.ProfileDatum.Depth -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.Line -> int +Microsoft.Maui.Controls.Internals.ProfileDatum.ProfileDatum() -> void +Microsoft.Maui.Controls.Internals.ProfileDatum.SubTicks -> long +Microsoft.Maui.Controls.Internals.ProfileDatum.Ticks -> long +Microsoft.Maui.Controls.Internals.PromptArguments +Microsoft.Maui.Controls.Internals.PromptArguments.MaxLength.get -> int +Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions +Microsoft.Maui.Controls.Internals.Registrar +Microsoft.Maui.Controls.Internals.Registrar.Registrar() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourceLoadingQuery() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceLoadingResponse() -> void +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.get -> bool +Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.UseDesignProperties.set -> void +Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearDynamicResource = 4 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearOneWayBindings = 1 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.ClearTwoWayBindings = 2 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.None = 0 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.SetValueFlags.RaiseOnEqual = 8 -> Microsoft.Maui.Controls.Internals.SetValueFlags +Microsoft.Maui.Controls.Internals.TableModel +Microsoft.Maui.Controls.Internals.TableModel.ItemLongPressed -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.ItemSelected -> System.EventHandler> +Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.Internals.TableModel.TableModel() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Count.get -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.Dispose() -> void +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetDescendantCount() -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.Internals.TextTransformUtilites +Microsoft.Maui.Controls.Internals.TypedBinding +Microsoft.Maui.Controls.Internals.TypedBindingBase +Microsoft.Maui.Controls.InvalidNavigationException +Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException() -> void +Microsoft.Maui.Controls.IOpenGlViewController +Microsoft.Maui.Controls.IOpenGlViewController.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.IPaddingElement +Microsoft.Maui.Controls.IPaddingElement.OnPaddingPropertyChanged(Microsoft.Maui.Thickness oldValue, Microsoft.Maui.Thickness newValue) -> void +Microsoft.Maui.Controls.IPaddingElement.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPaddingElement.PaddingDefaultValueCreator() -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.IPageController +Microsoft.Maui.Controls.IPageController.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IPageController.ContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.IPageController.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.IPageController.SendAppearing() -> void +Microsoft.Maui.Controls.IPageController.SendDisappearing() -> void +Microsoft.Maui.Controls.IPanGestureController +Microsoft.Maui.Controls.IPinchGestureController +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.get -> bool +Microsoft.Maui.Controls.IPinchGestureController.IsPinching.set -> void +Microsoft.Maui.Controls.IQueryAttributable +Microsoft.Maui.Controls.IRegisterable +Microsoft.Maui.Controls.IScrollViewController +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.IScrollViewController.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.IScrollViewController.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.IScrollViewController.SendScrollFinished() -> void +Microsoft.Maui.Controls.IScrollViewController.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ISearchBarController +Microsoft.Maui.Controls.ISearchBarController.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.ISearchHandlerController +Microsoft.Maui.Controls.ISearchHandlerController.ClearPlaceholderClicked() -> void +Microsoft.Maui.Controls.ISearchHandlerController.ListProxyChanged -> System.EventHandler +Microsoft.Maui.Controls.ISearchHandlerController.QueryConfirmed() -> void +Microsoft.Maui.Controls.IShellAppearanceElement +Microsoft.Maui.Controls.IShellContentController +Microsoft.Maui.Controls.IShellContentController.IsPageVisibleChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellContentInsetObserver +Microsoft.Maui.Controls.IShellContentInsetObserver.OnInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellController +Microsoft.Maui.Controls.IShellController.FlyoutItemsChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellController.StructureChanged -> System.EventHandler +Microsoft.Maui.Controls.IShellController.UpdateCurrentState(Microsoft.Maui.Controls.ShellNavigationSource source) -> void +Microsoft.Maui.Controls.IShellItemController +Microsoft.Maui.Controls.IShellItemController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellItemController.ShowTabs.get -> bool +Microsoft.Maui.Controls.IShellSectionController +Microsoft.Maui.Controls.IShellSectionController.ItemsCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.IShellSectionController.NavigationRequested -> System.EventHandler +Microsoft.Maui.Controls.IShellSectionController.SendInsetChanged(Microsoft.Maui.Thickness inset, double tabThickness) -> void +Microsoft.Maui.Controls.IShellSectionController.SendPopped() -> void +Microsoft.Maui.Controls.ISliderController +Microsoft.Maui.Controls.ISliderController.SendDragCompleted() -> void +Microsoft.Maui.Controls.ISliderController.SendDragStarted() -> void +Microsoft.Maui.Controls.ISwipeGestureController +Microsoft.Maui.Controls.ISwipeItem +Microsoft.Maui.Controls.ISwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.ISwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.ISwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.ISwipeViewController +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.get -> bool +Microsoft.Maui.Controls.ISwipeViewController.IsOpen.set -> void +Microsoft.Maui.Controls.ITableModel +Microsoft.Maui.Controls.ITableModel.GetRowCount(int section) -> int +Microsoft.Maui.Controls.ITableModel.GetSectionCount() -> int +Microsoft.Maui.Controls.ITableModel.RowLongPressed(int section, int row) -> void +Microsoft.Maui.Controls.ITableModel.RowSelected(int section, int row) -> void +Microsoft.Maui.Controls.ITableViewController +Microsoft.Maui.Controls.ITableViewController.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupIndexFromGlobal(int globalIndex, out int leftOver) -> int +Microsoft.Maui.Controls.ITemplatedItemsList.GroupedCollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsList.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs +Microsoft.Maui.Controls.ITemplatedItemsView.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureAllItems = 0 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemSizingStrategy.MeasureFirstItem = 1 -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.ItemsLayout +Microsoft.Maui.Controls.ItemsLayout.ItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ItemsLayout.Orientation.get -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.get -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignment.set -> void +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.get -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.ItemsLayout.SnapPointsType.set -> void +Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutOrientation.Vertical = 0 -> Microsoft.Maui.Controls.ItemsLayoutOrientation +Microsoft.Maui.Controls.ItemsLayoutTypeConverter +Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ItemsLayoutTypeConverter() -> void +Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepItemsInView = 0 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepLastItemInView = 2 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsUpdatingScrollMode.KeepScrollOffset = 1 -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.get -> Microsoft.Maui.Controls.ItemsUpdatingScrollMode +Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollMode.set -> void +Microsoft.Maui.Controls.ItemsView.ItemsView() -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.get -> int +Microsoft.Maui.Controls.ItemsView.RemainingItemsThreshold.set -> void +Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReached -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.ScrollTo(int index, int groupIndex = -1, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +Microsoft.Maui.Controls.ItemsView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ItemsView.SendRemainingItemsThresholdReached() -> void +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.CenterItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.FirstVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.HorizontalOffset.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.ItemsViewScrolledEventArgs() -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.get -> int +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.LastVisibleItemIndex.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalDelta.set -> void +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.get -> double +Microsoft.Maui.Controls.ItemsViewScrolledEventArgs.VerticalOffset.set -> void +Microsoft.Maui.Controls.ItemTappedEventArgs +Microsoft.Maui.Controls.ItemTappedEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.ItemVisibilityEventArgs +Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemIndex.get -> int +Microsoft.Maui.Controls.IValueConverter +Microsoft.Maui.Controls.IViewController +Microsoft.Maui.Controls.IVisual +Microsoft.Maui.Controls.IVisualElementController +Microsoft.Maui.Controls.IVisualElementController.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.IVisualElementController.Batched.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.DisableLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.EffectiveFlowDirection.get -> Microsoft.Maui.Controls.EffectiveFlowDirection +Microsoft.Maui.Controls.IVisualElementController.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.IVisualElementController.InvalidateMeasure(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.IVisualElementController.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.IVisualElementController.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.IWebViewController +Microsoft.Maui.Controls.IWebViewController.CanGoBack.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoBack.set -> void +Microsoft.Maui.Controls.IWebViewController.CanGoForward.get -> bool +Microsoft.Maui.Controls.IWebViewController.CanGoForward.set -> void +Microsoft.Maui.Controls.IWebViewController.EvalRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.EvaluateJavaScriptRequested -> Microsoft.Maui.Controls.Internals.EvaluateJavaScriptDelegate +Microsoft.Maui.Controls.IWebViewController.GoBackRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.GoForwardRequested -> System.EventHandler +Microsoft.Maui.Controls.IWebViewController.ReloadRequested -> System.EventHandler +Microsoft.Maui.Controls.KnownColor +Microsoft.Maui.Controls.Label +Microsoft.Maui.Controls.Label.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Label.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Label.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Label.FontAttributes.set -> void +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Label.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Label.FontSize.get -> double +Microsoft.Maui.Controls.Label.FontSize.set -> void +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Label.Label() -> void +Microsoft.Maui.Controls.Label.LineBreakMode.get -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.Controls.Label.LineBreakMode.set -> void +Microsoft.Maui.Controls.Label.LineHeight.get -> double +Microsoft.Maui.Controls.Label.LineHeight.set -> void +Microsoft.Maui.Controls.Label.MaxLines.get -> int +Microsoft.Maui.Controls.Label.MaxLines.set -> void +Microsoft.Maui.Controls.Label.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Label.Padding.set -> void +Microsoft.Maui.Controls.Label.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Label.TextDecorations.set -> void +Microsoft.Maui.Controls.Label.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Label.TextTransform.set -> void +Microsoft.Maui.Controls.Label.TextType.get -> Microsoft.Maui.TextType +Microsoft.Maui.Controls.Label.TextType.set -> void +Microsoft.Maui.Controls.Label.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Label.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.Layout +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.get -> bool +Microsoft.Maui.Controls.Layout.CascadeInputTransparent.set -> void +Microsoft.Maui.Controls.Layout.Clear() -> void +Microsoft.Maui.Controls.Layout.Count.get -> int +Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.get -> bool +Microsoft.Maui.Controls.Layout.IgnoreSafeArea.set -> void +Microsoft.Maui.Controls.Layout.IsClippedToBounds.get -> bool +Microsoft.Maui.Controls.Layout.IsClippedToBounds.set -> void +Microsoft.Maui.Controls.Layout.IsReadOnly.get -> bool +Microsoft.Maui.Controls.Layout.Layout() -> void +Microsoft.Maui.Controls.Layout.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Layout.Padding.set -> void +Microsoft.Maui.Controls.Layout.RemoveAt(int index) -> void +Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Center = 1 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.End = 2 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Fill = Microsoft.Maui.Controls.LayoutAlignment.Center | Microsoft.Maui.Controls.LayoutAlignment.End -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutAlignment.Start = 0 -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutDirectionExtensions +Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.LayoutOptions.Alignment.get -> Microsoft.Maui.Controls.LayoutAlignment +Microsoft.Maui.Controls.LayoutOptions.Alignment.set -> void +Microsoft.Maui.Controls.LayoutOptions.Expands.get -> bool +Microsoft.Maui.Controls.LayoutOptions.Expands.set -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions() -> void +Microsoft.Maui.Controls.LayoutOptions.LayoutOptions(Microsoft.Maui.Controls.LayoutAlignment alignment, bool expands) -> void +Microsoft.Maui.Controls.LayoutOptionsConverter +Microsoft.Maui.Controls.LayoutOptionsConverter.LayoutOptionsConverter() -> void +Microsoft.Maui.Controls.LinearGradientBrush +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.EndPoint.set -> void +Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush() -> void +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.LinearGradientBrush.StartPoint.set -> void +Microsoft.Maui.Controls.LinearItemsLayout +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.get -> double +Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacing.set -> void +Microsoft.Maui.Controls.LinearItemsLayout.LinearItemsLayout(Microsoft.Maui.Controls.ItemsLayoutOrientation orientation) -> void +Microsoft.Maui.Controls.ListProxyChangedEventArgs +Microsoft.Maui.Controls.ListStringTypeConverter +Microsoft.Maui.Controls.ListStringTypeConverter.ListStringTypeConverter() -> void +Microsoft.Maui.Controls.ListView +Microsoft.Maui.Controls.ListView.BeginRefresh() -> void +Microsoft.Maui.Controls.ListView.CachingStrategy.get -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListView.EndRefresh() -> void +Microsoft.Maui.Controls.ListView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.ListView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsGroupingEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.get -> bool +Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabled.set -> void +Microsoft.Maui.Controls.ListView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.ListView.IsRefreshing.set -> void +Microsoft.Maui.Controls.ListView.ItemAppearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemDisappearing -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemSelected -> System.EventHandler +Microsoft.Maui.Controls.ListView.ItemTapped -> System.EventHandler +Microsoft.Maui.Controls.ListView.ListView() -> void +Microsoft.Maui.Controls.ListView.ListView(Microsoft.Maui.Controls.ListViewCachingStrategy cachingStrategy) -> void +Microsoft.Maui.Controls.ListView.RefreshAllowed.get -> bool +Microsoft.Maui.Controls.ListView.RefreshAllowed.set -> void +Microsoft.Maui.Controls.ListView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.ListView.RowHeight.get -> int +Microsoft.Maui.Controls.ListView.RowHeight.set -> void +Microsoft.Maui.Controls.ListView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ListView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ListView.SelectionMode.get -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListView.SelectionMode.set -> void +Microsoft.Maui.Controls.ListView.SendRefreshing() -> void +Microsoft.Maui.Controls.ListView.SeparatorVisibility.get -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.ListView.SeparatorVisibility.set -> void +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElement = 1 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RecycleElementAndDataTemplate = 3 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewCachingStrategy.RetainElement = 0 -> Microsoft.Maui.Controls.ListViewCachingStrategy +Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.None = 0 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.ListViewSelectionMode.Single = 1 -> Microsoft.Maui.Controls.ListViewSelectionMode +Microsoft.Maui.Controls.MarshalingObservableCollection +Microsoft.Maui.Controls.MarshalingObservableCollection.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.IncludeMargins = 1 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MeasureFlags.None = 0 -> Microsoft.Maui.Controls.MeasureFlags +Microsoft.Maui.Controls.MenuBar +Microsoft.Maui.Controls.MenuBar.Clear() -> void +Microsoft.Maui.Controls.MenuBar.Count.get -> int +Microsoft.Maui.Controls.MenuBar.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBar.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBar.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBar.MenuBar() -> void +Microsoft.Maui.Controls.MenuBar.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuBarItem +Microsoft.Maui.Controls.MenuBarItem.Clear() -> void +Microsoft.Maui.Controls.MenuBarItem.Count.get -> int +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuBarItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuBarItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuBarItem.MenuBarItem() -> void +Microsoft.Maui.Controls.MenuBarItem.Priority.get -> int +Microsoft.Maui.Controls.MenuBarItem.Priority.set -> void +Microsoft.Maui.Controls.MenuBarItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuFlyoutItem +Microsoft.Maui.Controls.MenuFlyoutItem.MenuFlyoutItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem +Microsoft.Maui.Controls.MenuFlyoutSubItem.Clear() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.Count.get -> int +Microsoft.Maui.Controls.MenuFlyoutSubItem.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuFlyoutSubItem.MenuFlyoutSubItem() -> void +Microsoft.Maui.Controls.MenuFlyoutSubItem.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MenuItem +Microsoft.Maui.Controls.MenuItem.Clicked -> System.EventHandler +Microsoft.Maui.Controls.MenuItem.IsDestructive.get -> bool +Microsoft.Maui.Controls.MenuItem.IsDestructive.set -> void +Microsoft.Maui.Controls.MenuItem.IsEnabled.get -> bool +Microsoft.Maui.Controls.MenuItem.IsEnabled.set -> void +Microsoft.Maui.Controls.MenuItem.MenuItem() -> void +Microsoft.Maui.Controls.MenuItemCollection +Microsoft.Maui.Controls.MenuItemCollection.Clear() -> void +Microsoft.Maui.Controls.MenuItemCollection.Count.get -> int +Microsoft.Maui.Controls.MenuItemCollection.IsReadOnly.get -> bool +Microsoft.Maui.Controls.MenuItemCollection.MenuItemCollection() -> void +Microsoft.Maui.Controls.MenuItemCollection.RemoveAt(int index) -> void +Microsoft.Maui.Controls.MessagingCenter +Microsoft.Maui.Controls.MessagingCenter.MessagingCenter() -> void +Microsoft.Maui.Controls.ModalEventArgs +Microsoft.Maui.Controls.ModalPoppedEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.ModalPoppingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.ModalPushedEventArgs +Microsoft.Maui.Controls.ModalPushingEventArgs +Microsoft.Maui.Controls.MultiBinding +Microsoft.Maui.Controls.MultiBinding.MultiBinding() -> void +Microsoft.Maui.Controls.MultiPage.CurrentPageChanged -> System.EventHandler +Microsoft.Maui.Controls.MultiPage.MultiPage() -> void +Microsoft.Maui.Controls.MultiPage.PagesChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.MultiTrigger +Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Body = 5 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Caption = 9 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Default = 0 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Header = 6 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Large = 4 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Medium = 3 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Micro = 1 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Small = 2 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Subtitle = 8 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NamedSize.Title = 7 -> Microsoft.Maui.Controls.NamedSize +Microsoft.Maui.Controls.NameScopeExtensions +Microsoft.Maui.Controls.NavigableElement +Microsoft.Maui.Controls.NavigatedFromEventArgs +Microsoft.Maui.Controls.NavigatedToEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs +Microsoft.Maui.Controls.NavigatingFromEventArgs.NavigatingFromEventArgs() -> void +Microsoft.Maui.Controls.NavigationEventArgs +Microsoft.Maui.Controls.NavigationPage +Microsoft.Maui.Controls.NavigationPage.NavigationPage() -> void +Microsoft.Maui.Controls.NavigationPage.Popped -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.PoppedToRoot -> System.EventHandler +Microsoft.Maui.Controls.NavigationPage.Pushed -> System.EventHandler +Microsoft.Maui.Controls.NullEffect +Microsoft.Maui.Controls.NullEffect.NullEffect() -> void +Microsoft.Maui.Controls.On +Microsoft.Maui.Controls.On.On() -> void +Microsoft.Maui.Controls.OnIdiom +Microsoft.Maui.Controls.OnIdiom.Default.get -> T +Microsoft.Maui.Controls.OnIdiom.Default.set -> void +Microsoft.Maui.Controls.OnIdiom.Desktop.get -> T +Microsoft.Maui.Controls.OnIdiom.Desktop.set -> void +Microsoft.Maui.Controls.OnIdiom.OnIdiom() -> void +Microsoft.Maui.Controls.OnIdiom.Phone.get -> T +Microsoft.Maui.Controls.OnIdiom.Phone.set -> void +Microsoft.Maui.Controls.OnIdiom.Tablet.get -> T +Microsoft.Maui.Controls.OnIdiom.Tablet.set -> void +Microsoft.Maui.Controls.OnIdiom.TV.get -> T +Microsoft.Maui.Controls.OnIdiom.TV.set -> void +Microsoft.Maui.Controls.OnIdiom.Watch.get -> T +Microsoft.Maui.Controls.OnIdiom.Watch.set -> void +Microsoft.Maui.Controls.OnPlatform +Microsoft.Maui.Controls.OnPlatform.Default.get -> T +Microsoft.Maui.Controls.OnPlatform.Default.set -> void +Microsoft.Maui.Controls.OnPlatform.OnPlatform() -> void +Microsoft.Maui.Controls.OpenGLView +Microsoft.Maui.Controls.OpenGLView.Display() -> void +Microsoft.Maui.Controls.OpenGLView.DisplayRequested -> System.EventHandler +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.get -> bool +Microsoft.Maui.Controls.OpenGLView.HasRenderLoop.set -> void +Microsoft.Maui.Controls.OpenGLView.OpenGLView() -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.get -> bool +Microsoft.Maui.Controls.OpenRequestedEventArgs.Animated.set -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenRequestedEventArgs(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated) -> void +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.Controls.OpenRequestedEventArgs.OpenSwipeItem.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Controls.OrientationStateTrigger.Orientation.set -> void +Microsoft.Maui.Controls.OrientationStateTrigger.OrientationStateTrigger() -> void +Microsoft.Maui.Controls.Page +Microsoft.Maui.Controls.Page.Appearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ContainerArea.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Page.ContainerArea.set -> void +Microsoft.Maui.Controls.Page.Disappearing -> System.EventHandler +Microsoft.Maui.Controls.Page.ForceLayout() -> void +Microsoft.Maui.Controls.Page.IgnoresContainerArea.get -> bool +Microsoft.Maui.Controls.Page.IgnoresContainerArea.set -> void +Microsoft.Maui.Controls.Page.IsBusy.get -> bool +Microsoft.Maui.Controls.Page.IsBusy.set -> void +Microsoft.Maui.Controls.Page.LayoutChanged -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatedTo -> System.EventHandler +Microsoft.Maui.Controls.Page.NavigatingFrom -> System.EventHandler +Microsoft.Maui.Controls.Page.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.Page.Padding.set -> void +Microsoft.Maui.Controls.Page.Page() -> void +Microsoft.Maui.Controls.Page.SendAppearing() -> void +Microsoft.Maui.Controls.Page.SendBackButtonPressed() -> bool +Microsoft.Maui.Controls.Page.SendDisappearing() -> void +Microsoft.Maui.Controls.Page.UpdateChildrenLayout() -> void +Microsoft.Maui.Controls.PanGestureRecognizer +Microsoft.Maui.Controls.PanGestureRecognizer.PanGestureRecognizer() -> void +Microsoft.Maui.Controls.PanGestureRecognizer.PanUpdated -> System.EventHandler +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.get -> int +Microsoft.Maui.Controls.PanGestureRecognizer.TouchPoints.set -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs +Microsoft.Maui.Controls.PanUpdatedEventArgs.GestureId.get -> int +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly) -> void +Microsoft.Maui.Controls.PanUpdatedEventArgs.StatusType.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalX.get -> double +Microsoft.Maui.Controls.PanUpdatedEventArgs.TotalY.get -> double +Microsoft.Maui.Controls.ParentChangingEventArgs +Microsoft.Maui.Controls.Picker +Microsoft.Maui.Controls.Picker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Picker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Picker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Picker.FontAttributes.set -> void +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Picker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Picker.FontSize.get -> double +Microsoft.Maui.Controls.Picker.FontSize.set -> void +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.Picker.Picker() -> void +Microsoft.Maui.Controls.Picker.SelectedIndex.get -> int +Microsoft.Maui.Controls.Picker.SelectedIndex.set -> void +Microsoft.Maui.Controls.Picker.SelectedIndexChanged -> System.EventHandler +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.Picker.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.PinchGestureRecognizer +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchGestureRecognizer() -> void +Microsoft.Maui.Controls.PinchGestureRecognizer.PinchUpdated -> System.EventHandler +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.PinchGestureUpdatedEventArgs(Microsoft.Maui.GestureStatus status, double scale, Microsoft.Maui.Graphics.Point origin) -> void +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Scale.get -> double +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.ScaleOrigin.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.PinchGestureUpdatedEventArgs.Status.get -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Controls.Platform.ButtonExtensions +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.ElementChangedEventArgs(TElement? oldElement, TElement? newElement) -> void +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.NewElement.get -> TElement? +Microsoft.Maui.Controls.Platform.ElementChangedEventArgs.OldElement.get -> TElement? +Microsoft.Maui.Controls.Platform.PageExtensions +Microsoft.Maui.Controls.Platform.PlatformEffect +Microsoft.Maui.Controls.Platform.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.Platform.SemanticExtensions +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs +Microsoft.Maui.Controls.Platform.VisualElementChangedEventArgs.VisualElementChangedEventArgs(Microsoft.Maui.Controls.VisualElement? oldElement, Microsoft.Maui.Controls.VisualElement? newElement) -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformBehavior +Microsoft.Maui.Controls.PlatformBehavior.PlatformBehavior() -> void +Microsoft.Maui.Controls.PlatformConfiguration.Android +Microsoft.Maui.Controls.PlatformConfiguration.Android.Android() -> void +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Done = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Go = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.ImeMaskAction = 255 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Next = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoAccessoryAction = 536870912 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoExtractUi = 268435456 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoFullscreen = 33554432 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.None = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.NoPersonalizedLearning = 16777216 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Previous = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Search = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags.Send = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.AlwaysAllow = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.CompatibilityMode = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling.NeverAllow = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ShellItem +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Pan = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Unspecified = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +Microsoft.Maui.Controls.PlatformConfiguration.GTK +Microsoft.Maui.Controls.PlatformConfiguration.GTK.GTK() -> void +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +Microsoft.Maui.Controls.PlatformConfiguration.iOS +Microsoft.Maui.Controls.PlatformConfiguration.iOS.iOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Dark = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.ExtraLight = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.Light = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Grouped = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle.Plain = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Always = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Automatic = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode.Never = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle.FullWidth = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.False = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode.True = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.DoNotAdjust = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode.MatchNavigationBarTextLuminosity = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Opaque = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode.Translucent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.Automatic = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FormSheet = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.FullScreen = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.OverFullScreen = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle.PageSheet = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Minimal = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle.Prominent = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Fade = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation.Slide = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.Immediately = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode.WhenFinished = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect +Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowEffect.ShadowEffect() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOS +Microsoft.Maui.Controls.PlatformConfiguration.macOS.macOS() -> void +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.Crossfade = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.None = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideBackward = 7 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideDown = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideForward = 6 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideLeft = 4 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideRight = 5 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle.SlideUp = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.Tizen +Microsoft.Maui.Controls.PlatformConfiguration.Tizen.Tizen() -> void +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle +Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.Windows +Microsoft.Maui.Controls.PlatformConfiguration.Windows.Windows() -> void +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Full = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle.Partial = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Accessible = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode.Inaccessible = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.BottomToTop = 3 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.LeftToRight = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.RightToLeft = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection.TopToBottom = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Bottom = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Default = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement.Top = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SameThread = 0 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateProcess = 2 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode.SeparateThread = 1 -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +Microsoft.Maui.Controls.PlatformEffect.PlatformEffect() -> void +Microsoft.Maui.Controls.PointCollection +Microsoft.Maui.Controls.PointCollection.PointCollection() -> void +Microsoft.Maui.Controls.PoppedToRootEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs +Microsoft.Maui.Controls.PositionChangedEventArgs.CurrentPosition.get -> int +Microsoft.Maui.Controls.PositionChangedEventArgs.PreviousPosition.get -> int +Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Animated = 2 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.Modal = 4 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalAnimated = Microsoft.Maui.Controls.PresentationMode.Animated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.ModalNotAnimated = Microsoft.Maui.Controls.PresentationMode.NotAnimated | Microsoft.Maui.Controls.PresentationMode.Modal -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.PresentationMode.NotAnimated = 1 -> Microsoft.Maui.Controls.PresentationMode +Microsoft.Maui.Controls.ProgressBar +Microsoft.Maui.Controls.ProgressBar.Progress.get -> double +Microsoft.Maui.Controls.ProgressBar.Progress.set -> void +Microsoft.Maui.Controls.ProgressBar.ProgressBar() -> void +Microsoft.Maui.Controls.PropertyChangingEventArgs +Microsoft.Maui.Controls.PropertyChangingEventHandler +Microsoft.Maui.Controls.PropertyCondition +Microsoft.Maui.Controls.PropertyCondition.PropertyCondition() -> void +Microsoft.Maui.Controls.QueryPropertyAttribute +Microsoft.Maui.Controls.RadialGradientBrush +Microsoft.Maui.Controls.RadialGradientBrush.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.RadialGradientBrush.Center.set -> void +Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush() -> void +Microsoft.Maui.Controls.RadialGradientBrush.Radius.get -> double +Microsoft.Maui.Controls.RadialGradientBrush.Radius.set -> void +Microsoft.Maui.Controls.RadioButton +Microsoft.Maui.Controls.RadioButton.BorderWidth.get -> double +Microsoft.Maui.Controls.RadioButton.BorderWidth.set -> void +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.get -> double +Microsoft.Maui.Controls.RadioButton.CharacterSpacing.set -> void +Microsoft.Maui.Controls.RadioButton.CheckedChanged -> System.EventHandler +Microsoft.Maui.Controls.RadioButton.CornerRadius.get -> int +Microsoft.Maui.Controls.RadioButton.CornerRadius.set -> void +Microsoft.Maui.Controls.RadioButton.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.RadioButton.FontAttributes.set -> void +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.RadioButton.FontSize.get -> double +Microsoft.Maui.Controls.RadioButton.FontSize.set -> void +Microsoft.Maui.Controls.RadioButton.IsChecked.get -> bool +Microsoft.Maui.Controls.RadioButton.IsChecked.set -> void +Microsoft.Maui.Controls.RadioButton.RadioButton() -> void +Microsoft.Maui.Controls.RadioButton.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.RadioButton.TextTransform.set -> void +Microsoft.Maui.Controls.RadioButtonGroup +Microsoft.Maui.Controls.ReferenceTypeConverter +Microsoft.Maui.Controls.ReferenceTypeConverter.ReferenceTypeConverter() -> void +Microsoft.Maui.Controls.RefreshView +Microsoft.Maui.Controls.RefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Controls.RefreshView.IsRefreshing.set -> void +Microsoft.Maui.Controls.RefreshView.Refreshing -> System.EventHandler +Microsoft.Maui.Controls.RefreshView.RefreshView() -> void +Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Contains(double x, double y) -> bool +Microsoft.Maui.Controls.Region.Contains(Microsoft.Maui.Graphics.Point pt) -> bool +Microsoft.Maui.Controls.Region.Deflate() -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double left, double top, double right, double bottom) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Inflate(double size) -> Microsoft.Maui.Controls.Region +Microsoft.Maui.Controls.Region.Region() -> void +Microsoft.Maui.Controls.RelativeBindingSource +Microsoft.Maui.Controls.RelativeBindingSource.AncestorLevel.get -> int +Microsoft.Maui.Controls.RelativeBindingSource.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestor = 3 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.FindAncestorBindingContext = 4 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.Self = 2 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RelativeBindingSourceMode.TemplatedParent = 1 -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.RenderWithAttribute +Microsoft.Maui.Controls.ReorderableItemsView +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroups.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.get -> bool +Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItems.set -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderableItemsView() -> void +Microsoft.Maui.Controls.ReorderableItemsView.ReorderCompleted -> System.EventHandler +Microsoft.Maui.Controls.ReorderableItemsView.SendReorderCompleted() -> void +Microsoft.Maui.Controls.ResolutionGroupNameAttribute +Microsoft.Maui.Controls.ResourceDictionary +Microsoft.Maui.Controls.ResourceDictionary.Clear() -> void +Microsoft.Maui.Controls.ResourceDictionary.Count.get -> int +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter +Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.RDSourceTypeConverter() -> void +Microsoft.Maui.Controls.ResourceDictionary.ResourceDictionary() -> void +Microsoft.Maui.Controls.RouteFactory +Microsoft.Maui.Controls.RouteFactory.RouteFactory() -> void +Microsoft.Maui.Controls.Routing +Microsoft.Maui.Controls.RoutingEffect +Microsoft.Maui.Controls.RoutingEffect.RoutingEffect() -> void +Microsoft.Maui.Controls.RowDefinition +Microsoft.Maui.Controls.RowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.Controls.RowDefinition.Height.set -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition() -> void +Microsoft.Maui.Controls.RowDefinition.RowDefinition(Microsoft.Maui.GridLength height) -> void +Microsoft.Maui.Controls.RowDefinition.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.RowDefinitionCollection +Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection() -> void +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter +Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.RowDefinitionCollectionTypeConverter() -> void +Microsoft.Maui.Controls.ScrolledEventArgs +Microsoft.Maui.Controls.ScrolledEventArgs.ScrolledEventArgs(double x, double y) -> void +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrolledEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Auto = 2 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Disabled = 0 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollMode.Enabled = 1 -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Element = 0 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToMode.Position = 1 -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Center = 2 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.End = 3 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.MakeVisible = 0 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToPosition.Start = 1 -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Position.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ShouldAnimate.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs +Microsoft.Maui.Controls.ScrollToRequestEventArgs.GroupIndex.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Index.get -> int +Microsoft.Maui.Controls.ScrollToRequestEventArgs.IsAnimated.get -> bool +Microsoft.Maui.Controls.ScrollToRequestEventArgs.Mode.get -> Microsoft.Maui.Controls.ScrollToMode +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToPosition.get -> Microsoft.Maui.Controls.ScrollToPosition +Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(int index, int groupIndex, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +Microsoft.Maui.Controls.ScrollView +Microsoft.Maui.Controls.ScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.ScrollView.LayoutAreaOverride.set -> void +Microsoft.Maui.Controls.ScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.Controls.ScrollView.Orientation.set -> void +Microsoft.Maui.Controls.ScrollView.Scrolled -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollToRequested -> System.EventHandler +Microsoft.Maui.Controls.ScrollView.ScrollView() -> void +Microsoft.Maui.Controls.ScrollView.ScrollX.get -> double +Microsoft.Maui.Controls.ScrollView.ScrollY.get -> double +Microsoft.Maui.Controls.ScrollView.SendScrollFinished() -> void +Microsoft.Maui.Controls.ScrollView.SetScrolledPosition(double x, double y) -> void +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibility.set -> void +Microsoft.Maui.Controls.SearchBar +Microsoft.Maui.Controls.SearchBar.CursorPosition.get -> int +Microsoft.Maui.Controls.SearchBar.CursorPosition.set -> void +Microsoft.Maui.Controls.SearchBar.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchBar.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.FontSize.get -> double +Microsoft.Maui.Controls.SearchBar.FontSize.set -> void +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabled.set -> void +Microsoft.Maui.Controls.SearchBar.OnSearchButtonPressed() -> void +Microsoft.Maui.Controls.SearchBar.SearchBar() -> void +Microsoft.Maui.Controls.SearchBar.SearchButtonPressed -> System.EventHandler +Microsoft.Maui.Controls.SearchBar.SelectionLength.get -> int +Microsoft.Maui.Controls.SearchBar.SelectionLength.set -> void +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchBar.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Collapsible = 1 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Expanded = 2 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchBoxVisibility.Hidden = 0 -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.get -> double +Microsoft.Maui.Controls.SearchHandler.CharacterSpacing.set -> void +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.Focus() -> bool +Microsoft.Maui.Controls.SearchHandler.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.Focused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.SearchHandler.FontAttributes.set -> void +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.FontSize.get -> double +Microsoft.Maui.Controls.SearchHandler.FontSize.set -> void +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignment.set -> void +Microsoft.Maui.Controls.SearchHandler.IsFocused.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.get -> bool +Microsoft.Maui.Controls.SearchHandler.IsSearchEnabled.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.get -> Microsoft.Maui.Controls.SearchBoxVisibility +Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibility.set -> void +Microsoft.Maui.Controls.SearchHandler.SearchHandler() -> void +Microsoft.Maui.Controls.SearchHandler.SetIsFocused(bool value) -> void +Microsoft.Maui.Controls.SearchHandler.ShowsResults.get -> bool +Microsoft.Maui.Controls.SearchHandler.ShowsResults.set -> void +Microsoft.Maui.Controls.SearchHandler.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.SearchHandler.TextTransform.set -> void +Microsoft.Maui.Controls.SearchHandler.Unfocus() -> void +Microsoft.Maui.Controls.SearchHandler.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignment.set -> void +Microsoft.Maui.Controls.SelectableItemsView +Microsoft.Maui.Controls.SelectableItemsView.SelectableItemsView() -> void +Microsoft.Maui.Controls.SelectableItemsView.SelectionChanged -> System.EventHandler +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.get -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectableItemsView.SelectionMode.set -> void +Microsoft.Maui.Controls.SelectedItemChangedEventArgs +Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemIndex.get -> int +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs +Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPositionChangedEventArgs(int selectedPosition) -> void +Microsoft.Maui.Controls.SelectionChangedEventArgs +Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Multiple = 2 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.None = 0 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SelectionMode.Single = 1 -> Microsoft.Maui.Controls.SelectionMode +Microsoft.Maui.Controls.SemanticProperties +Microsoft.Maui.Controls.SemanticProperties.SemanticProperties() -> void +Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.Default = 0 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.SeparatorVisibility.None = 1 -> Microsoft.Maui.Controls.SeparatorVisibility +Microsoft.Maui.Controls.Setter +Microsoft.Maui.Controls.Setter.Setter() -> void +Microsoft.Maui.Controls.SettersExtensions +Microsoft.Maui.Controls.Shadow +Microsoft.Maui.Controls.Shadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shadow.Offset.set -> void +Microsoft.Maui.Controls.Shadow.Opacity.get -> float +Microsoft.Maui.Controls.Shadow.Opacity.set -> void +Microsoft.Maui.Controls.Shadow.Radius.get -> float +Microsoft.Maui.Controls.Shadow.Radius.set -> void +Microsoft.Maui.Controls.Shadow.Shadow() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment() -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc) -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.get -> bool +Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArc.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.ArcSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.get -> double +Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngle.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.Shapes.ArcSegment.Size.set -> void +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.get -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirection.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment() -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.BezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2, Microsoft.Maui.Graphics.Point point3) -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.BezierSegment.Point3.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.CompositeTransform() -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.Rotation.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewY.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateX.set -> void +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.get -> double +Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateY.set -> void +Microsoft.Maui.Controls.Shapes.Ellipse +Microsoft.Maui.Controls.Shapes.Ellipse.Ellipse() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.EllipseGeometry.Center.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry() -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.EllipseGeometry(Microsoft.Maui.Graphics.Point center, double radiusX, double radiusY) -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.EvenOdd = 0 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.FillRule.Nonzero = 1 -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Geometry +Microsoft.Maui.Controls.Shapes.Geometry.Geometry() -> void +Microsoft.Maui.Controls.Shapes.GeometryCollection +Microsoft.Maui.Controls.Shapes.GeometryCollection.GeometryCollection() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.GeometryGroup() -> void +Microsoft.Maui.Controls.Shapes.GeometryGroup.InvalidateGeometryRequested -> System.EventHandler +Microsoft.Maui.Controls.Shapes.GeometryHelper +Microsoft.Maui.Controls.Shapes.IGeometry +Microsoft.Maui.Controls.Shapes.Line +Microsoft.Maui.Controls.Shapes.Line.Line() -> void +Microsoft.Maui.Controls.Shapes.Line.Line(double x1, double y1, double x2, double y2) -> void +Microsoft.Maui.Controls.Shapes.Line.X1.get -> double +Microsoft.Maui.Controls.Shapes.Line.X1.set -> void +Microsoft.Maui.Controls.Shapes.Line.X2.get -> double +Microsoft.Maui.Controls.Shapes.Line.X2.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y1.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y1.set -> void +Microsoft.Maui.Controls.Shapes.Line.Y2.get -> double +Microsoft.Maui.Controls.Shapes.Line.Y2.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.EndPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry() -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.LineGeometry(Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineGeometry.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.LineSegment +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment() -> void +Microsoft.Maui.Controls.Shapes.LineSegment.LineSegment(Microsoft.Maui.Graphics.Point point) -> void +Microsoft.Maui.Controls.Shapes.LineSegment.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.LineSegment.Point.set -> void +Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Matrix.Append(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Determinant.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.HasInverse.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.Invert() -> void +Microsoft.Maui.Controls.Shapes.Matrix.IsIdentity.get -> bool +Microsoft.Maui.Controls.Shapes.Matrix.M11.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M11.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M12.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M12.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M21.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M21.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.M22.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.M22.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Matrix(double m11, double m12, double m21, double m22, double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetX.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.get -> double +Microsoft.Maui.Controls.Shapes.Matrix.OffsetY.set -> void +Microsoft.Maui.Controls.Shapes.Matrix.Prepend(Microsoft.Maui.Controls.Shapes.Matrix matrix) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Rotate(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAt(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotateAtPrepend(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.RotatePrepend(double angle) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Scale(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAt(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScaleAtPrepend(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.ScalePrepend(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SetIdentity() -> void +Microsoft.Maui.Controls.Shapes.Matrix.Skew(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.SkewPrepend(double skewX, double skewY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point point) -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.Matrix.Translate(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.Matrix.TranslatePrepend(double offsetX, double offsetY) -> void +Microsoft.Maui.Controls.Shapes.MatrixExtensions +Microsoft.Maui.Controls.Shapes.MatrixTransform +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.MatrixTransform.Matrix.set -> void +Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixTransform() -> void +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter +Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.MatrixTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Path +Microsoft.Maui.Controls.Shapes.Path.Path() -> void +Microsoft.Maui.Controls.Shapes.PathFigure +Microsoft.Maui.Controls.Shapes.PathFigure.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsClosed.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.get -> bool +Microsoft.Maui.Controls.Shapes.PathFigure.IsFilled.set -> void +Microsoft.Maui.Controls.Shapes.PathFigure.PathFigure() -> void +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.PathFigure.StartPoint.set -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollection +Microsoft.Maui.Controls.Shapes.PathFigureCollection.PathFigureCollection() -> void +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter +Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.PathFigureCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PathGeometry +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.PathGeometry.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry() -> void +Microsoft.Maui.Controls.Shapes.PathGeometryConverter +Microsoft.Maui.Controls.Shapes.PathGeometryConverter.PathGeometryConverter() -> void +Microsoft.Maui.Controls.Shapes.PathSegment +Microsoft.Maui.Controls.Shapes.PathSegment.BatchBegin() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.BatchCommit() -> void +Microsoft.Maui.Controls.Shapes.PathSegment.PathSegment() -> void +Microsoft.Maui.Controls.Shapes.PathSegmentCollection +Microsoft.Maui.Controls.Shapes.PathSegmentCollection.PathSegmentCollection() -> void +Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Flat = 0 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineCap.Square = 1 -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Bevel = 1 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Miter = 0 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PenLineJoin.Round = 2 -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.PointCollectionConverter +Microsoft.Maui.Controls.Shapes.PointCollectionConverter.PointCollectionConverter() -> void +Microsoft.Maui.Controls.Shapes.PolyBezierSegment +Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.Polygon +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polygon.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polygon.Polygon() -> void +Microsoft.Maui.Controls.Shapes.Polyline +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.get -> Microsoft.Maui.Controls.Shapes.FillRule +Microsoft.Maui.Controls.Shapes.Polyline.FillRule.set -> void +Microsoft.Maui.Controls.Shapes.Polyline.Polyline() -> void +Microsoft.Maui.Controls.Shapes.PolyLineSegment +Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment() -> void +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2.set -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment() -> void +Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.QuadraticBezierSegment(Microsoft.Maui.Graphics.Point point1, Microsoft.Maui.Graphics.Point point2) -> void +Microsoft.Maui.Controls.Shapes.Rectangle +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusX.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.get -> double +Microsoft.Maui.Controls.Shapes.Rectangle.RadiusY.set -> void +Microsoft.Maui.Controls.Shapes.Rectangle.Rectangle() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectangleGeometry(Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.Angle.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.RotateTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform() -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle) -> void +Microsoft.Maui.Controls.Shapes.RotateTransform.RotateTransform(double angle, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangle.RoundRectangle() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.get -> Microsoft.Maui.CornerRadius +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadius.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.Rect.set -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry() -> void +Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RoundRectangleGeometry(Microsoft.Maui.CornerRadius cornerRadius, Microsoft.Maui.Graphics.Rect rect) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform() -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleX.set -> void +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.get -> double +Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleY.set -> void +Microsoft.Maui.Controls.Shapes.Shape +Microsoft.Maui.Controls.Shapes.Shape.Aspect.get -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Shapes.Shape.Aspect.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Fill.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Fill.set -> void +Microsoft.Maui.Controls.Shapes.Shape.Shape() -> void +Microsoft.Maui.Controls.Shapes.Shape.Stroke.get -> Microsoft.Maui.Controls.Brush! +Microsoft.Maui.Controls.Shapes.Shape.Stroke.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.get -> Microsoft.Maui.Controls.DoubleCollection! +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArray.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffset.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeDashPattern.get -> float[]! +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.get -> Microsoft.Maui.Controls.Shapes.PenLineCap +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCap.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.get -> Microsoft.Maui.Controls.Shapes.PenLineJoin +Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoin.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimit.set -> void +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.get -> double +Microsoft.Maui.Controls.Shapes.Shape.StrokeThickness.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.AngleY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterX.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.get -> double +Microsoft.Maui.Controls.Shapes.SkewTransform.CenterY.set -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform() -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY) -> void +Microsoft.Maui.Controls.Shapes.SkewTransform.SkewTransform(double angleX, double angleY, double centerX, double centerY) -> void +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter +Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.StrokeShapeTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.Transform +Microsoft.Maui.Controls.Shapes.Transform.Transform() -> void +Microsoft.Maui.Controls.Shapes.Transform.Value.get -> Microsoft.Maui.Controls.Shapes.Matrix +Microsoft.Maui.Controls.Shapes.Transform.Value.set -> void +Microsoft.Maui.Controls.Shapes.TransformCollection +Microsoft.Maui.Controls.Shapes.TransformCollection.TransformCollection() -> void +Microsoft.Maui.Controls.Shapes.TransformGroup +Microsoft.Maui.Controls.Shapes.TransformGroup.TransformGroup() -> void +Microsoft.Maui.Controls.Shapes.TransformTypeConverter +Microsoft.Maui.Controls.Shapes.TransformTypeConverter.TransformTypeConverter() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform() -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.TranslateTransform(double x, double y) -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.X.set -> void +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.get -> double +Microsoft.Maui.Controls.Shapes.TranslateTransform.Y.set -> void +Microsoft.Maui.Controls.Shell +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspect.set -> void +Microsoft.Maui.Controls.Shell.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.Controls.Shell.FlyoutBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.get -> Microsoft.Maui.Controls.FlyoutHeaderBehavior +Microsoft.Maui.Controls.Shell.FlyoutHeaderBehavior.set -> void +Microsoft.Maui.Controls.Shell.FlyoutHeight.get -> double +Microsoft.Maui.Controls.Shell.FlyoutHeight.set -> void +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.get -> bool +Microsoft.Maui.Controls.Shell.FlyoutIsPresented.set -> void +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.get -> Microsoft.Maui.Controls.ScrollMode +Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollMode.set -> void +Microsoft.Maui.Controls.Shell.FlyoutWidth.get -> double +Microsoft.Maui.Controls.Shell.FlyoutWidth.set -> void +Microsoft.Maui.Controls.Shell.Navigated -> System.EventHandler +Microsoft.Maui.Controls.Shell.Navigating -> System.EventHandler +Microsoft.Maui.Controls.Shell.Shell() -> void +Microsoft.Maui.Controls.ShellAppearance +Microsoft.Maui.Controls.ShellAppearance.FlyoutHeight.get -> double +Microsoft.Maui.Controls.ShellAppearance.FlyoutWidth.get -> double +Microsoft.Maui.Controls.ShellAppearance.MakeComplete() -> void +Microsoft.Maui.Controls.ShellContent +Microsoft.Maui.Controls.ShellContent.ShellContent() -> void +Microsoft.Maui.Controls.ShellGroupItem +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.get -> Microsoft.Maui.Controls.FlyoutDisplayOptions +Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptions.set -> void +Microsoft.Maui.Controls.ShellGroupItem.ShellGroupItem() -> void +Microsoft.Maui.Controls.ShellItem +Microsoft.Maui.Controls.ShellItem.ShellItem() -> void +Microsoft.Maui.Controls.ShellNavigatedEventArgs +Microsoft.Maui.Controls.ShellNavigatedEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigatingDeferral +Microsoft.Maui.Controls.ShellNavigatingDeferral.Complete() -> void +Microsoft.Maui.Controls.ShellNavigatingEventArgs +Microsoft.Maui.Controls.ShellNavigatingEventArgs.CanCancel.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancel() -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Cancelled.get -> bool +Microsoft.Maui.Controls.ShellNavigatingEventArgs.Source.get -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Insert = 4 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Pop = 2 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.PopToRoot = 3 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Push = 1 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Remove = 5 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellContentChanged = 8 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellItemChanged = 6 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.ShellSectionChanged = 7 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationSource.Unknown = 0 -> Microsoft.Maui.Controls.ShellNavigationSource +Microsoft.Maui.Controls.ShellNavigationState +Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState() -> void +Microsoft.Maui.Controls.ShellSection +Microsoft.Maui.Controls.ShellSection.ShellSection() -> void +Microsoft.Maui.Controls.ShellTemplatedViewManager +Microsoft.Maui.Controls.Slider +Microsoft.Maui.Controls.Slider.DragCompleted -> System.EventHandler +Microsoft.Maui.Controls.Slider.DragStarted -> System.EventHandler +Microsoft.Maui.Controls.Slider.Maximum.get -> double +Microsoft.Maui.Controls.Slider.Maximum.set -> void +Microsoft.Maui.Controls.Slider.Minimum.get -> double +Microsoft.Maui.Controls.Slider.Minimum.set -> void +Microsoft.Maui.Controls.Slider.Slider() -> void +Microsoft.Maui.Controls.Slider.Slider(double min, double max, double val) -> void +Microsoft.Maui.Controls.Slider.Value.get -> double +Microsoft.Maui.Controls.Slider.Value.set -> void +Microsoft.Maui.Controls.Slider.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Center = 1 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.End = 2 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsAlignment.Start = 0 -> Microsoft.Maui.Controls.SnapPointsAlignment +Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.Mandatory = 1 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.MandatorySingle = 2 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SnapPointsType.None = 0 -> Microsoft.Maui.Controls.SnapPointsType +Microsoft.Maui.Controls.SolidColorBrush +Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush() -> void +Microsoft.Maui.Controls.Span +Microsoft.Maui.Controls.Span.CharacterSpacing.get -> double +Microsoft.Maui.Controls.Span.CharacterSpacing.set -> void +Microsoft.Maui.Controls.Span.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.Span.FontAttributes.set -> void +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.Span.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.Span.FontSize.get -> double +Microsoft.Maui.Controls.Span.FontSize.set -> void +Microsoft.Maui.Controls.Span.LineHeight.get -> double +Microsoft.Maui.Controls.Span.LineHeight.set -> void +Microsoft.Maui.Controls.Span.Span() -> void +Microsoft.Maui.Controls.Span.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.Controls.Span.TextDecorations.set -> void +Microsoft.Maui.Controls.Span.TextTransform.get -> Microsoft.Maui.TextTransform +Microsoft.Maui.Controls.Span.TextTransform.set -> void +Microsoft.Maui.Controls.StackBase +Microsoft.Maui.Controls.StackBase.Spacing.get -> double +Microsoft.Maui.Controls.StackBase.Spacing.set -> void +Microsoft.Maui.Controls.StackBase.StackBase() -> void +Microsoft.Maui.Controls.StackLayout +Microsoft.Maui.Controls.StackLayout.Orientation.get -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackLayout.Orientation.set -> void +Microsoft.Maui.Controls.StackLayout.StackLayout() -> void +Microsoft.Maui.Controls.StackLayoutManager +Microsoft.Maui.Controls.StackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Horizontal = 1 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StackOrientation.Vertical = 0 -> Microsoft.Maui.Controls.StackOrientation +Microsoft.Maui.Controls.StateTrigger +Microsoft.Maui.Controls.StateTrigger.IsActive.get -> bool +Microsoft.Maui.Controls.StateTrigger.IsActive.set -> void +Microsoft.Maui.Controls.StateTrigger.StateTrigger() -> void +Microsoft.Maui.Controls.StateTriggerBase +Microsoft.Maui.Controls.StateTriggerBase.IsActive.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.IsActiveChanged -> System.EventHandler +Microsoft.Maui.Controls.StateTriggerBase.IsAttached.get -> bool +Microsoft.Maui.Controls.StateTriggerBase.SetActive(bool active) -> void +Microsoft.Maui.Controls.StateTriggerBase.StateTriggerBase() -> void +Microsoft.Maui.Controls.Stepper +Microsoft.Maui.Controls.Stepper.Increment.get -> double +Microsoft.Maui.Controls.Stepper.Increment.set -> void +Microsoft.Maui.Controls.Stepper.Maximum.get -> double +Microsoft.Maui.Controls.Stepper.Maximum.set -> void +Microsoft.Maui.Controls.Stepper.Minimum.get -> double +Microsoft.Maui.Controls.Stepper.Minimum.set -> void +Microsoft.Maui.Controls.Stepper.Stepper() -> void +Microsoft.Maui.Controls.Stepper.Stepper(double min, double max, double val, double increment) -> void +Microsoft.Maui.Controls.Stepper.Value.get -> double +Microsoft.Maui.Controls.Stepper.Value.set -> void +Microsoft.Maui.Controls.Stepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Controls.StreamImageSource +Microsoft.Maui.Controls.StreamImageSource.StreamImageSource() -> void +Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Fill = 1 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.None = 0 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.Uniform = 2 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.Stretch.UniformToFill = 3 -> Microsoft.Maui.Controls.Stretch +Microsoft.Maui.Controls.StructuredItemsView +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.get -> Microsoft.Maui.Controls.ItemSizingStrategy +Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategy.set -> void +Microsoft.Maui.Controls.StructuredItemsView.StructuredItemsView() -> void +Microsoft.Maui.Controls.Style +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.get -> bool +Microsoft.Maui.Controls.Style.ApplyToDerivedTypes.set -> void +Microsoft.Maui.Controls.Style.CanCascade.get -> bool +Microsoft.Maui.Controls.Style.CanCascade.set -> void +Microsoft.Maui.Controls.StyleSheets.StyleSheet +Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.Clockwise = 1 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SweepDirection.CounterClockwise = 0 -> Microsoft.Maui.Controls.SweepDirection +Microsoft.Maui.Controls.SwipeChangingEventArgs +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.get -> double +Microsoft.Maui.Controls.SwipeChangingEventArgs.Offset.set -> void +Microsoft.Maui.Controls.SwipeChangingEventArgs.SwipeChangingEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, double offset) -> void +Microsoft.Maui.Controls.SwipedEventArgs +Microsoft.Maui.Controls.SwipedEventArgs.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeEndedEventArgs +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.get -> bool +Microsoft.Maui.Controls.SwipeEndedEventArgs.IsOpen.set -> void +Microsoft.Maui.Controls.SwipeEndedEventArgs.SwipeEndedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection, bool isOpen) -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.Controls.SwipeGestureRecognizer.Direction.set -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Swiped -> System.EventHandler +Microsoft.Maui.Controls.SwipeGestureRecognizer.SwipeGestureRecognizer() -> void +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.get -> uint +Microsoft.Maui.Controls.SwipeGestureRecognizer.Threshold.set -> void +Microsoft.Maui.Controls.SwipeItem +Microsoft.Maui.Controls.SwipeItem.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItem.IsVisible.get -> bool +Microsoft.Maui.Controls.SwipeItem.IsVisible.set -> void +Microsoft.Maui.Controls.SwipeItem.SwipeItem() -> void +Microsoft.Maui.Controls.SwipeItems +Microsoft.Maui.Controls.SwipeItems.Clear() -> void +Microsoft.Maui.Controls.SwipeItems.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.SwipeItems.Count.get -> int +Microsoft.Maui.Controls.SwipeItems.IsReadOnly.get -> bool +Microsoft.Maui.Controls.SwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.Controls.SwipeItems.Mode.set -> void +Microsoft.Maui.Controls.SwipeItems.RemoveAt(int index) -> void +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvoked.set -> void +Microsoft.Maui.Controls.SwipeItems.SwipeItems() -> void +Microsoft.Maui.Controls.SwipeItemView +Microsoft.Maui.Controls.SwipeItemView.Invoked -> System.EventHandler +Microsoft.Maui.Controls.SwipeItemView.OnInvoked() -> void +Microsoft.Maui.Controls.SwipeItemView.SwipeItemView() -> void +Microsoft.Maui.Controls.SwipeStartedEventArgs +Microsoft.Maui.Controls.SwipeStartedEventArgs.SwipeStartedEventArgs(Microsoft.Maui.SwipeDirection swipeDirection) -> void +Microsoft.Maui.Controls.SwipeView +Microsoft.Maui.Controls.SwipeView.Close(bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.CloseRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.Open(Microsoft.Maui.OpenSwipeItem openSwipeItem, bool animated = true) -> void +Microsoft.Maui.Controls.SwipeView.OpenRequested -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeChanging -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeEnded -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeStarted -> System.EventHandler +Microsoft.Maui.Controls.SwipeView.SwipeView() -> void +Microsoft.Maui.Controls.SwipeView.Threshold.get -> double +Microsoft.Maui.Controls.SwipeView.Threshold.set -> void +Microsoft.Maui.Controls.Switch +Microsoft.Maui.Controls.Switch.IsToggled.get -> bool +Microsoft.Maui.Controls.Switch.IsToggled.set -> void +Microsoft.Maui.Controls.Switch.Switch() -> void +Microsoft.Maui.Controls.Switch.Toggled -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell +Microsoft.Maui.Controls.SwitchCell.On.get -> bool +Microsoft.Maui.Controls.SwitchCell.On.set -> void +Microsoft.Maui.Controls.SwitchCell.OnChanged -> System.EventHandler +Microsoft.Maui.Controls.SwitchCell.SwitchCell() -> void +Microsoft.Maui.Controls.Tab +Microsoft.Maui.Controls.Tab.Tab() -> void +Microsoft.Maui.Controls.TabBar +Microsoft.Maui.Controls.TabBar.TabBar() -> void +Microsoft.Maui.Controls.TabbedPage +Microsoft.Maui.Controls.TabbedPage.TabbedPage() -> void +Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Data = 3 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Form = 2 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Menu = 0 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableIntent.Settings = 1 -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableRoot +Microsoft.Maui.Controls.TableRoot.TableRoot() -> void +Microsoft.Maui.Controls.TableSection +Microsoft.Maui.Controls.TableSection.TableSection() -> void +Microsoft.Maui.Controls.TableSectionBase +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableSectionBase.Clear() -> void +Microsoft.Maui.Controls.TableSectionBase.CollectionChanged -> System.Collections.Specialized.NotifyCollectionChangedEventHandler +Microsoft.Maui.Controls.TableSectionBase.Count.get -> int +Microsoft.Maui.Controls.TableSectionBase.RemoveAt(int index) -> void +Microsoft.Maui.Controls.TableSectionBase.TableSectionBase() -> void +Microsoft.Maui.Controls.TableView +Microsoft.Maui.Controls.TableView.HasUnevenRows.get -> bool +Microsoft.Maui.Controls.TableView.HasUnevenRows.set -> void +Microsoft.Maui.Controls.TableView.Intent.get -> Microsoft.Maui.Controls.TableIntent +Microsoft.Maui.Controls.TableView.Intent.set -> void +Microsoft.Maui.Controls.TableView.ModelChanged -> System.EventHandler +Microsoft.Maui.Controls.TableView.RowHeight.get -> int +Microsoft.Maui.Controls.TableView.RowHeight.set -> void +Microsoft.Maui.Controls.TableView.TableView() -> void +Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Default = 0 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Hidden = 1 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.Icons = 2 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnBottom = 4 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TabsStyle.OnNavigation = 3 -> Microsoft.Maui.Controls.TabsStyle +Microsoft.Maui.Controls.TapGestureRecognizer +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.get -> int +Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequired.set -> void +Microsoft.Maui.Controls.TapGestureRecognizer.TapGestureRecognizer() -> void +Microsoft.Maui.Controls.TapGestureRecognizer.Tapped -> System.EventHandler +Microsoft.Maui.Controls.TappedEventArgs +Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Desktop = 3 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Phone = 1 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Tablet = 2 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.TV = 4 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Unsupported = 0 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TargetIdiom.Watch = 5 -> Microsoft.Maui.Controls.TargetIdiom +Microsoft.Maui.Controls.TemplateBinding +Microsoft.Maui.Controls.TemplateBinding.TemplateBinding() -> void +Microsoft.Maui.Controls.TemplatedPage +Microsoft.Maui.Controls.TemplatedPage.TemplatedPage() -> void +Microsoft.Maui.Controls.TemplatedView +Microsoft.Maui.Controls.TemplatedView.TemplatedView() -> void +Microsoft.Maui.Controls.TemplateExtensions +Microsoft.Maui.Controls.TextAlignmentConverter +Microsoft.Maui.Controls.TextAlignmentConverter.TextAlignmentConverter() -> void +Microsoft.Maui.Controls.TextCell +Microsoft.Maui.Controls.TextCell.TextCell() -> void +Microsoft.Maui.Controls.TextChangedEventArgs +Microsoft.Maui.Controls.TextDecorationConverter +Microsoft.Maui.Controls.TextDecorationConverter.TextDecorationConverter() -> void +Microsoft.Maui.Controls.TimePicker +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.get -> double +Microsoft.Maui.Controls.TimePicker.CharacterSpacing.set -> void +Microsoft.Maui.Controls.TimePicker.FontAttributes.get -> Microsoft.Maui.Controls.FontAttributes +Microsoft.Maui.Controls.TimePicker.FontAttributes.set -> void +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.get -> bool +Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabled.set -> void +Microsoft.Maui.Controls.TimePicker.FontSize.get -> double +Microsoft.Maui.Controls.TimePicker.FontSize.set -> void +Microsoft.Maui.Controls.TimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.Controls.TimePicker.Time.set -> void +Microsoft.Maui.Controls.TimePicker.TimePicker() -> void +Microsoft.Maui.Controls.ToggledEventArgs +Microsoft.Maui.Controls.ToggledEventArgs.ToggledEventArgs(bool value) -> void +Microsoft.Maui.Controls.ToggledEventArgs.Value.get -> bool +Microsoft.Maui.Controls.Toolbar +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.BackButtonEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.BarHeight.get -> double? +Microsoft.Maui.Controls.Toolbar.BarHeight.set -> void +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.get -> bool +Microsoft.Maui.Controls.Toolbar.DynamicOverflowEnabled.set -> void +Microsoft.Maui.Controls.Toolbar.IsVisible.get -> bool +Microsoft.Maui.Controls.Toolbar.IsVisible.set -> void +Microsoft.Maui.Controls.Toolbar.PropertyChanged -> System.ComponentModel.PropertyChangedEventHandler +Microsoft.Maui.Controls.ToolbarItem +Microsoft.Maui.Controls.ToolbarItem.Order.get -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItem.Order.set -> void +Microsoft.Maui.Controls.ToolbarItem.Priority.get -> int +Microsoft.Maui.Controls.ToolbarItem.Priority.set -> void +Microsoft.Maui.Controls.ToolbarItem.ToolbarItem() -> void +Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Default = 0 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Primary = 1 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.ToolbarItemOrder.Secondary = 2 -> Microsoft.Maui.Controls.ToolbarItemOrder +Microsoft.Maui.Controls.TouchEventArgs +Microsoft.Maui.Controls.TouchEventArgs.IsInsideBounds.get -> bool +Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs() -> void +Microsoft.Maui.Controls.Trigger +Microsoft.Maui.Controls.TriggerAction +Microsoft.Maui.Controls.TriggerAction.TriggerAction() -> void +Microsoft.Maui.Controls.TriggerBase +Microsoft.Maui.Controls.TriggerBase.IsSealed.get -> bool +Microsoft.Maui.Controls.TypeTypeConverter +Microsoft.Maui.Controls.TypeTypeConverter.TypeTypeConverter() -> void +Microsoft.Maui.Controls.UnsolvableConstraintsException +Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException() -> void +Microsoft.Maui.Controls.UriImageSource +Microsoft.Maui.Controls.UriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.Controls.UriImageSource.CacheValidity.set -> void +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.Controls.UriImageSource.CachingEnabled.set -> void +Microsoft.Maui.Controls.UriImageSource.UriImageSource() -> void +Microsoft.Maui.Controls.UriTypeConverter +Microsoft.Maui.Controls.UriTypeConverter.UriTypeConverter() -> void +Microsoft.Maui.Controls.UrlWebViewSource +Microsoft.Maui.Controls.UrlWebViewSource.UrlWebViewSource() -> void +Microsoft.Maui.Controls.ValueChangedEventArgs +Microsoft.Maui.Controls.ValueChangedEventArgs.NewValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.OldValue.get -> double +Microsoft.Maui.Controls.ValueChangedEventArgs.ValueChangedEventArgs(double oldValue, double newValue) -> void +Microsoft.Maui.Controls.VerticalStackLayout +Microsoft.Maui.Controls.VerticalStackLayout.VerticalStackLayout() -> void +Microsoft.Maui.Controls.View +Microsoft.Maui.Controls.View.GetRendererOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.HorizontalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.HorizontalOptions.set -> void +Microsoft.Maui.Controls.View.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.Controls.View.Margin.set -> void +Microsoft.Maui.Controls.View.propertyMapper -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.Controls.View.VerticalOptions.get -> Microsoft.Maui.Controls.LayoutOptions +Microsoft.Maui.Controls.View.VerticalOptions.set -> void +Microsoft.Maui.Controls.View.View() -> void +Microsoft.Maui.Controls.ViewCell +Microsoft.Maui.Controls.ViewCell.ViewCell() -> void +Microsoft.Maui.Controls.ViewExtensions +Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Default = 0 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Prelight = 1 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.ViewState.Pressed = 2 -> Microsoft.Maui.Controls.ViewState +Microsoft.Maui.Controls.VisibilityExtensions +Microsoft.Maui.Controls.VisualAttribute +Microsoft.Maui.Controls.VisualElement +Microsoft.Maui.Controls.VisualElement.AnchorX.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorX.set -> void +Microsoft.Maui.Controls.VisualElement.AnchorY.get -> double +Microsoft.Maui.Controls.VisualElement.AnchorY.set -> void +Microsoft.Maui.Controls.VisualElement.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.BatchBegin() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommit() -> void +Microsoft.Maui.Controls.VisualElement.BatchCommitted -> System.EventHandler> +Microsoft.Maui.Controls.VisualElement.Batched.get -> bool +Microsoft.Maui.Controls.VisualElement.Bounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.ChildrenReordered -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Controls.VisualElement.DesiredSize.set -> void +Microsoft.Maui.Controls.VisualElement.DisableLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.DisableLayout.set -> void +Microsoft.Maui.Controls.VisualElement.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.VisualElement.FlowDirection.set -> void +Microsoft.Maui.Controls.VisualElement.Focus() -> bool +Microsoft.Maui.Controls.VisualElement.FocusChangeRequested -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Focused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Focus.set -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.FocusRequestArgs() -> void +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.get -> bool +Microsoft.Maui.Controls.VisualElement.FocusRequestArgs.Result.set -> void +Microsoft.Maui.Controls.VisualElement.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Controls.VisualElement.Frame.set -> void +Microsoft.Maui.Controls.VisualElement.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Controls.VisualElement.Handler.set -> void +Microsoft.Maui.Controls.VisualElement.Height.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.HeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.InputTransparent.get -> bool +Microsoft.Maui.Controls.VisualElement.InputTransparent.set -> void +Microsoft.Maui.Controls.VisualElement.InvalidateMeasureNonVirtual(Microsoft.Maui.Controls.Internals.InvalidationTrigger trigger) -> void +Microsoft.Maui.Controls.VisualElement.IsEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsFocused.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.get -> bool +Microsoft.Maui.Controls.VisualElement.IsInPlatformLayout.set -> void +Microsoft.Maui.Controls.VisualElement.IsLoaded.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformEnabled.set -> void +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.get -> bool +Microsoft.Maui.Controls.VisualElement.IsPlatformStateConsistent.set -> void +Microsoft.Maui.Controls.VisualElement.IsVisible.get -> bool +Microsoft.Maui.Controls.VisualElement.IsVisible.set -> void +Microsoft.Maui.Controls.VisualElement.Layout(Microsoft.Maui.Graphics.Rect bounds) -> void +Microsoft.Maui.Controls.VisualElement.Loaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MaximumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MeasureInvalidated -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumHeightRequest.set -> void +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.MinimumWidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.OnChildrenReordered() -> void +Microsoft.Maui.Controls.VisualElement.Opacity.get -> double +Microsoft.Maui.Controls.VisualElement.Opacity.set -> void +Microsoft.Maui.Controls.VisualElement.PlatformSizeChanged() -> void +Microsoft.Maui.Controls.VisualElement.Rotation.get -> double +Microsoft.Maui.Controls.VisualElement.Rotation.set -> void +Microsoft.Maui.Controls.VisualElement.RotationX.get -> double +Microsoft.Maui.Controls.VisualElement.RotationX.set -> void +Microsoft.Maui.Controls.VisualElement.RotationY.get -> double +Microsoft.Maui.Controls.VisualElement.RotationY.set -> void +Microsoft.Maui.Controls.VisualElement.Scale.get -> double +Microsoft.Maui.Controls.VisualElement.Scale.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleX.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleX.set -> void +Microsoft.Maui.Controls.VisualElement.ScaleY.get -> double +Microsoft.Maui.Controls.VisualElement.ScaleY.set -> void +Microsoft.Maui.Controls.VisualElement.Shadow.get -> Microsoft.Maui.Controls.Shadow! +Microsoft.Maui.Controls.VisualElement.Shadow.set -> void +Microsoft.Maui.Controls.VisualElement.SizeAllocated(double width, double height) -> void +Microsoft.Maui.Controls.VisualElement.SizeChanged -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.TranslationX.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationX.set -> void +Microsoft.Maui.Controls.VisualElement.TranslationY.get -> double +Microsoft.Maui.Controls.VisualElement.TranslationY.set -> void +Microsoft.Maui.Controls.VisualElement.Unfocus() -> void +Microsoft.Maui.Controls.VisualElement.Unfocused -> System.EventHandler +Microsoft.Maui.Controls.VisualElement.Unloaded -> System.EventHandler? +Microsoft.Maui.Controls.VisualElement.VisibilityConverter +Microsoft.Maui.Controls.VisualElement.VisibilityConverter.VisibilityConverter() -> void +Microsoft.Maui.Controls.VisualElement.VisualElement() -> void +Microsoft.Maui.Controls.VisualElement.Width.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.get -> double +Microsoft.Maui.Controls.VisualElement.WidthRequest.set -> void +Microsoft.Maui.Controls.VisualElement.X.get -> double +Microsoft.Maui.Controls.VisualElement.Y.get -> double +Microsoft.Maui.Controls.VisualElement.ZIndex.get -> int +Microsoft.Maui.Controls.VisualElement.ZIndex.set -> void +Microsoft.Maui.Controls.VisualMarker +Microsoft.Maui.Controls.VisualMarker.DefaultVisual +Microsoft.Maui.Controls.VisualMarker.DefaultVisual.DefaultVisual() -> void +Microsoft.Maui.Controls.VisualState +Microsoft.Maui.Controls.VisualState.VisualState() -> void +Microsoft.Maui.Controls.VisualStateGroup +Microsoft.Maui.Controls.VisualStateGroup.VisualStateGroup() -> void +Microsoft.Maui.Controls.VisualStateGroupList +Microsoft.Maui.Controls.VisualStateGroupList.Clear() -> void +Microsoft.Maui.Controls.VisualStateGroupList.Count.get -> int +Microsoft.Maui.Controls.VisualStateGroupList.IsReadOnly.get -> bool +Microsoft.Maui.Controls.VisualStateGroupList.RemoveAt(int index) -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList() -> void +Microsoft.Maui.Controls.VisualStateGroupList.VisualStateGroupList(bool isDefault) -> void +Microsoft.Maui.Controls.VisualStateManager +Microsoft.Maui.Controls.VisualStateManager.CommonStates +Microsoft.Maui.Controls.VisualStateManager.CommonStates.CommonStates() -> void +Microsoft.Maui.Controls.VisualTypeConverter +Microsoft.Maui.Controls.VisualTypeConverter.VisualTypeConverter() -> void +Microsoft.Maui.Controls.WebNavigatedEventArgs +Microsoft.Maui.Controls.WebNavigatedEventArgs.Result.get -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.Controls.WebNavigatingEventArgs +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.get -> bool +Microsoft.Maui.Controls.WebNavigatingEventArgs.Cancel.set -> void +Microsoft.Maui.Controls.WebNavigationEventArgs +Microsoft.Maui.Controls.WebNavigationEventArgs.NavigationEvent.get -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.Controls.WebView +Microsoft.Maui.Controls.WebView.CanGoBack.get -> bool +Microsoft.Maui.Controls.WebView.CanGoForward.get -> bool +Microsoft.Maui.Controls.WebView.GoBack() -> void +Microsoft.Maui.Controls.WebView.GoForward() -> void +Microsoft.Maui.Controls.WebView.Navigated -> System.EventHandler +Microsoft.Maui.Controls.WebView.Navigating -> System.EventHandler +Microsoft.Maui.Controls.WebView.Reload() -> void +Microsoft.Maui.Controls.WebView.WebView() -> void +Microsoft.Maui.Controls.WebViewSource +Microsoft.Maui.Controls.WebViewSource.OnSourceChanged() -> void +Microsoft.Maui.Controls.WebViewSource.WebViewSource() -> void +Microsoft.Maui.Controls.WebViewSourceTypeConverter +Microsoft.Maui.Controls.WebViewSourceTypeConverter.WebViewSourceTypeConverter() -> void +Microsoft.Maui.Controls.Window +Microsoft.Maui.Controls.Window.Activated -> System.EventHandler? +Microsoft.Maui.Controls.Window.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Backgrounding -> System.EventHandler? +Microsoft.Maui.Controls.Window.Created -> System.EventHandler? +Microsoft.Maui.Controls.Window.Deactivated -> System.EventHandler? +Microsoft.Maui.Controls.Window.Destroying -> System.EventHandler? +Microsoft.Maui.Controls.Window.DisplayDensity.get -> float +Microsoft.Maui.Controls.Window.DisplayDensityChanged -> System.EventHandler? +Microsoft.Maui.Controls.Window.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.Controls.Window.FlowDirection.set -> void +Microsoft.Maui.Controls.Window.ModalPopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPopping -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushed -> System.EventHandler? +Microsoft.Maui.Controls.Window.ModalPushing -> System.EventHandler? +Microsoft.Maui.Controls.Window.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.Controls.Window.Page.get -> Microsoft.Maui.Controls.Page? +Microsoft.Maui.Controls.Window.Page.set -> void +Microsoft.Maui.Controls.Window.PopCanceled -> System.EventHandler? +Microsoft.Maui.Controls.Window.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.Controls.Window.Resumed -> System.EventHandler? +Microsoft.Maui.Controls.Window.Stopped -> System.EventHandler? +Microsoft.Maui.Controls.Window.Title.get -> string? +Microsoft.Maui.Controls.Window.Title.set -> void +Microsoft.Maui.Controls.Window.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.Controls.Window.Window() -> void +Microsoft.Maui.Controls.Window.Window(Microsoft.Maui.Controls.Page! page) -> void +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute +Microsoft.Maui.Controls.Xaml.AcceptEmptyServiceProviderAttribute.AcceptEmptyServiceProviderAttribute() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingDiagnostics() -> void +Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.IMarkupExtension +Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService +Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService +Microsoft.Maui.Controls.Xaml.IProvideValueTarget +Microsoft.Maui.Controls.Xaml.IReferenceProvider +Microsoft.Maui.Controls.Xaml.IRootObjectProvider +Microsoft.Maui.Controls.Xaml.IValueProvider +Microsoft.Maui.Controls.Xaml.IXamlTypeResolver +Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.XamlParseException +Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException() -> void +Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute +Microsoft.Maui.Controls.Xaml.XmlLineInfo +Microsoft.Maui.Controls.Xaml.XmlLineInfo.HasLineInfo() -> bool +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LineNumber.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.LinePosition.get -> int +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo() -> void +Microsoft.Maui.Controls.Xaml.XmlLineInfo.XmlLineInfo(int linenumber, int lineposition) -> void +Microsoft.Maui.Controls.XmlnsDefinitionAttribute +Microsoft.Maui.Controls.XmlnsPrefixAttribute +Microsoft.Maui.Foldable.FoldEventArgs +Microsoft.Maui.Foldable.FoldEventArgs.FoldEventArgs() -> void +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.FoldingFeatureBounds.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.get -> bool +Microsoft.Maui.Foldable.FoldEventArgs.isSeparating.set -> void +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.Foldable.FoldEventArgs.WindowBounds.set -> void +override Microsoft.Maui.Controls.AbsoluteLayout.OnClear() -> void +override Microsoft.Maui.Controls.Accelerator.GetHashCode() -> int +override Microsoft.Maui.Controls.Animation.Reset() -> void +override Microsoft.Maui.Controls.Application.OnParentSet() -> void +override Microsoft.Maui.Controls.Border.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.BoxView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.BoxView.OnPropertyChanged(string? propertyName = null) -> void +override Microsoft.Maui.Controls.Button.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Button.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Cell.OnParentSet() -> void +override Microsoft.Maui.Controls.CheckBox.ChangeVisualState() -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Compatibility.Grid.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Compatibility.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.Layout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Compatibility.Layout.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Compatibility.StackLayout.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Compatibility.StackLayout.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentPage.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.ContentPage.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPage.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ContentPresenter.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ContentPresenter.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Editor.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Editor.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Element.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.FileImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlexLayout.OnClear() -> void +override Microsoft.Maui.Controls.FlexLayout.OnParentSet() -> void +override Microsoft.Maui.Controls.FlyoutPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.FlyoutPage.OnAppearing() -> void +override Microsoft.Maui.Controls.FlyoutPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.FlyoutPage.OnParentSet() -> void +override Microsoft.Maui.Controls.FontImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.FormattedString.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientBrush.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.GradientStop.GetHashCode() -> int +override Microsoft.Maui.Controls.Grid.InvalidateMeasure() -> void +override Microsoft.Maui.Controls.Grid.OnClear() -> void +override Microsoft.Maui.Controls.Image.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Image.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.ImageButton.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ImageButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ImageCell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.IndicatorView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.ItemsView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ItemsView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Label.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Layout.InvalidateMeasureOverride() -> void +override Microsoft.Maui.Controls.Layout.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.LinearGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.ListView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ListView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.MultiPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NavigationPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.NavigationPage.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.NullEffect.OnAttached() -> void +override Microsoft.Maui.Controls.NullEffect.OnDetached() -> void +override Microsoft.Maui.Controls.Page.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Page.OnParentSet() -> void +override Microsoft.Maui.Controls.Page.OnSizeAllocated(double width, double height) -> void +override Microsoft.Maui.Controls.RadialGradientBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.ChangeVisualState() -> void +override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RadioButton.OnApplyTemplate() -> void +override Microsoft.Maui.Controls.RadioButton.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.RefreshView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.RoutingEffect.OnAttached() -> void +override Microsoft.Maui.Controls.RoutingEffect.OnDetached() -> void +override Microsoft.Maui.Controls.ScrollView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.ScrollView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ScrollView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.Shapes.Shape.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.Shell.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.Shell.OnBackButtonPressed() -> bool +override Microsoft.Maui.Controls.Shell.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellAppearance.GetHashCode() -> int +override Microsoft.Maui.Controls.ShellItem.OnParentSet() -> void +override Microsoft.Maui.Controls.ShellSection.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.ShellSection.OnParentSet() -> void +override Microsoft.Maui.Controls.SolidColorBrush.GetHashCode() -> int +override Microsoft.Maui.Controls.SolidColorBrush.IsEmpty.get -> bool +override Microsoft.Maui.Controls.Span.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.StreamImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.SwipeItems.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.SwipeView.OnChildAdded(Microsoft.Maui.Controls.Element! child) -> void +override Microsoft.Maui.Controls.SwipeView.OnChildRemoved(Microsoft.Maui.Controls.Element! child, int oldLogicalIndex) -> void +override Microsoft.Maui.Controls.Switch.ChangeVisualState() -> void +override Microsoft.Maui.Controls.TabbedPage.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TableSectionBase.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TableView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TemplatedView.LayoutChildren(double x, double y, double width, double height) -> void +override Microsoft.Maui.Controls.TemplatedView.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +override Microsoft.Maui.Controls.TextCell.OnTapped() -> void +override Microsoft.Maui.Controls.UriImageSource.IsEmpty.get -> bool +override Microsoft.Maui.Controls.View.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualElement.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.VisualState.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroup.GetHashCode() -> int +override Microsoft.Maui.Controls.VisualStateGroupList.GetHashCode() -> int +override Microsoft.Maui.Controls.WebView.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.Window.OnPropertyChanged(string? propertyName = null) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject! bindable) -> void +override sealed Microsoft.Maui.Controls.PlatformBehavior.OnDetachingFrom(TView! bindable) -> void +static Microsoft.Maui.Controls.AbsoluteLayout.AutoSize -> double +static Microsoft.Maui.Controls.Application.AccentColor.get -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Controls.Application.AccentColor.set -> void +static Microsoft.Maui.Controls.Application.Current.get -> Microsoft.Maui.Controls.Application? +static Microsoft.Maui.Controls.Application.Current.set -> void +static Microsoft.Maui.Controls.Application.SetCurrentApplication(Microsoft.Maui.Controls.Application! value) -> void +static Microsoft.Maui.Controls.Border.ContentChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Border.StrokeThicknessChanged(Microsoft.Maui.Controls.BindableObject! bindable, object! oldValue, object! newValue) -> void +static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.AutoSize.get -> double +static Microsoft.Maui.Controls.DesignMode.IsDesignModeEnabled.get -> bool +static Microsoft.Maui.Controls.Device.FlowDirection.get -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Device.Idiom.get -> Microsoft.Maui.Controls.TargetIdiom +static Microsoft.Maui.Controls.Device.IsInvokeRequired.get -> bool +static Microsoft.Maui.Controls.FlyoutPage.ControlsFlyoutPageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.FontExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Microsoft.Maui.Controls.FontAttributes +static Microsoft.Maui.Controls.FontExtensions.ToFont(this Microsoft.Maui.Controls.Internals.IFontElement! element, double? defaultSize = null) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.FontExtensions.WithAttributes(this Microsoft.Maui.Font font, Microsoft.Maui.Controls.FontAttributes attributes) -> Microsoft.Maui.Font +static Microsoft.Maui.Controls.Internals.Profile.Enable() -> void +static Microsoft.Maui.Controls.Internals.Profile.IsEnabled.get -> bool +static Microsoft.Maui.Controls.Internals.Profile.Start() -> void +static Microsoft.Maui.Controls.Internals.Profile.Stop() -> void +static Microsoft.Maui.Controls.Internals.Registrar.RegisterStylesheets(Microsoft.Maui.Controls.InitializationFlags flags) -> void +static Microsoft.Maui.Controls.LayoutDirectionExtensions.ToFlowDirection(this Microsoft.Maui.ApplicationModel.LayoutDirection layoutDirection) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Controls.Shapes.Matrix.Identity.get -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.Matrix.operator *(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix(this System.Numerics.Matrix3x2 matrix3x2) -> Microsoft.Maui.Controls.Shapes.Matrix +static Microsoft.Maui.Controls.Shapes.MatrixExtensions.ToMatrix3X2(this Microsoft.Maui.Controls.Shapes.Matrix matrix) -> System.Numerics.Matrix3x2 +static Microsoft.Maui.Controls.Toolbar.ControlsToolbarMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Controls.ViewExtensions.CancelAnimations(this Microsoft.Maui.Controls.VisualElement! view) -> void +static Microsoft.Maui.Controls.ViewExtensions.FadeTo(this Microsoft.Maui.Controls.VisualElement! view, double opacity, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.LayoutTo(this Microsoft.Maui.Controls.VisualElement! view, Microsoft.Maui.Graphics.Rect bounds, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelRotateTo(this Microsoft.Maui.Controls.VisualElement! view, double drotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RelScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double dscale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateXTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.RotateYTo(this Microsoft.Maui.Controls.VisualElement! view, double rotation, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleXTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.ScaleYTo(this Microsoft.Maui.Controls.VisualElement! view, double scale, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.ViewExtensions.TranslateTo(this Microsoft.Maui.Controls.VisualElement! view, double x, double y, uint length = 250, Microsoft.Maui.Easing? easing = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Controls.VisibilityExtensions.ToVisibility(this bool isVisible) -> Microsoft.Maui.Visibility +static Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.BindingFailed -> System.EventHandler +static readonly Microsoft.Maui.Controls.Border.ContentProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeShapeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Border.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.LayoutOptions.Center -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.CenterAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.End -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.EndAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Fill -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.FillAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.Start -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.LayoutOptions.StartAndExpand -> Microsoft.Maui.Controls.LayoutOptions +static readonly Microsoft.Maui.Controls.Shapes.Shape.AspectProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.FillProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashArrayProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeDashOffsetProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineCapProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeLineJoinProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeMiterLimitProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Shapes.Shape.StrokeThicknessProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.VisualElement.ShadowProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.PageProperty -> Microsoft.Maui.Controls.BindableProperty! +static readonly Microsoft.Maui.Controls.Window.TitleProperty -> Microsoft.Maui.Controls.BindableProperty! +virtual Microsoft.Maui.Controls.Application.CleanUp() -> void +virtual Microsoft.Maui.Controls.Application.CloseWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.Application.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.Controls.Window! +virtual Microsoft.Maui.Controls.Application.OnAppLinkRequestReceived(System.Uri! uri) -> void +virtual Microsoft.Maui.Controls.Application.OnResume() -> void +virtual Microsoft.Maui.Controls.Application.OnSleep() -> void +virtual Microsoft.Maui.Controls.Application.OnStart() -> void +virtual Microsoft.Maui.Controls.Application.OpenWindow(Microsoft.Maui.Controls.Window! window) -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnAppearing() -> void +virtual Microsoft.Maui.Controls.BaseShellItem.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.BindableObject.OnBindingContextChanged() -> void +virtual Microsoft.Maui.Controls.CarouselView.AnimateCurrentItemChanges.get -> bool +virtual Microsoft.Maui.Controls.CarouselView.AnimatePositionChanges.get -> bool +virtual Microsoft.Maui.Controls.Cell.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.Cell.OnTapped() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.InvalidateLayout() -> void +virtual Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated() -> void +virtual Microsoft.Maui.Controls.Element.OnHandlerChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentChanged() -> void +virtual Microsoft.Maui.Controls.Element.OnParentSet() -> void +virtual Microsoft.Maui.Controls.FlyoutPage.ShouldShowToolbarButton() -> bool +virtual Microsoft.Maui.Controls.HandlerAttribute.ShouldRegister() -> bool +virtual Microsoft.Maui.Controls.ImageSource.IsEmpty.get -> bool +virtual Microsoft.Maui.Controls.ItemsView.OnRemainingItemsThresholdReached() -> void +virtual Microsoft.Maui.Controls.Layout.OnClear() -> void +virtual Microsoft.Maui.Controls.MenuItem.OnClicked() -> void +virtual Microsoft.Maui.Controls.MultiPage.OnCurrentPageChanged() -> void +virtual Microsoft.Maui.Controls.Page.LayoutChildren(double x, double y, double width, double height) -> void +virtual Microsoft.Maui.Controls.Page.OnAppearing() -> void +virtual Microsoft.Maui.Controls.Page.OnBackButtonPressed() -> bool +virtual Microsoft.Maui.Controls.Page.OnDisappearing() -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnAttachedTo(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.PlatformBehavior.OnDetachedFrom(TView! bindable, TPlatformView! platformView) -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnClearPlaceholderClicked() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnFocused() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnQueryConfirmed() -> void +virtual Microsoft.Maui.Controls.SearchHandler.OnUnfocus() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnAttached() -> void +virtual Microsoft.Maui.Controls.StateTriggerBase.OnDetached() -> void +virtual Microsoft.Maui.Controls.TableView.OnModelChanged() -> void +virtual Microsoft.Maui.Controls.TemplatedPage.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.TemplatedView.OnApplyTemplate() -> void +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.BackButtonVisible.set -> void +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.get -> bool +virtual Microsoft.Maui.Controls.Toolbar.DrawerToggleVisible.set -> void +virtual Microsoft.Maui.Controls.VisualElement.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.ChangeVisualState() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasure() -> void +virtual Microsoft.Maui.Controls.VisualElement.InvalidateMeasureOverride() -> void +virtual Microsoft.Maui.Controls.VisualElement.Measure(double widthConstraint, double heightConstraint, Microsoft.Maui.Controls.MeasureFlags flags = Microsoft.Maui.Controls.MeasureFlags.None) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Controls.VisualElement.OnMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +virtual Microsoft.Maui.Controls.VisualElement.OnSizeAllocated(double width, double height) -> void +virtual Microsoft.Maui.Controls.Window.OnActivated() -> void +virtual Microsoft.Maui.Controls.Window.OnBackgrounding(Microsoft.Maui.IPersistedState! state) -> void +virtual Microsoft.Maui.Controls.Window.OnCreated() -> void +virtual Microsoft.Maui.Controls.Window.OnDeactivated() -> void +virtual Microsoft.Maui.Controls.Window.OnDestroying() -> void +virtual Microsoft.Maui.Controls.Window.OnDisplayDensityChanged(float displayDensity) -> void +virtual Microsoft.Maui.Controls.Window.OnResumed() -> void +virtual Microsoft.Maui.Controls.Window.OnStopped() -> void +~abstract Microsoft.Maui.Controls.DataTemplateSelector.OnSelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~abstract Microsoft.Maui.Controls.Internals.GIFImageParser.AddBitmap(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap bitmap, bool ignoreImageData) -> void +~abstract Microsoft.Maui.Controls.Internals.TableModel.GetItem(int section, int row) -> object +~abstract Microsoft.Maui.Controls.Layout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~abstract Microsoft.Maui.Controls.MultiPage.CreateDefault(object item) -> T +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate() -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.RouteFactory.GetOrCreate(System.IServiceProvider services) -> Microsoft.Maui.Controls.Element +~abstract Microsoft.Maui.Controls.Shapes.Geometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~abstract Microsoft.Maui.Controls.TriggerAction.Invoke(T sender) -> void +~abstract Microsoft.Maui.Controls.WebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~const Microsoft.Maui.Controls.Binding.SelfPath = "." -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsl = "hsl" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Hsla = "hsla" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.LinearGradient = "linear-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.RadialGradient = "radial-gradient" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgb = "rgb" -> string +~const Microsoft.Maui.Controls.BrushTypeConverter.Rgba = "rgba" -> string +~const Microsoft.Maui.Controls.CarouselView.CurrentItemVisualState = "CurrentItem" -> string +~const Microsoft.Maui.Controls.CarouselView.DefaultItemVisualState = "DefaultItem" -> string +~const Microsoft.Maui.Controls.CarouselView.NextItemVisualState = "NextItem" -> string +~const Microsoft.Maui.Controls.CarouselView.PreviousItemVisualState = "PreviousItem" -> string +~const Microsoft.Maui.Controls.CheckBox.IsCheckedVisualState = "IsChecked" -> string +~const Microsoft.Maui.Controls.Device.Android = "Android" -> string +~const Microsoft.Maui.Controls.Device.iOS = "iOS" -> string +~const Microsoft.Maui.Controls.Device.MacCatalyst = "MacCatalyst" -> string +~const Microsoft.Maui.Controls.Device.Tizen = "Tizen" -> string +~const Microsoft.Maui.Controls.Device.tvOS = "tvOS" -> string +~const Microsoft.Maui.Controls.Device.UWP = "WinUI" -> string +~const Microsoft.Maui.Controls.Device.WinUI = "WinUI" -> string +~const Microsoft.Maui.Controls.FlyoutItem.ImageStyle = "FlyoutItemImageStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LabelStyle = "FlyoutItemLabelStyle" -> string +~const Microsoft.Maui.Controls.FlyoutItem.LayoutStyle = "FlyoutItemLayoutStyle" -> string +~const Microsoft.Maui.Controls.Page.ActionSheetSignalName = "Microsoft.Maui.Controls.ShowActionSheet" -> string +~const Microsoft.Maui.Controls.Page.AlertSignalName = "Microsoft.Maui.Controls.SendAlert" -> string +~const Microsoft.Maui.Controls.Page.BusySetSignalName = "Microsoft.Maui.Controls.BusySet" -> string +~const Microsoft.Maui.Controls.Page.PromptSignalName = "Microsoft.Maui.Controls.SendPrompt" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Bottom = "bottom" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Circle = "circle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.SelectMode = "select_mode" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ButtonStyle.Text = "textbutton" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Back = "Back" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Down = "Down" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Forward = "Forward" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Left = "Left" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Right = "Right" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FocusDirection.Up = "Up" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Black = "Black" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Bold = "Bold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Book = "Book" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.ExtraBlack = "ExtraBlack" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Light = "Light" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Medium = "Medium" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.None = "None" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.SemiBold = "SemiBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.Thin = "Thin" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraBold = "UltraBold" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.FontWeight.UltraLight = "UltraLight" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBarStyle.Pending = "pending" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.CheckBox = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Favorite = "favorite" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.OnOff = "on&off" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Small = "small" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.SwitchStyle.Toggle = "toggle" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Default = "default" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.Tabbar = "tabbar" -> string +~const Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.TabbedPageStyle.TabbarWithTitle = "tabbar_with_title" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedIndicator = "CheckedIndicator" -> string +~const Microsoft.Maui.Controls.RadioButton.CheckedVisualState = "Checked" -> string +~const Microsoft.Maui.Controls.RadioButton.TemplateRootName = "Root" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedButton = "Button" -> string +~const Microsoft.Maui.Controls.RadioButton.UncheckedVisualState = "Unchecked" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Ellipse = "Ellipse" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Line = "Line" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Path = "Path" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polygon = "Polygon" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Polyline = "Polyline" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.Rectangle = "Rectangle" -> string +~const Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.RoundRectangle = "RoundRectangle" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOffVisualState = "Off" -> string +~const Microsoft.Maui.Controls.Switch.SwitchOnVisualState = "On" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Disabled = "Disabled" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Focused = "Focused" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Normal = "Normal" -> string +~const Microsoft.Maui.Controls.VisualStateManager.CommonStates.Selected = "Selected" -> string +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.IView view, Microsoft.Maui.Graphics.Rect bounds) -> void +~Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~Microsoft.Maui.Controls.Accelerator.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Keys.set -> void +~Microsoft.Maui.Controls.Accelerator.Modifiers.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Accelerator.Modifiers.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ActivityIndicator.Color.set -> void +~Microsoft.Maui.Controls.ActivityIndicator.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.AndExpandLayoutManager.AndExpandLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Animation.Add(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> void +~Microsoft.Maui.Controls.Animation.Animation(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, System.Action finished = null) -> void +~Microsoft.Maui.Controls.Animation.Commit(Microsoft.Maui.Controls.IAnimatable owner, string name, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~Microsoft.Maui.Controls.Animation.GetCallback() -> System.Action +~Microsoft.Maui.Controls.Animation.Insert(double beginAt, double finishAt, Microsoft.Maui.Controls.Animation animation) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(Microsoft.Maui.Controls.Animation animation, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.Animation.WithConcurrent(System.Action callback, double start = 0, double end = 1, Microsoft.Maui.Easing easing = null, double beginAt = 0, double finishAt = 1) -> Microsoft.Maui.Controls.Animation +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.AppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.AppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.AppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.AppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.BackButtonBehavior.Command.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.get -> object +~Microsoft.Maui.Controls.BackButtonBehavior.CommandParameter.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BackButtonBehavior.IconOverride.set -> void +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.get -> string +~Microsoft.Maui.Controls.BackButtonBehavior.TextOverride.set -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.BackgroundingEventArgs(Microsoft.Maui.IPersistedState state) -> void +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.get -> Microsoft.Maui.IPersistedState +~Microsoft.Maui.Controls.BackgroundingEventArgs.State.set -> void +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Icon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.BaseShellItem.Icon.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Route.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Route.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Title.get -> string +~Microsoft.Maui.Controls.BaseShellItem.Title.set -> void +~Microsoft.Maui.Controls.BaseShellItem.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.Behavior.AssociatedType.get -> System.Type +~Microsoft.Maui.Controls.Behavior +~Microsoft.Maui.Controls.BindableObject.BindingContext.get -> object +~Microsoft.Maui.Controls.BindableObject.BindingContext.set -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.ClearValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.CoerceValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey) -> void +~Microsoft.Maui.Controls.BindableObject.Dispatcher.get -> Microsoft.Maui.Dispatching.IDispatcher +~Microsoft.Maui.Controls.BindableObject.GetValue(Microsoft.Maui.Controls.BindableProperty property) -> object +~Microsoft.Maui.Controls.BindableObject.IsSet(Microsoft.Maui.Controls.BindableProperty targetProperty) -> bool +~Microsoft.Maui.Controls.BindableObject.RemoveBinding(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.BindableObject.SetBinding(Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValue(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.BindableObject.SetValueCore(Microsoft.Maui.Controls.BindableProperty property, object value, Microsoft.Maui.Controls.Internals.SetValueFlags attributes = Microsoft.Maui.Controls.Internals.SetValueFlags.None) -> void +~Microsoft.Maui.Controls.BindableProperty.DeclaringType.get -> System.Type +~Microsoft.Maui.Controls.BindableProperty.DefaultValue.get -> object +~Microsoft.Maui.Controls.BindableProperty.PropertyName.get -> string +~Microsoft.Maui.Controls.BindableProperty.ReturnType.get -> System.Type +~Microsoft.Maui.Controls.BindablePropertyKey.BindableProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Binding.Binding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null) -> void +~Microsoft.Maui.Controls.Binding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Binding.Converter.set -> void +~Microsoft.Maui.Controls.Binding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Binding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Binding.Path.get -> string +~Microsoft.Maui.Controls.Binding.Path.set -> void +~Microsoft.Maui.Controls.Binding.Source.get -> object +~Microsoft.Maui.Controls.Binding.Source.set -> void +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Binding.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.BindingBase.FallbackValue.get -> object +~Microsoft.Maui.Controls.BindingBase.FallbackValue.set -> void +~Microsoft.Maui.Controls.BindingBase.StringFormat.get -> string +~Microsoft.Maui.Controls.BindingBase.StringFormat.set -> void +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.get -> object +~Microsoft.Maui.Controls.BindingBase.TargetNullValue.set -> void +~Microsoft.Maui.Controls.BindingCondition.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.BindingCondition.Binding.set -> void +~Microsoft.Maui.Controls.BindingCondition.Value.get -> object +~Microsoft.Maui.Controls.BindingCondition.Value.set -> void +~Microsoft.Maui.Controls.BoxView.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.BoxView.Color.set -> void +~Microsoft.Maui.Controls.BoxView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.GradientBrushParser(Microsoft.Maui.Graphics.Converters.ColorTypeConverter colorConverter = null) -> void +~Microsoft.Maui.Controls.BrushTypeConverter.GradientBrushParser.Parse(string css) -> Microsoft.Maui.Controls.GradientBrush +~Microsoft.Maui.Controls.Button.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.BorderColor.set -> void +~Microsoft.Maui.Controls.Button.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Button.Command.set -> void +~Microsoft.Maui.Controls.Button.CommandParameter.get -> object +~Microsoft.Maui.Controls.Button.CommandParameter.set -> void +~Microsoft.Maui.Controls.Button.ContentLayout.get -> Microsoft.Maui.Controls.Button.ButtonContentLayout +~Microsoft.Maui.Controls.Button.ContentLayout.set -> void +~Microsoft.Maui.Controls.Button.FontFamily.get -> string +~Microsoft.Maui.Controls.Button.FontFamily.set -> void +~Microsoft.Maui.Controls.Button.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Button.ImageSource.set -> void +~Microsoft.Maui.Controls.Button.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Button.Text.get -> string +~Microsoft.Maui.Controls.Button.Text.set -> void +~Microsoft.Maui.Controls.Button.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Button.TextColor.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItem.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItem.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.IndicatorView.set -> void +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.get -> Microsoft.Maui.Controls.LinearItemsLayout +~Microsoft.Maui.Controls.CarouselView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommand.set -> void +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.CarouselView.VisibleViews.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Cell.ContextActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Cell.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.CheckBox.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.CheckBox.Color.set -> void +~Microsoft.Maui.Controls.CheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint +~Microsoft.Maui.Controls.CheckBox.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.get -> Microsoft.Maui.Controls.IGestureRecognizer +~Microsoft.Maui.Controls.ChildGestureRecognizer.GestureRecognizer.set -> void +~Microsoft.Maui.Controls.ChildGestureRecognizer.OnPropertyChanged(string propertyName = "") -> void +~Microsoft.Maui.Controls.ClickedEventArgs.ClickedEventArgs(Microsoft.Maui.Controls.ButtonsMask buttons, object commandParameter) -> void +~Microsoft.Maui.Controls.ClickedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ClickGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.ClickGestureRecognizer.SendClicked(Microsoft.Maui.Controls.View sender, Microsoft.Maui.Controls.ButtonsMask buttons) -> void +~Microsoft.Maui.Controls.ColumnDefinitionCollection.ColumnDefinitionCollection(params Microsoft.Maui.Controls.ColumnDefinition[] definitions) -> void +~Microsoft.Maui.Controls.Command.CanExecute(object parameter) -> bool +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.Command.Execute(object parameter) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute) -> void +~Microsoft.Maui.Controls.Command.Command(System.Action execute, System.Func canExecute) -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Property.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Property.set -> void +~Microsoft.Maui.Controls.CompareStateTrigger.Value.get -> object +~Microsoft.Maui.Controls.CompareStateTrigger.Value.set -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Point position) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.IAbsoluteList.Add(Microsoft.Maui.Controls.View view, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None) -> void +~Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ElementName.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.get -> string +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.Property.set -> void +~Microsoft.Maui.Controls.Compatibility.ConstraintExpression.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.Compatibility.Constraint +~Microsoft.Maui.Controls.Compatibility.Grid.Children.get -> Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int right, int top, int bottom) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.Add(Microsoft.Maui.Controls.View view, int left, int top) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddHorizontal(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.IGridList.AddVertical(System.Collections.Generic.IEnumerable views) -> void +~Microsoft.Maui.Controls.Compatibility.Grid.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Compatibility.INativeElementView.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Compatibility.Layout.LowerChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.Compatibility.Layout.RaiseChild(Microsoft.Maui.Controls.View view) -> void +~Microsoft.Maui.Controls.Compatibility.Layout +~Microsoft.Maui.Controls.Compatibility.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Compatibility.Layout.LayoutHandler.get -> Microsoft.Maui.ILayoutHandler +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Compatibility.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.Children.get -> Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, Microsoft.Maui.Controls.Compatibility.Constraint xConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint yConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint widthConstraint = null, Microsoft.Maui.Controls.Compatibility.Constraint heightConstraint = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> x = null, System.Linq.Expressions.Expression> y = null, System.Linq.Expressions.Expression> width = null, System.Linq.Expressions.Expression> height = null) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.IRelativeList.Add(T view, System.Linq.Expressions.Expression> bounds) -> void +~Microsoft.Maui.Controls.Compatibility.RelativeLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Compatibility.StackLayout.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Configuration +~Microsoft.Maui.Controls.Configuration.Configuration(TElement element) -> void +~Microsoft.Maui.Controls.Configuration.Element.get -> TElement +~Microsoft.Maui.Controls.ContentPage.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPage.Content.set -> void +~Microsoft.Maui.Controls.ContentPresenter.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentPresenter.Content.set -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.ContentPropertyAttribute(string name) -> void +~Microsoft.Maui.Controls.ContentPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.ContentView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ContentView.Content.set -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Func createTemplate) -> void +~Microsoft.Maui.Controls.ControlTemplate.ControlTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.CurrentItem.get -> object +~Microsoft.Maui.Controls.CurrentItemChangedEventArgs.PreviousItem.get -> object +~Microsoft.Maui.Controls.DataPackage.Image.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.DataPackage.Image.set -> void +~Microsoft.Maui.Controls.DataPackage.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackage.Text.get -> string +~Microsoft.Maui.Controls.DataPackage.Text.set -> void +~Microsoft.Maui.Controls.DataPackage.View.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DataPackagePropertySet.Add(string key, object value) -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySet.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySet.this[string key].set -> void +~Microsoft.Maui.Controls.DataPackagePropertySet.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySet.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.DataPackagePropertySetView(Microsoft.Maui.Controls.DataPackagePropertySet dataPackagePropertySet) -> void +~Microsoft.Maui.Controls.DataPackagePropertySetView.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.DataPackagePropertySetView.Keys.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView.this[string key].get -> object +~Microsoft.Maui.Controls.DataPackagePropertySetView.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.DataPackagePropertySetView.Values.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.DataPackagePropertySetView._dataPackagePropertySet -> Microsoft.Maui.Controls.DataPackagePropertySet +~Microsoft.Maui.Controls.DataPackageView.GetImageAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.GetTextAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.DataPackageView.Properties.get -> Microsoft.Maui.Controls.DataPackagePropertySetView +~Microsoft.Maui.Controls.DataTemplate.Bindings.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Func loadTemplate) -> void +~Microsoft.Maui.Controls.DataTemplate.DataTemplate(System.Type type) -> void +~Microsoft.Maui.Controls.DataTemplate.SetBinding(Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> void +~Microsoft.Maui.Controls.DataTemplate.SetValue(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.DataTemplate.Values.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.DataTemplateSelector.SelectTemplate(object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.DataTrigger.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.DataTrigger.Binding.set -> void +~Microsoft.Maui.Controls.DataTrigger.DataTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.DataTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.DataTrigger.Value.get -> object +~Microsoft.Maui.Controls.DataTrigger.Value.set -> void +~Microsoft.Maui.Controls.DatePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.DatePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.DatePicker.Format.get -> string +~Microsoft.Maui.Controls.DatePicker.Format.set -> void +~Microsoft.Maui.Controls.DatePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.DatePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.DatePicker.TextColor.set -> void +~Microsoft.Maui.Controls.DefinitionCollection +~Microsoft.Maui.Controls.DefinitionCollection.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.DefinitionCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.DependencyAttribute.DependencyAttribute(System.Type implementorType) -> void +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.get -> string +~Microsoft.Maui.Controls.DeviceStateTrigger.Device.set -> void +~Microsoft.Maui.Controls.DoubleCollection.DoubleCollection(double[] values) -> void +~Microsoft.Maui.Controls.DragEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DragEventArgs.DragEventArgs(Microsoft.Maui.Controls.DataPackage dataPackage) -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameter.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommand.set -> void +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.get -> object +~Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameter.set -> void +~Microsoft.Maui.Controls.DragStartingEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackage +~Microsoft.Maui.Controls.DropEventArgs.Data.get -> Microsoft.Maui.Controls.DataPackageView +~Microsoft.Maui.Controls.DropEventArgs.DropEventArgs(Microsoft.Maui.Controls.DataPackageView view) -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommand.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.get -> object +~Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameter.set -> void +~Microsoft.Maui.Controls.DropGestureRecognizer.SendDragOver(Microsoft.Maui.Controls.DragEventArgs args) -> void +~Microsoft.Maui.Controls.Editor.FontFamily.get -> string +~Microsoft.Maui.Controls.Editor.FontFamily.set -> void +~Microsoft.Maui.Controls.Editor.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Effect.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Effect.ResolveId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.get -> string +~Microsoft.Maui.Controls.Element.AutomationId.set -> void +~Microsoft.Maui.Controls.Element.ClassId.get -> string +~Microsoft.Maui.Controls.Element.ClassId.set -> void +~Microsoft.Maui.Controls.Element.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.Element.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.Element.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.Element.Effects.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Element.FindByName(string name) -> object +~Microsoft.Maui.Controls.Element.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Element.Handler.set -> void +~Microsoft.Maui.Controls.Element.LogicalChildren.get -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.Element.Parent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.Parent.set -> void +~Microsoft.Maui.Controls.Element.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.Element.RemoveDynamicResource(Microsoft.Maui.Controls.BindableProperty property) -> void +~Microsoft.Maui.Controls.Element.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.Element.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey property, object value) -> void +~Microsoft.Maui.Controls.Element.StyleId.get -> string +~Microsoft.Maui.Controls.Element.StyleId.set -> void +~Microsoft.Maui.Controls.ElementEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ElementEventArgs.ElementEventArgs(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ElementTemplate.CreateContent() -> object +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.get -> System.Func +~Microsoft.Maui.Controls.ElementTemplate.LoadTemplate.set -> void +~Microsoft.Maui.Controls.Entry.FontFamily.get -> string +~Microsoft.Maui.Controls.Entry.FontFamily.set -> void +~Microsoft.Maui.Controls.Entry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Entry.ReturnCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Entry.ReturnCommand.set -> void +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.get -> object +~Microsoft.Maui.Controls.Entry.ReturnCommandParameter.set -> void +~Microsoft.Maui.Controls.EntryCell.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.EntryCell.Keyboard.set -> void +~Microsoft.Maui.Controls.EntryCell.Label.get -> string +~Microsoft.Maui.Controls.EntryCell.Label.set -> void +~Microsoft.Maui.Controls.EntryCell.LabelColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.EntryCell.LabelColor.set -> void +~Microsoft.Maui.Controls.EntryCell.Placeholder.get -> string +~Microsoft.Maui.Controls.EntryCell.Placeholder.set -> void +~Microsoft.Maui.Controls.EntryCell.Text.get -> string +~Microsoft.Maui.Controls.EntryCell.Text.set -> void +~Microsoft.Maui.Controls.EventTrigger.Actions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.EventTrigger.Event.get -> string +~Microsoft.Maui.Controls.EventTrigger.Event.set -> void +~Microsoft.Maui.Controls.ExportEffectAttribute.ExportEffectAttribute(System.Type effectType, string uniqueName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.get -> string +~Microsoft.Maui.Controls.ExportFontAttribute.Alias.set -> void +~Microsoft.Maui.Controls.ExportFontAttribute.ExportFontAttribute(string fontFileName) -> void +~Microsoft.Maui.Controls.ExportFontAttribute.FontFileName.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.get -> string +~Microsoft.Maui.Controls.FileImageSource.File.set -> void +~Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexAlignSelf +~Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.IView view) -> Microsoft.Maui.Layouts.FlexBasis +~Microsoft.Maui.Controls.FlexLayout.GetFlexFrame(Microsoft.Maui.IView view) -> Microsoft.Maui.Graphics.Rect +~Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.IView view) -> float +~Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexAlignSelf alignSelf) -> void +~Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.IView view, Microsoft.Maui.Layouts.FlexBasis basis) -> void +~Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.IView view, float grow) -> void +~Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.IView view, int order) -> void +~Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.IView view, float shrink) -> void +~Microsoft.Maui.Controls.FlyoutPage.Detail.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Detail.set -> void +~Microsoft.Maui.Controls.FlyoutPage.Flyout.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.FlyoutPage.Flyout.set -> void +~Microsoft.Maui.Controls.FlyoutPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.FocusEventArgs.FocusEventArgs(Microsoft.Maui.Controls.VisualElement visualElement, bool isFocused) -> void +~Microsoft.Maui.Controls.FocusEventArgs.VisualElement.get -> Microsoft.Maui.Controls.VisualElement +~Microsoft.Maui.Controls.FontImageSource.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.FontImageSource.Color.set -> void +~Microsoft.Maui.Controls.FontImageSource.FontFamily.get -> string +~Microsoft.Maui.Controls.FontImageSource.FontFamily.set -> void +~Microsoft.Maui.Controls.FontImageSource.Glyph.get -> string +~Microsoft.Maui.Controls.FontImageSource.Glyph.set -> void +~Microsoft.Maui.Controls.FormattedString.Spans.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Frame.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Frame.BorderColor.set -> void +~Microsoft.Maui.Controls.Frame.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.GestureElement.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.GradientBrush.GradientStops.get -> Microsoft.Maui.Controls.GradientStopCollection +~Microsoft.Maui.Controls.GradientBrush.GradientStops.set -> void +~Microsoft.Maui.Controls.GradientStop.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.GradientStop.Color.set -> void +~Microsoft.Maui.Controls.GradientStop.GradientStop(Microsoft.Maui.Graphics.Color color, float offset) -> void +~Microsoft.Maui.Controls.GraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable +~Microsoft.Maui.Controls.GraphicsView.Drawable.set -> void +~Microsoft.Maui.Controls.Grid.AddColumnDefinition(Microsoft.Maui.Controls.ColumnDefinition gridColumnDefinition) -> void +~Microsoft.Maui.Controls.Grid.AddRowDefinition(Microsoft.Maui.Controls.RowDefinition gridRowDefinition) -> void +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.get -> Microsoft.Maui.Controls.ColumnDefinitionCollection +~Microsoft.Maui.Controls.Grid.ColumnDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.IView view) -> int +~Microsoft.Maui.Controls.Grid.RowDefinitions.get -> Microsoft.Maui.Controls.RowDefinitionCollection +~Microsoft.Maui.Controls.Grid.RowDefinitions.set -> void +~Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.IView view, int col) -> void +~Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.IView view, int row) -> void +~Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.IView view, int span) -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplate.set -> void +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target) -> void +~Microsoft.Maui.Controls.HandlerAttribute.HandlerAttribute(System.Type handler, System.Type target, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.HandlerChangingEventArgs(Microsoft.Maui.IElementHandler oldHandler, Microsoft.Maui.IElementHandler newHandler) -> void +~Microsoft.Maui.Controls.HandlerChangingEventArgs.NewHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.HandlerChangingEventArgs.OldHandler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CarouselViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CollectionViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler +~Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewHandler(Microsoft.Maui.PropertyMapper mapper = null) -> void +~Microsoft.Maui.Controls.Handlers.LineHandler.LineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PathHandler.PathHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolygonHandler.PolygonHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.PolylineHandler.PolylineHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RectangleHandler.RectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.RoundRectangleHandler(Microsoft.Maui.IPropertyMapper mapper) -> void +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add(System.Type TEffect, System.Type TPlatformEffect) -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.Hosting.IEffectsBuilder.Add() -> Microsoft.Maui.Controls.Hosting.IEffectsBuilder +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrl.set -> void +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.get -> string +~Microsoft.Maui.Controls.HtmlWebViewSource.Html.set -> void +~Microsoft.Maui.Controls.IAppearanceObserver.OnAppearanceChanged(Microsoft.Maui.Controls.ShellAppearance appearance) -> void +~Microsoft.Maui.Controls.IAppIndexingProvider.AppLinks.get -> Microsoft.Maui.Controls.IAppLinks +~Microsoft.Maui.Controls.IApplicationController.SetAppIndexingProvider(Microsoft.Maui.Controls.IAppIndexingProvider appIndexing) -> void +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.get -> System.Uri +~Microsoft.Maui.Controls.IAppLinkEntry.AppLinkUri.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Description.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Description.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.KeyValues.get -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IAppLinkEntry.Thumbnail.set -> void +~Microsoft.Maui.Controls.IAppLinkEntry.Title.get -> string +~Microsoft.Maui.Controls.IAppLinkEntry.Title.set -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IAppLinks.DeregisterLink(System.Uri appLinkUri) -> void +~Microsoft.Maui.Controls.IAppLinks.RegisterLink(Microsoft.Maui.Controls.IAppLinkEntry appLink) -> void +~Microsoft.Maui.Controls.IBindableLayout.Children.get -> System.Collections.IList +~Microsoft.Maui.Controls.IBorderElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.IBorderElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.BorderColorDefaultValue.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IBorderElement.OnBorderColorPropertyChanged(Microsoft.Maui.Graphics.Color oldValue, Microsoft.Maui.Graphics.Color newValue) -> void +~Microsoft.Maui.Controls.IConfigElement +~Microsoft.Maui.Controls.IConfigElement.Element.get -> T +~Microsoft.Maui.Controls.IEffectControlProvider.RegisterEffect(Microsoft.Maui.Controls.Effect effect) -> void +~Microsoft.Maui.Controls.IElementConfiguration +~Microsoft.Maui.Controls.IElementConfiguration.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IElementController.Descendants() -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.get -> Microsoft.Maui.Controls.IEffectControlProvider +~Microsoft.Maui.Controls.IElementController.EffectControlProvider.set -> void +~Microsoft.Maui.Controls.IElementController.EffectIsAttached(string name) -> bool +~Microsoft.Maui.Controls.IElementController.LogicalChildren.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IElementController.RealParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~Microsoft.Maui.Controls.IElementController.SetValueFromRenderer(Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value) -> void +~Microsoft.Maui.Controls.IExtendedTypeConverter.ConvertFromInvariantString(string value, System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.IGestureRecognizers.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IImageElement.OnImageSourceSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.IImageElement.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IItemsView +~Microsoft.Maui.Controls.IItemsView.CreateDefault(object item) -> T +~Microsoft.Maui.Controls.IItemsView.SetupContent(T content, int index) -> void +~Microsoft.Maui.Controls.IItemsView.UnhookContent(T content) -> void +~Microsoft.Maui.Controls.IItemViewController.BindView(Microsoft.Maui.Controls.View view, object item) -> void +~Microsoft.Maui.Controls.IItemViewController.CreateView(object itemType) -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IItemViewController.GetItem(int index) -> object +~Microsoft.Maui.Controls.IItemViewController.GetItemType(object item) -> object +~Microsoft.Maui.Controls.ILayoutController.Children.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IListProxy.ProxiedEnumerable.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IListProxy.TryGetValue(int index, out object value) -> bool +~Microsoft.Maui.Controls.IListViewController.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.IListViewController.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.IListViewController.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.IListViewController.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.Image.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Image.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Image.Source.set -> void +~Microsoft.Maui.Controls.ImageButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ImageButton.BorderColor.set -> void +~Microsoft.Maui.Controls.ImageButton.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ImageButton.Command.set -> void +~Microsoft.Maui.Controls.ImageButton.CommandParameter.get -> object +~Microsoft.Maui.Controls.ImageButton.CommandParameter.set -> void +~Microsoft.Maui.Controls.ImageButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ImageButton.Source.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageButton.Source.set -> void +~Microsoft.Maui.Controls.ImageCell.ImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.ImageCell.ImageSource.set -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Send(TSender sender, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMessagingCenter.Unsubscribe(object subscriber, string message) -> void +~Microsoft.Maui.Controls.IMultiValueConverter.Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IMultiValueConverter.ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) -> object[] +~Microsoft.Maui.Controls.INavigation.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.INavigation.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.INavigation.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.PushModalAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigation.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.INavigationPageController.Pages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.INavigationPageController.Peek(int depth = 0) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.INavigationPageController.PopAsyncInner(bool animated, bool fast = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.INavigationPageController.RemoveAsyncInner(Microsoft.Maui.Controls.Page page, bool animated, bool fast) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.IndicatorColor.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.get -> Microsoft.Maui.Controls.IBindableLayout +~Microsoft.Maui.Controls.IndicatorView.IndicatorLayout.set -> void +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IndicatorView.IndicatorTemplate.set -> void +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.IndicatorView.ItemsSource.set -> void +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColor.set -> void +~Microsoft.Maui.Controls.InputView.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.InputView.Keyboard.set -> void +~Microsoft.Maui.Controls.InputView.Placeholder.get -> string +~Microsoft.Maui.Controls.InputView.Placeholder.set -> void +~Microsoft.Maui.Controls.InputView.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.InputView.Text.get -> string +~Microsoft.Maui.Controls.InputView.Text.set -> void +~Microsoft.Maui.Controls.InputView.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.InputView.TextColor.set -> void +~Microsoft.Maui.Controls.InputView.UpdateFormsText(string original, Microsoft.Maui.TextTransform transform) -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.ActionSheetArguments(string title, string cancel, string destruction, System.Collections.Generic.IEnumerable buttons) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Buttons.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Destruction.get -> string +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.SetResult(string result) -> void +~Microsoft.Maui.Controls.Internals.ActionSheetArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.AlertArguments(string title, string message, string accept, string cancel) -> void +~Microsoft.Maui.Controls.Internals.AlertArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.AlertArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.AlertArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.AsyncValue.AsyncValue(System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.DynamicResource(string key) -> void +~Microsoft.Maui.Controls.Internals.DynamicResource.Key.get -> string +~Microsoft.Maui.Controls.Internals.EvalRequested.EvalRequested(string script) -> void +~Microsoft.Maui.Controls.Internals.EvalRequested.Script.get -> string +~Microsoft.Maui.Controls.Internals.GIFBitmap.Bounds.get -> Microsoft.Maui.Controls.Internals.GIFBitmap.Rect +~Microsoft.Maui.Controls.Internals.GIFBitmap.ColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFBitmap.Data.set -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.Compose(Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmap currentBitmap, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap) -> void +~Microsoft.Maui.Controls.Internals.GIFBitmapDecoder.DecodeAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, int width, int height) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFColorTable.Data.get -> int[] +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderFormatException.GIFDecoderFormatException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.CurrentBlockBuffer.get -> byte[] +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.GIFDecoderStreamReader(System.IO.Stream stream) -> void +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadAsync(byte[] buffer, int toRead) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.ReadString(int length) -> string +~Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader.SkipBlockAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.GIFHeader.GlobalColorTable.get -> Microsoft.Maui.Controls.Internals.GIFColorTable +~Microsoft.Maui.Controls.Internals.GIFHeader.TypeIdentifier.get -> string +~Microsoft.Maui.Controls.Internals.GIFHeader.Version.get -> string +~Microsoft.Maui.Controls.Internals.GIFImageParser.ParseAsync(System.IO.Stream stream, bool skipTypeIdentifier = false, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.IDataTemplateController.IdString.get -> string +~Microsoft.Maui.Controls.Internals.IDynamicResourceHandler.SetDynamicResource(Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~Microsoft.Maui.Controls.Internals.IExpressionSearch.FindObjects(System.Linq.Expressions.Expression expression) -> System.Collections.Generic.List +~Microsoft.Maui.Controls.Internals.IFontElement.FontFamily.get -> string +~Microsoft.Maui.Controls.Internals.IFontElement.OnFontFamilyChanged(string oldValue, string newValue) -> void +~Microsoft.Maui.Controls.Internals.IFontNamedSizeService.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~Microsoft.Maui.Controls.Internals.IGestureController.CompositeGestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.IGestureController.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Internals.INameScope.FindByName(string name) -> object +~Microsoft.Maui.Controls.Internals.INameScope.RegisterName(string name, object scopedElement) -> void +~Microsoft.Maui.Controls.Internals.INameScope.UnregisterName(string name) -> void +~Microsoft.Maui.Controls.Internals.INavigationProxy.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Start(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPerformanceProvider.Stop(string reference, string tag, string path, string member) -> void +~Microsoft.Maui.Controls.Internals.IPlatformSizeService.GetPlatformSize(Microsoft.Maui.Controls.VisualElement view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.SizeRequest +~Microsoft.Maui.Controls.Internals.IResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.Internals.ISystemResourcesProvider.GetSystemResources() -> Microsoft.Maui.Controls.Internals.IResourceDictionary +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.Internals.NavigationProxy.Inner.set -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.InsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~Microsoft.Maui.Controls.Internals.NavigationProxy.ModalStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.NavigationStack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopModalAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushAsync(Microsoft.Maui.Controls.Page root, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.PushModalAsync(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationProxy.RemovePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.BeforePage.set -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.NavigationRequestedEventArgs(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before, bool animated) -> void +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.get -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs.Task.set -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) -> void +~Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx.NotifyCollectionChangedEventArgsEx(int count, System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) -> void +~Microsoft.Maui.Controls.Internals.Profile.Datum.Id -> string +~Microsoft.Maui.Controls.Internals.Profile.Datum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Id -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Name -> string +~Microsoft.Maui.Controls.Internals.ProfileDatum.Path -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Accept.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Cancel.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.InitialValue.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.Internals.PromptArguments.Message.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.Placeholder.get -> string +~Microsoft.Maui.Controls.Internals.PromptArguments.PromptArguments(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Result.get -> System.Threading.Tasks.TaskCompletionSource +~Microsoft.Maui.Controls.Internals.PromptArguments.SetResult(string text) -> void +~Microsoft.Maui.Controls.Internals.PromptArguments.Title.get -> string +~Microsoft.Maui.Controls.Internals.Registrar +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandler(System.Type type, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerForObject(object obj, params object[] args) -> TOut +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerType(System.Type viewType, System.Type visualType) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.GetHandlerTypeForObject(object obj) -> System.Type +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisual) -> void +~Microsoft.Maui.Controls.Internals.Registrar.Register(System.Type tview, System.Type trender, System.Type[] supportedVisuals, short priority) -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.get -> System.Reflection.AssemblyName +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.AssemblyName.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.get -> object +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.Instance.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingQuery.ResourcePath.set -> void +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.get -> string +~Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceLoadingResponse.ResourceContent.set -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.ResourcesChangedEventArgs(System.Collections.Generic.IEnumerable> values) -> void +~Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.Values.get -> System.Collections.Generic.IEnumerable> +~Microsoft.Maui.Controls.Internals.TableModel.RowLongPressed(object item) -> void +~Microsoft.Maui.Controls.Internals.TableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ActivateContent(int index, object item) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.CreateContent(int index, object item, bool insert = false) -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfGroup(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object group, object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupHeaderTemplateProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.IsGroupingEnabledProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.Parent.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ProgressiveLoadingProperty.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.get -> string +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortName.set -> void +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Internals.TemplatedItemsList.this[int index].get -> TItem +~Microsoft.Maui.Controls.Internals.TypedBinding.TypedBinding(System.Func getter, System.Action setter, System.Tuple, string>[] handlers) -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Converter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.get -> object +~Microsoft.Maui.Controls.Internals.TypedBindingBase.Source.set -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.InvalidNavigationException.InvalidNavigationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.IPageContainer +~Microsoft.Maui.Controls.IPageContainer.CurrentPage.get -> T +~Microsoft.Maui.Controls.IPageController.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.IPanGestureController.SendPan(Microsoft.Maui.Controls.Element sender, double totalX, double totalY, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCanceled(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanCompleted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPanGestureController.SendPanStarted(Microsoft.Maui.Controls.Element sender, int gestureId) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinch(Microsoft.Maui.Controls.Element sender, double scale, Microsoft.Maui.Graphics.Point currentScalePoint) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchCanceled(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchEnded(Microsoft.Maui.Controls.Element sender) -> void +~Microsoft.Maui.Controls.IPinchGestureController.SendPinchStarted(Microsoft.Maui.Controls.Element sender, Microsoft.Maui.Graphics.Point intialScalePoint) -> void +~Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.IQueryAttributable.ApplyQueryAttributes(System.Collections.Generic.IDictionary query) -> void +~Microsoft.Maui.Controls.IScrollViewController.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ISearchHandlerController.ItemSelected(object obj) -> void +~Microsoft.Maui.Controls.ISearchHandlerController.ListProxy.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellAppearanceElement.EffectiveTabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.IShellContentController.GetOrCreateContent() -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellContentController.RecyclePage(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellController.AddAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer, Microsoft.Maui.Controls.Element pivot) -> void +~Microsoft.Maui.Controls.IShellController.AddFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> void +~Microsoft.Maui.Controls.IShellController.AppearanceChanged(Microsoft.Maui.Controls.Element source, bool appearanceSet) -> void +~Microsoft.Maui.Controls.IShellController.FlyoutContent.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutFooter.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutHeader.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.IShellController.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.IShellController.GenerateFlyoutGrouping() -> System.Collections.Generic.List> +~Microsoft.Maui.Controls.IShellController.GetFlyoutItemDataTemplate(Microsoft.Maui.Controls.BindableObject bo) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.IShellController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellController.GetNavigationState(Microsoft.Maui.Controls.ShellItem shellItem, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, bool includeStack = true) -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelected(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.IShellController.OnFlyoutItemSelectedAsync(Microsoft.Maui.Controls.Element element) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.IShellController.ProposeNavigation(Microsoft.Maui.Controls.ShellNavigationSource source, Microsoft.Maui.Controls.ShellItem item, Microsoft.Maui.Controls.ShellSection shellSection, Microsoft.Maui.Controls.ShellContent shellContent, System.Collections.Generic.IReadOnlyList stack, bool canCancel) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveAppearanceObserver(Microsoft.Maui.Controls.IAppearanceObserver observer) -> bool +~Microsoft.Maui.Controls.IShellController.RemoveFlyoutBehaviorObserver(Microsoft.Maui.Controls.IFlyoutBehaviorObserver observer) -> bool +~Microsoft.Maui.Controls.IShellItemController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellItemController.ProposeSection(Microsoft.Maui.Controls.ShellSection shellSection, bool setValue = true) -> bool +~Microsoft.Maui.Controls.IShellSectionController.AddContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> void +~Microsoft.Maui.Controls.IShellSectionController.AddDisplayedPageObserver(object observer, System.Action callback) -> void +~Microsoft.Maui.Controls.IShellSectionController.GetItems() -> System.Collections.ObjectModel.ReadOnlyCollection +~Microsoft.Maui.Controls.IShellSectionController.PresentedPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.IShellSectionController.RemoveContentInsetObserver(Microsoft.Maui.Controls.IShellContentInsetObserver observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.RemoveDisplayedPageObserver(object observer) -> bool +~Microsoft.Maui.Controls.IShellSectionController.SendPopped(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPopping(System.Threading.Tasks.Task poppingCompleted) -> void +~Microsoft.Maui.Controls.IShellSectionController.SendPoppingToRoot(System.Threading.Tasks.Task finishedPopping) -> void +~Microsoft.Maui.Controls.ISwipeGestureController.DetectSwipe(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> bool +~Microsoft.Maui.Controls.ISwipeGestureController.SendSwipe(Microsoft.Maui.Controls.Element sender, double totalX, double totalY) -> void +~Microsoft.Maui.Controls.ISwipeItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ISwipeItem.Command.set -> void +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.ISwipeItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeChanging(Microsoft.Maui.Controls.SwipeChangingEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeEnded(Microsoft.Maui.Controls.SwipeEndedEventArgs args) -> void +~Microsoft.Maui.Controls.ISwipeViewController.SendSwipeStarted(Microsoft.Maui.Controls.SwipeStartedEventArgs args) -> void +~Microsoft.Maui.Controls.ITableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ITableModel.GetItem(int section, int row) -> object +~Microsoft.Maui.Controls.ITableModel.GetSectionIndexTitles() -> string[] +~Microsoft.Maui.Controls.ITableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ITableModel.GetSectionTitle(int section) -> string +~Microsoft.Maui.Controls.ITableModel.RowSelected(object item) -> void +~Microsoft.Maui.Controls.ITableViewController.Model.get -> Microsoft.Maui.Controls.ITableModel +~Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.ActivateContent(int index, object item = null) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.BindingContext.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexForGroup(Microsoft.Maui.Controls.ITemplatedItemsList group) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGlobalIndexOfItem(object item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroup(int index) -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object group, object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.GetGroupAndIndexOfItem(object item) -> System.Tuple +~Microsoft.Maui.Controls.ITemplatedItemsList.HeaderContent.get -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.IndexOf(TItem item) -> int +~Microsoft.Maui.Controls.ITemplatedItemsList.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ITemplatedItemsList.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.get -> string +~Microsoft.Maui.Controls.ITemplatedItemsList.Name.set -> void +~Microsoft.Maui.Controls.ITemplatedItemsList.SelectDataTemplate(object item) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ITemplatedItemsList.ShortNames.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateContent(TItem content, int index) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsList.UpdateHeader(TItem content, int groupIndex) -> TItem +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsListScrollToRequestedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ITemplatedItemsView +~Microsoft.Maui.Controls.ITemplatedItemsView.ListProxy.get -> Microsoft.Maui.Controls.IListProxy +~Microsoft.Maui.Controls.ITemplatedItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.ITemplatedItemsList +~Microsoft.Maui.Controls.ItemsView.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.EmptyView.get -> object +~Microsoft.Maui.Controls.ItemsView.EmptyView.set -> void +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.EmptyViewTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.ItemsView.InternalItemsLayout.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommand.set -> void +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.get -> object +~Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameter.set -> void +~Microsoft.Maui.Controls.ItemsView.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ItemsView.ScrollTo(object item, object group = null, Microsoft.Maui.Controls.ScrollToPosition position = Microsoft.Maui.Controls.ScrollToPosition.MakeVisible, bool animate = true) -> void +~Microsoft.Maui.Controls.ItemsView.SendScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~Microsoft.Maui.Controls.ItemsView +~Microsoft.Maui.Controls.ItemsView.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.ItemsView.ItemsSource.set -> void +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ItemsView.ItemTemplate.set -> void +~Microsoft.Maui.Controls.ItemsView.TemplatedItems.get -> Microsoft.Maui.Controls.Internals.TemplatedItemsList, TVisual> +~Microsoft.Maui.Controls.ItemTappedEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemTappedEventArgs.ItemTappedEventArgs(object group, object item, int itemIndex) -> void +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ItemVisibilityEventArgs.ItemVisibilityEventArgs(object item, int itemIndex) -> void +~Microsoft.Maui.Controls.IValueConverter.Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IValueConverter.ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) -> object +~Microsoft.Maui.Controls.IViewContainer +~Microsoft.Maui.Controls.IViewContainer.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.IVisualElementController.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.IWebViewController.SendNavigated(Microsoft.Maui.Controls.WebNavigatedEventArgs args) -> void +~Microsoft.Maui.Controls.IWebViewController.SendNavigating(Microsoft.Maui.Controls.WebNavigatingEventArgs args) -> void +~Microsoft.Maui.Controls.Label.FontFamily.get -> string +~Microsoft.Maui.Controls.Label.FontFamily.set -> void +~Microsoft.Maui.Controls.Label.FormattedText.get -> Microsoft.Maui.Controls.FormattedString +~Microsoft.Maui.Controls.Label.FormattedText.set -> void +~Microsoft.Maui.Controls.Label.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Label.Text.get -> string +~Microsoft.Maui.Controls.Label.Text.set -> void +~Microsoft.Maui.Controls.Label.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Label.TextColor.set -> void +~Microsoft.Maui.Controls.Layout.Add(Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Layout.Contains(Microsoft.Maui.IView item) -> bool +~Microsoft.Maui.Controls.Layout.CopyTo(Microsoft.Maui.IView[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.Layout.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.Layout.IndexOf(Microsoft.Maui.IView item) -> int +~Microsoft.Maui.Controls.Layout.Insert(int index, Microsoft.Maui.IView child) -> void +~Microsoft.Maui.Controls.Layout.Remove(Microsoft.Maui.IView child) -> bool +~Microsoft.Maui.Controls.Layout.this[int index].get -> Microsoft.Maui.IView +~Microsoft.Maui.Controls.Layout.this[int index].set -> void +~Microsoft.Maui.Controls.Layout._layoutManager -> Microsoft.Maui.Layouts.ILayoutManager +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.LinearGradientBrush.LinearGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point startPoint, Microsoft.Maui.Graphics.Point endPoint) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.ListProxyChangedEventArgs(System.Collections.Generic.IReadOnlyCollection oldList, System.Collections.Generic.IReadOnlyCollection newList) -> void +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.NewList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListProxyChangedEventArgs.OldList.get -> System.Collections.Generic.IReadOnlyCollection +~Microsoft.Maui.Controls.ListView.CreateDefaultCell(object item) -> Microsoft.Maui.Controls.Cell +~Microsoft.Maui.Controls.ListView.Footer.get -> object +~Microsoft.Maui.Controls.ListView.Footer.set -> void +~Microsoft.Maui.Controls.ListView.FooterElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GetDisplayTextFromGroup(object cell) -> string +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupDisplayBinding.set -> void +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.GroupHeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.ListView.GroupShortNameBinding.set -> void +~Microsoft.Maui.Controls.ListView.Header.get -> object +~Microsoft.Maui.Controls.ListView.Header.set -> void +~Microsoft.Maui.Controls.ListView.HeaderElement.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ListView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ListView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int groupIndex, int inGroupIndex, Microsoft.Maui.Controls.Cell cell, bool isContextMenuRequested) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell = null) -> void +~Microsoft.Maui.Controls.ListView.NotifyRowTapped(int index, Microsoft.Maui.Controls.Cell cell, bool isContextmenuRequested) -> void +~Microsoft.Maui.Controls.ListView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ListView.RefreshCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.ListView.RefreshCommand.set -> void +~Microsoft.Maui.Controls.ListView.RefreshControlColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.RefreshControlColor.set -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.ScrollTo(object item, object group, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> void +~Microsoft.Maui.Controls.ListView.SelectedItem.get -> object +~Microsoft.Maui.Controls.ListView.SelectedItem.set -> void +~Microsoft.Maui.Controls.ListView.SendCellAppearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendCellDisappearing(Microsoft.Maui.Controls.Cell cell) -> void +~Microsoft.Maui.Controls.ListView.SendScrolled(Microsoft.Maui.Controls.ScrolledEventArgs args) -> void +~Microsoft.Maui.Controls.ListView.SeparatorColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ListView.SeparatorColor.set -> void +~Microsoft.Maui.Controls.MarshalingObservableCollection.MarshalingObservableCollection(System.Collections.IList list) -> void +~Microsoft.Maui.Controls.MenuBar.Add(Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Contains(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.CopyTo(Microsoft.Maui.IMenuBarItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBar.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBar.IndexOf(Microsoft.Maui.IMenuBarItem item) -> int +~Microsoft.Maui.Controls.MenuBar.Insert(int index, Microsoft.Maui.IMenuBarItem item) -> void +~Microsoft.Maui.Controls.MenuBar.Remove(Microsoft.Maui.IMenuBarItem item) -> bool +~Microsoft.Maui.Controls.MenuBar.this[int index].get -> Microsoft.Maui.IMenuBarItem +~Microsoft.Maui.Controls.MenuBar.this[int index].set -> void +~Microsoft.Maui.Controls.MenuBarItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuBarItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuBarItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuBarItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuBarItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuBarItem.Text.get -> string +~Microsoft.Maui.Controls.MenuBarItem.Text.set -> void +~Microsoft.Maui.Controls.MenuBarItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuBarItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Add(Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Contains(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.CopyTo(Microsoft.Maui.IMenuElement[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuFlyoutSubItem.IndexOf(Microsoft.Maui.IMenuElement item) -> int +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Insert(int index, Microsoft.Maui.IMenuElement item) -> void +~Microsoft.Maui.Controls.MenuFlyoutSubItem.Remove(Microsoft.Maui.IMenuElement item) -> bool +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].get -> Microsoft.Maui.IMenuElement +~Microsoft.Maui.Controls.MenuFlyoutSubItem.this[int index].set -> void +~Microsoft.Maui.Controls.MenuItem.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.class.set -> void +~Microsoft.Maui.Controls.MenuItem.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.MenuItem.Command.set -> void +~Microsoft.Maui.Controls.MenuItem.CommandParameter.get -> object +~Microsoft.Maui.Controls.MenuItem.CommandParameter.set -> void +~Microsoft.Maui.Controls.MenuItem.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.MenuItem.IconImageSource.set -> void +~Microsoft.Maui.Controls.MenuItem.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MenuItem.StyleClass.set -> void +~Microsoft.Maui.Controls.MenuItem.Text.get -> string +~Microsoft.Maui.Controls.MenuItem.Text.set -> void +~Microsoft.Maui.Controls.MenuItemCollection.Add(Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Contains(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.CopyTo(Microsoft.Maui.Controls.MenuItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.MenuItemCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.MenuItemCollection.IndexOf(Microsoft.Maui.Controls.MenuItem item) -> int +~Microsoft.Maui.Controls.MenuItemCollection.Insert(int index, Microsoft.Maui.Controls.MenuItem item) -> void +~Microsoft.Maui.Controls.MenuItemCollection.Remove(Microsoft.Maui.Controls.MenuItem item) -> bool +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].get -> Microsoft.Maui.Controls.MenuItem +~Microsoft.Maui.Controls.MenuItemCollection.this[int index].set -> void +~Microsoft.Maui.Controls.ModalEventArgs.Modal.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.ModalEventArgs.ModalEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppedEventArgs.ModalPoppedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPoppingEventArgs.ModalPoppingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushedEventArgs.ModalPushedEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.ModalPushingEventArgs.ModalPushingEventArgs(Microsoft.Maui.Controls.Page modal) -> void +~Microsoft.Maui.Controls.MultiBinding.Bindings.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiBinding.Bindings.set -> void +~Microsoft.Maui.Controls.MultiBinding.Converter.get -> Microsoft.Maui.Controls.IMultiValueConverter +~Microsoft.Maui.Controls.MultiBinding.Converter.set -> void +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.MultiBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.MultiPage +~Microsoft.Maui.Controls.MultiPage.Children.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiPage.CurrentPage.get -> T +~Microsoft.Maui.Controls.MultiPage.CurrentPage.set -> void +~Microsoft.Maui.Controls.MultiPage.GetPageByIndex(int index) -> T +~Microsoft.Maui.Controls.MultiPage.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.MultiPage.ItemsSource.set -> void +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.MultiPage.ItemTemplate.set -> void +~Microsoft.Maui.Controls.MultiPage.SelectedItem.get -> object +~Microsoft.Maui.Controls.MultiPage.SelectedItem.set -> void +~Microsoft.Maui.Controls.MultiTrigger.Conditions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.MultiTrigger.MultiTrigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.MultiTrigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.class.set -> void +~Microsoft.Maui.Controls.NavigableElement.Navigation.get -> Microsoft.Maui.Controls.INavigation +~Microsoft.Maui.Controls.NavigableElement.NavigationProxy.get -> Microsoft.Maui.Controls.Internals.NavigationProxy +~Microsoft.Maui.Controls.NavigableElement.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.NavigableElement.Style.set -> void +~Microsoft.Maui.Controls.NavigableElement.StyleClass.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.NavigableElement.StyleClass.set -> void +~Microsoft.Maui.Controls.NavigationEventArgs.NavigationEventArgs(Microsoft.Maui.Controls.Page page) -> void +~Microsoft.Maui.Controls.NavigationEventArgs.Page.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.NavigationPage.BarBackground.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.NavigationPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.NavigationPage.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.NavigationPage(Microsoft.Maui.Controls.Page root) -> void +~Microsoft.Maui.Controls.NavigationPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.NavigationPage.Peek(int depth) -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.NavigationPage.PopAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.PushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.NavigationPage.RootPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.On.Platform.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.On.Platform.set -> void +~Microsoft.Maui.Controls.On.Value.get -> object +~Microsoft.Maui.Controls.On.Value.set -> void +~Microsoft.Maui.Controls.OnPlatform.Platforms.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.OpenGLView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.get -> System.Action +~Microsoft.Maui.Controls.OpenGLView.OnDisplay.set -> void +~Microsoft.Maui.Controls.Page.BackgroundImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.BackgroundImageSource.set -> void +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayActionSheet(string title, string cancel, string destruction, params string[] buttons) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string accept, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayAlert(string title, string message, string cancel, Microsoft.Maui.FlowDirection flowDirection) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.DisplayPromptAsync(string title, string message, string accept = "OK", string cancel = "Cancel", string placeholder = null, int maxLength = -1, Microsoft.Maui.Keyboard keyboard = null, string initialValue = "") -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Page.IconImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Page.IconImageSource.set -> void +~Microsoft.Maui.Controls.Page.InternalChildren.get -> System.Collections.ObjectModel.ObservableCollection +~Microsoft.Maui.Controls.Page.MenuBarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Page.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Page.Title.get -> string +~Microsoft.Maui.Controls.Page.Title.set -> void +~Microsoft.Maui.Controls.Page.ToolbarItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ParentChangingEventArgs.NewParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.OldParent.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ParentChangingEventArgs.ParentChangingEventArgs(Microsoft.Maui.Controls.Element oldParent, Microsoft.Maui.Controls.Element newParent) -> void +~Microsoft.Maui.Controls.Picker.FontFamily.get -> string +~Microsoft.Maui.Controls.Picker.FontFamily.set -> void +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Picker.ItemDisplayBinding.set -> void +~Microsoft.Maui.Controls.Picker.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.get -> System.Collections.IList +~Microsoft.Maui.Controls.Picker.ItemsSource.set -> void +~Microsoft.Maui.Controls.Picker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Picker.SelectedItem.get -> object +~Microsoft.Maui.Controls.Picker.SelectedItem.set -> void +~Microsoft.Maui.Controls.Picker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TextColor.set -> void +~Microsoft.Maui.Controls.Picker.Title.get -> string +~Microsoft.Maui.Controls.Picker.Title.set -> void +~Microsoft.Maui.Controls.Picker.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Picker.TitleColor.set -> void +~Microsoft.Maui.Controls.PlatformConfigurationRegistry +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.PlatformConfigurationRegistry.PlatformConfigurationRegistry(TElement element) -> void +~Microsoft.Maui.Controls.PlatformEffect +~Microsoft.Maui.Controls.PlatformEffect.Container.get -> TContainer +~Microsoft.Maui.Controls.PlatformEffect.Control.get -> TControl +~Microsoft.Maui.Controls.PointCollection.PointCollection(Microsoft.Maui.Graphics.Point[] p) -> void +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedPages.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.PoppedToRootEventArgs.PoppedToRootEventArgs(Microsoft.Maui.Controls.Page page, System.Collections.Generic.IEnumerable poppedPages) -> void +~Microsoft.Maui.Controls.ProgressBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ProgressBar.ProgressColor.set -> void +~Microsoft.Maui.Controls.ProgressBar.ProgressTo(double value, uint length, Microsoft.Maui.Easing easing) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyChangingEventArgs(string propertyName) -> void +~Microsoft.Maui.Controls.PropertyCondition.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.PropertyCondition.Property.set -> void +~Microsoft.Maui.Controls.PropertyCondition.Value.get -> object +~Microsoft.Maui.Controls.PropertyCondition.Value.set -> void +~Microsoft.Maui.Controls.QueryPropertyAttribute.Name.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryId.get -> string +~Microsoft.Maui.Controls.QueryPropertyAttribute.QueryPropertyAttribute(string name, string queryId) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, double radius) -> void +~Microsoft.Maui.Controls.RadialGradientBrush.RadialGradientBrush(Microsoft.Maui.Controls.GradientStopCollection gradientStops, Microsoft.Maui.Graphics.Point center, double radius) -> void +~Microsoft.Maui.Controls.RadioButton.BorderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.BorderColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Content.get -> object +~Microsoft.Maui.Controls.RadioButton.Content.set -> void +~Microsoft.Maui.Controls.RadioButton.ContentAsString() -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.get -> string +~Microsoft.Maui.Controls.RadioButton.FontFamily.set -> void +~Microsoft.Maui.Controls.RadioButton.GroupName.get -> string +~Microsoft.Maui.Controls.RadioButton.GroupName.set -> void +~Microsoft.Maui.Controls.RadioButton.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RadioButton.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RadioButton.TextColor.set -> void +~Microsoft.Maui.Controls.RadioButton.Value.get -> object +~Microsoft.Maui.Controls.RadioButton.Value.set -> void +~Microsoft.Maui.Controls.RefreshView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.RefreshView.Command.set -> void +~Microsoft.Maui.Controls.RefreshView.CommandParameter.get -> object +~Microsoft.Maui.Controls.RefreshView.CommandParameter.set -> void +~Microsoft.Maui.Controls.RefreshView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.RefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.RefreshView.RefreshColor.set -> void +~Microsoft.Maui.Controls.RelativeBindingSource.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.RelativeBindingSource.RelativeBindingSource(Microsoft.Maui.Controls.RelativeBindingSourceMode mode, System.Type ancestorType = null, int ancestorLevel = 1) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.RenderWithAttribute(System.Type type, System.Type[] supportedVisuals) -> void +~Microsoft.Maui.Controls.RenderWithAttribute.SupportedVisuals.get -> System.Type[] +~Microsoft.Maui.Controls.RenderWithAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.ResolutionGroupNameAttribute.ResolutionGroupNameAttribute(string name) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.Style style) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Add(string key, object value) -> void +~Microsoft.Maui.Controls.ResourceDictionary.ContainsKey(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.GetEnumerator() -> System.Collections.Generic.IEnumerator> +~Microsoft.Maui.Controls.ResourceDictionary.Keys.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.MergedDictionaries.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.ResourceDictionary.Remove(string key) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.SetAndLoadSource(System.Uri value, string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo) -> void +~Microsoft.Maui.Controls.ResourceDictionary.Source.get -> System.Uri +~Microsoft.Maui.Controls.ResourceDictionary.Source.set -> void +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].get -> object +~Microsoft.Maui.Controls.ResourceDictionary.this[string index].set -> void +~Microsoft.Maui.Controls.ResourceDictionary.TryGetValue(string key, out object value) -> bool +~Microsoft.Maui.Controls.ResourceDictionary.Values.get -> System.Collections.Generic.ICollection +~Microsoft.Maui.Controls.RoutingEffect.RoutingEffect(string effectId) -> void +~Microsoft.Maui.Controls.RowDefinitionCollection.RowDefinitionCollection(params Microsoft.Maui.Controls.RowDefinition[] definitions) -> void +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.Element.get -> Microsoft.Maui.Controls.Element +~Microsoft.Maui.Controls.ScrollToRequestedEventArgs.ToRequest() -> Microsoft.Maui.ScrollToRequest +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Group.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.Item.get -> object +~Microsoft.Maui.Controls.ScrollToRequestEventArgs.ScrollToRequestEventArgs(object item, object group, Microsoft.Maui.Controls.ScrollToPosition scrollToPosition, bool isAnimated) -> void +~Microsoft.Maui.Controls.ScrollView.Content.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ScrollView.Content.set -> void +~Microsoft.Maui.Controls.ScrollView.GetScrollPositionForElement(Microsoft.Maui.Controls.VisualElement item, Microsoft.Maui.Controls.ScrollToPosition pos) -> Microsoft.Maui.Graphics.Point +~Microsoft.Maui.Controls.ScrollView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(double x, double y, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.ScrollView.ScrollToAsync(Microsoft.Maui.Controls.Element element, Microsoft.Maui.Controls.ScrollToPosition position, bool animated) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchBar.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchBar.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchBar.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchBar.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SearchBar.SearchCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchBar.SearchCommand.set -> void +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchBar.SearchCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.AutomationId.get -> string +~Microsoft.Maui.Controls.SearchHandler.AutomationId.set -> void +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.CancelButtonColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommand.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.get -> string +~Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderName.set -> void +~Microsoft.Maui.Controls.SearchHandler.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SearchHandler.Command.set -> void +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.get -> object +~Microsoft.Maui.Controls.SearchHandler.CommandParameter.set -> void +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.get -> string +~Microsoft.Maui.Controls.SearchHandler.DisplayMemberName.set -> void +~Microsoft.Maui.Controls.SearchHandler.FontFamily.get -> string +~Microsoft.Maui.Controls.SearchHandler.FontFamily.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.SearchHandler.ItemsSource.set -> void +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.SearchHandler.ItemTemplate.set -> void +~Microsoft.Maui.Controls.SearchHandler.Keyboard.get -> Microsoft.Maui.Keyboard +~Microsoft.Maui.Controls.SearchHandler.Keyboard.set -> void +~Microsoft.Maui.Controls.SearchHandler.Placeholder.get -> string +~Microsoft.Maui.Controls.SearchHandler.Placeholder.set -> void +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.PlaceholderColor.set -> void +~Microsoft.Maui.Controls.SearchHandler.Query.get -> string +~Microsoft.Maui.Controls.SearchHandler.Query.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.SearchHandler.QueryIcon.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconHelpText.set -> void +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.get -> string +~Microsoft.Maui.Controls.SearchHandler.QueryIconName.set -> void +~Microsoft.Maui.Controls.SearchHandler.SelectedItem.get -> object +~Microsoft.Maui.Controls.SearchHandler.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SearchHandler.TextColor.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItem.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SelectableItemsView.SelectedItems.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommand.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.get -> object +~Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameter.set -> void +~Microsoft.Maui.Controls.SelectableItemsView.UpdateSelectedItems(System.Collections.Generic.IList newSelection) -> void +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItem.get -> object +~Microsoft.Maui.Controls.SelectedItemChangedEventArgs.SelectedItemChangedEventArgs(object selectedItem, int selectedItemIndex) -> void +~Microsoft.Maui.Controls.SelectedPositionChangedEventArgs.SelectedPosition.get -> object +~Microsoft.Maui.Controls.SelectionChangedEventArgs.CurrentSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.SelectionChangedEventArgs.PreviousSelection.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Setter.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Setter.Property.set -> void +~Microsoft.Maui.Controls.Setter.TargetName.get -> string +~Microsoft.Maui.Controls.Setter.TargetName.set -> void +~Microsoft.Maui.Controls.Setter.Value.get -> object +~Microsoft.Maui.Controls.Setter.Value.set -> void +~Microsoft.Maui.Controls.Shadow.Brush.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shadow.Brush.set -> void +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.get -> Microsoft.Maui.Controls.Shapes.GeometryCollection +~Microsoft.Maui.Controls.Shapes.GeometryGroup.Children.set -> void +~Microsoft.Maui.Controls.Shapes.Matrix.Transform(Microsoft.Maui.Graphics.Point[] points) -> void +~Microsoft.Maui.Controls.Shapes.Path.Data.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.Shapes.Path.Data.set -> void +~Microsoft.Maui.Controls.Shapes.Path.Path(Microsoft.Maui.Controls.Shapes.Geometry data) -> void +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.get -> Microsoft.Maui.Controls.Shapes.Transform +~Microsoft.Maui.Controls.Shapes.Path.RenderTransform.set -> void +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.get -> Microsoft.Maui.Controls.Shapes.PathSegmentCollection +~Microsoft.Maui.Controls.Shapes.PathFigure.Segments.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.get -> Microsoft.Maui.Controls.Shapes.PathFigureCollection +~Microsoft.Maui.Controls.Shapes.PathGeometry.Figures.set -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures) -> void +~Microsoft.Maui.Controls.Shapes.PathGeometry.PathGeometry(Microsoft.Maui.Controls.Shapes.PathFigureCollection figures, Microsoft.Maui.Controls.Shapes.FillRule fillRule) -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PolyBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polygon.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polygon.Polygon(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.Polyline.Points.set -> void +~Microsoft.Maui.Controls.Shapes.Polyline.Polyline(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyLineSegment.PolyLineSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.get -> Microsoft.Maui.Controls.PointCollection +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.Points.set -> void +~Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PolyQuadraticBezierSegment(Microsoft.Maui.Controls.PointCollection points) -> void +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.get -> Microsoft.Maui.Controls.Shapes.TransformCollection +~Microsoft.Maui.Controls.Shapes.TransformGroup.Children.set -> void +~Microsoft.Maui.Controls.Shell.AddLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.Shell.CurrentItem.get -> Microsoft.Maui.Controls.ShellItem +~Microsoft.Maui.Controls.Shell.CurrentItem.set -> void +~Microsoft.Maui.Controls.Shell.CurrentPage.get -> Microsoft.Maui.Controls.Page +~Microsoft.Maui.Controls.Shell.CurrentState.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackdrop.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Shell.FlyoutBackground.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundColor.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutBackgroundImage.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContent.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutContent.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutContentTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooter.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutFooter.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutFooterTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeader.get -> object +~Microsoft.Maui.Controls.Shell.FlyoutHeader.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplate.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Shell.FlyoutIcon.set -> void +~Microsoft.Maui.Controls.Shell.FlyoutItems.get -> System.Collections.IEnumerable +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, bool animate, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.GoToAsync(Microsoft.Maui.Controls.ShellNavigationState state, System.Collections.Generic.IDictionary parameters) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.Shell.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Shell.ItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.ItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Shell.MenuItemTemplate.set -> void +~Microsoft.Maui.Controls.Shell.RemoveLogicalChild(Microsoft.Maui.Controls.Element element) -> void +~Microsoft.Maui.Controls.ShellAppearance.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.DisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.FlyoutBackdrop.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.ShellAppearance.ForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.Ingest(Microsoft.Maui.Controls.Element pivot) -> bool +~Microsoft.Maui.Controls.ShellAppearance.TabBarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarDisabledColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarForegroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarTitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TabBarUnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.TitleColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellAppearance.UnselectedColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.ShellContent.Content.get -> object +~Microsoft.Maui.Controls.ShellContent.Content.set -> void +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.ShellContent.ContentTemplate.set -> void +~Microsoft.Maui.Controls.ShellContent.MenuItems.get -> Microsoft.Maui.Controls.MenuItemCollection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.get -> Microsoft.Maui.Controls.ShellSection +~Microsoft.Maui.Controls.ShellItem.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellItem.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellItem.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.Previous.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatedEventArgs.ShellNavigatedEventArgs(Microsoft.Maui.Controls.ShellNavigationState previous, Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationSource source) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Current.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.GetDeferral() -> Microsoft.Maui.Controls.ShellNavigatingDeferral +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.ShellNavigatingEventArgs(Microsoft.Maui.Controls.ShellNavigationState current, Microsoft.Maui.Controls.ShellNavigationState target, Microsoft.Maui.Controls.ShellNavigationSource source, bool canCancel) -> void +~Microsoft.Maui.Controls.ShellNavigatingEventArgs.Target.get -> Microsoft.Maui.Controls.ShellNavigationState +~Microsoft.Maui.Controls.ShellNavigationState.Location.get -> System.Uri +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(string location) -> void +~Microsoft.Maui.Controls.ShellNavigationState.ShellNavigationState(System.Uri location) -> void +~Microsoft.Maui.Controls.ShellSection.CurrentItem.get -> Microsoft.Maui.Controls.ShellContent +~Microsoft.Maui.Controls.ShellSection.CurrentItem.set -> void +~Microsoft.Maui.Controls.ShellSection.Items.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ShellSection.Stack.get -> System.Collections.Generic.IReadOnlyList +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragCompletedCommand.set -> void +~Microsoft.Maui.Controls.Slider.DragStartedCommand.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.Slider.DragStartedCommand.set -> void +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MaximumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.MinimumTrackColor.set -> void +~Microsoft.Maui.Controls.Slider.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Slider.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Slider.ThumbColor.set -> void +~Microsoft.Maui.Controls.Slider.ThumbImageSource.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Slider.ThumbImageSource.set -> void +~Microsoft.Maui.Controls.SolidColorBrush.SolidColorBrush(Microsoft.Maui.Graphics.Color color) -> void +~Microsoft.Maui.Controls.Span.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.BackgroundColor.set -> void +~Microsoft.Maui.Controls.Span.FontFamily.get -> string +~Microsoft.Maui.Controls.Span.FontFamily.set -> void +~Microsoft.Maui.Controls.Span.Style.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Span.Style.set -> void +~Microsoft.Maui.Controls.Span.Text.get -> string +~Microsoft.Maui.Controls.Span.Text.set -> void +~Microsoft.Maui.Controls.Span.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Span.TextColor.set -> void +~Microsoft.Maui.Controls.StackLayoutManager.StackLayoutManager(Microsoft.Maui.Controls.StackLayout stackLayout) -> void +~Microsoft.Maui.Controls.Stepper.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.StructuredItemsView.Footer.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Footer.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.FooterTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.Header.get -> object +~Microsoft.Maui.Controls.StructuredItemsView.Header.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.get -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplate.set -> void +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.get -> Microsoft.Maui.Controls.IItemsLayout +~Microsoft.Maui.Controls.StructuredItemsView.ItemsLayout.set -> void +~Microsoft.Maui.Controls.Style.BasedOn.get -> Microsoft.Maui.Controls.Style +~Microsoft.Maui.Controls.Style.BasedOn.set -> void +~Microsoft.Maui.Controls.Style.BaseResourceKey.get -> string +~Microsoft.Maui.Controls.Style.BaseResourceKey.set -> void +~Microsoft.Maui.Controls.Style.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Class.get -> string +~Microsoft.Maui.Controls.Style.Class.set -> void +~Microsoft.Maui.Controls.Style.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Style.Style(System.Type targetType) -> void +~Microsoft.Maui.Controls.Style.TargetType.get -> System.Type +~Microsoft.Maui.Controls.Style.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.SwipedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.SwipedEventArgs.SwipedEventArgs(object parameter, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeGestureRecognizer.SendSwiped(Microsoft.Maui.Controls.View sender, Microsoft.Maui.SwipeDirection direction) -> void +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwipeItem.BackgroundColor.set -> void +~Microsoft.Maui.Controls.SwipeItems.Add(Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Contains(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.CopyTo(Microsoft.Maui.Controls.ISwipeItem[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.SwipeItems.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.SwipeItems.IndexOf(Microsoft.Maui.Controls.ISwipeItem item) -> int +~Microsoft.Maui.Controls.SwipeItems.Insert(int index, Microsoft.Maui.Controls.ISwipeItem item) -> void +~Microsoft.Maui.Controls.SwipeItems.Remove(Microsoft.Maui.Controls.ISwipeItem item) -> bool +~Microsoft.Maui.Controls.SwipeItems.SwipeItems(System.Collections.Generic.IEnumerable swipeItems) -> void +~Microsoft.Maui.Controls.SwipeItems.this[int index].get -> Microsoft.Maui.Controls.ISwipeItem +~Microsoft.Maui.Controls.SwipeItems.this[int index].set -> void +~Microsoft.Maui.Controls.SwipeItemView.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.SwipeItemView.Command.set -> void +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.get -> object +~Microsoft.Maui.Controls.SwipeItemView.CommandParameter.set -> void +~Microsoft.Maui.Controls.SwipeView.BottomItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.BottomItems.set -> void +~Microsoft.Maui.Controls.SwipeView.LeftItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.LeftItems.set -> void +~Microsoft.Maui.Controls.SwipeView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.SwipeView.RightItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.RightItems.set -> void +~Microsoft.Maui.Controls.SwipeView.TopItems.get -> Microsoft.Maui.Controls.SwipeItems +~Microsoft.Maui.Controls.SwipeView.TopItems.set -> void +~Microsoft.Maui.Controls.Switch.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.Switch.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.OnColor.set -> void +~Microsoft.Maui.Controls.Switch.ThumbColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Switch.ThumbColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.OnColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.SwitchCell.OnColor.set -> void +~Microsoft.Maui.Controls.SwitchCell.Text.get -> string +~Microsoft.Maui.Controls.SwitchCell.Text.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.TabbedPage.BarBackground.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarBackgroundColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.BarTextColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.SelectedTabColor.set -> void +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TabbedPage.UnselectedTabColor.set -> void +~Microsoft.Maui.Controls.TableRoot.TableRoot(string title) -> void +~Microsoft.Maui.Controls.TableSection.TableSection(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TableSectionBase.TextColor.set -> void +~Microsoft.Maui.Controls.TableSectionBase.Title.get -> string +~Microsoft.Maui.Controls.TableSectionBase.Title.set -> void +~Microsoft.Maui.Controls.TableSectionBase +~Microsoft.Maui.Controls.TableSectionBase.Add(System.Collections.Generic.IEnumerable items) -> void +~Microsoft.Maui.Controls.TableSectionBase.Add(T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Contains(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.CopyTo(T[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.TableSectionBase.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.TableSectionBase.IndexOf(T item) -> int +~Microsoft.Maui.Controls.TableSectionBase.Insert(int index, T item) -> void +~Microsoft.Maui.Controls.TableSectionBase.Remove(T item) -> bool +~Microsoft.Maui.Controls.TableSectionBase.TableSectionBase(string title) -> void +~Microsoft.Maui.Controls.TableSectionBase.this[int index].get -> T +~Microsoft.Maui.Controls.TableSectionBase.this[int index].set -> void +~Microsoft.Maui.Controls.TableView.Model.get -> Microsoft.Maui.Controls.Internals.TableModel +~Microsoft.Maui.Controls.TableView.Model.set -> void +~Microsoft.Maui.Controls.TableView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TableView.Root.get -> Microsoft.Maui.Controls.TableRoot +~Microsoft.Maui.Controls.TableView.Root.set -> void +~Microsoft.Maui.Controls.TableView.TableView(Microsoft.Maui.Controls.TableRoot root) -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TapGestureRecognizer.Command.set -> void +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.get -> object +~Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameter.set -> void +~Microsoft.Maui.Controls.TappedEventArgs.Parameter.get -> object +~Microsoft.Maui.Controls.TappedEventArgs.TappedEventArgs(object parameter) -> void +~Microsoft.Maui.Controls.TemplateBinding.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.TemplateBinding.Converter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.get -> object +~Microsoft.Maui.Controls.TemplateBinding.ConverterParameter.set -> void +~Microsoft.Maui.Controls.TemplateBinding.Path.get -> string +~Microsoft.Maui.Controls.TemplateBinding.Path.set -> void +~Microsoft.Maui.Controls.TemplateBinding.TemplateBinding(string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, object converterParameter = null, string stringFormat = null) -> void +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedPage.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedPage.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~Microsoft.Maui.Controls.TemplatedView.ControlTemplate.set -> void +~Microsoft.Maui.Controls.TemplatedView.GetTemplateChild(string name) -> object +~Microsoft.Maui.Controls.TextCell.Command.get -> System.Windows.Input.ICommand +~Microsoft.Maui.Controls.TextCell.Command.set -> void +~Microsoft.Maui.Controls.TextCell.CommandParameter.get -> object +~Microsoft.Maui.Controls.TextCell.CommandParameter.set -> void +~Microsoft.Maui.Controls.TextCell.Detail.get -> string +~Microsoft.Maui.Controls.TextCell.Detail.set -> void +~Microsoft.Maui.Controls.TextCell.DetailColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.DetailColor.set -> void +~Microsoft.Maui.Controls.TextCell.Text.get -> string +~Microsoft.Maui.Controls.TextCell.Text.set -> void +~Microsoft.Maui.Controls.TextCell.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TextCell.TextColor.set -> void +~Microsoft.Maui.Controls.TextChangedEventArgs.NewTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.OldTextValue.get -> string +~Microsoft.Maui.Controls.TextChangedEventArgs.TextChangedEventArgs(string oldTextValue, string newTextValue) -> void +~Microsoft.Maui.Controls.TimePicker.FontFamily.get -> string +~Microsoft.Maui.Controls.TimePicker.FontFamily.set -> void +~Microsoft.Maui.Controls.TimePicker.Format.get -> string +~Microsoft.Maui.Controls.TimePicker.Format.set -> void +~Microsoft.Maui.Controls.TimePicker.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.TimePicker.TextColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.TimePicker.TextColor.set -> void +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.get -> string +~Microsoft.Maui.Controls.Toolbar.BackButtonTitle.set -> void +~Microsoft.Maui.Controls.Toolbar.BarBackground.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.Toolbar.BarBackground.set -> void +~Microsoft.Maui.Controls.Toolbar.Handler.get -> Microsoft.Maui.IElementHandler +~Microsoft.Maui.Controls.Toolbar.Handler.set -> void +~Microsoft.Maui.Controls.Toolbar.Parent.get -> Microsoft.Maui.IElement +~Microsoft.Maui.Controls.Toolbar.TitleIcon.get -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Toolbar.TitleIcon.set -> void +~Microsoft.Maui.Controls.Toolbar.Toolbar(Microsoft.Maui.IElement parent) -> void +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Controls.Toolbar.ToolbarItems.set -> void +~Microsoft.Maui.Controls.ToolbarItem.ToolbarItem(string name, string icon, System.Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0) -> void +~Microsoft.Maui.Controls.TouchEventArgs.Touches.get -> Microsoft.Maui.Graphics.PointF[] +~Microsoft.Maui.Controls.TouchEventArgs.TouchEventArgs(Microsoft.Maui.Graphics.PointF[] points, bool isInsideBounds) -> void +~Microsoft.Maui.Controls.Trigger.Property.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Trigger.Property.set -> void +~Microsoft.Maui.Controls.Trigger.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.Trigger.Trigger(System.Type targetType) -> void +~Microsoft.Maui.Controls.Trigger.Value.get -> object +~Microsoft.Maui.Controls.Trigger.Value.set -> void +~Microsoft.Maui.Controls.TriggerAction +~Microsoft.Maui.Controls.TriggerBase.EnterActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.ExitActions.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.TriggerBase.TargetType.get -> System.Type +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.UnsolvableConstraintsException.UnsolvableConstraintsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.UriImageSource.Uri.get -> System.Uri +~Microsoft.Maui.Controls.UriImageSource.Uri.set -> void +~Microsoft.Maui.Controls.UrlWebViewSource.Url.get -> string +~Microsoft.Maui.Controls.UrlWebViewSource.Url.set -> void +~Microsoft.Maui.Controls.View.GestureController.get -> Microsoft.Maui.Controls.Internals.IGestureController +~Microsoft.Maui.Controls.View.GestureRecognizers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.ViewCell.View.get -> Microsoft.Maui.Controls.View +~Microsoft.Maui.Controls.ViewCell.View.set -> void +~Microsoft.Maui.Controls.VisualAttribute.VisualAttribute(string key, System.Type visual) -> void +~Microsoft.Maui.Controls.VisualElement.Background.get -> Microsoft.Maui.Controls.Brush +~Microsoft.Maui.Controls.VisualElement.Background.set -> void +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.VisualElement.BackgroundColor.set -> void +~Microsoft.Maui.Controls.VisualElement.Behaviors.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Clip.get -> Microsoft.Maui.Controls.Shapes.Geometry +~Microsoft.Maui.Controls.VisualElement.Clip.set -> void +~Microsoft.Maui.Controls.VisualElement.Resources.get -> Microsoft.Maui.Controls.ResourceDictionary +~Microsoft.Maui.Controls.VisualElement.Resources.set -> void +~Microsoft.Maui.Controls.VisualElement.Triggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualElement.Visual.get -> Microsoft.Maui.Controls.IVisual +~Microsoft.Maui.Controls.VisualElement.Visual.set -> void +~Microsoft.Maui.Controls.VisualElement.Window.get -> Microsoft.Maui.Controls.Window +~Microsoft.Maui.Controls.VisualState.Name.get -> string +~Microsoft.Maui.Controls.VisualState.Name.set -> void +~Microsoft.Maui.Controls.VisualState.Setters.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.StateTriggers.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualState.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualState.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.CurrentState.get -> Microsoft.Maui.Controls.VisualState +~Microsoft.Maui.Controls.VisualStateGroup.Name.get -> string +~Microsoft.Maui.Controls.VisualStateGroup.Name.set -> void +~Microsoft.Maui.Controls.VisualStateGroup.States.get -> System.Collections.Generic.IList +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.get -> System.Type +~Microsoft.Maui.Controls.VisualStateGroup.TargetType.set -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Add(Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Contains(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.CopyTo(Microsoft.Maui.Controls.VisualStateGroup[] array, int arrayIndex) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.GetEnumerator() -> System.Collections.Generic.IEnumerator +~Microsoft.Maui.Controls.VisualStateGroupList.IndexOf(Microsoft.Maui.Controls.VisualStateGroup item) -> int +~Microsoft.Maui.Controls.VisualStateGroupList.Insert(int index, Microsoft.Maui.Controls.VisualStateGroup item) -> void +~Microsoft.Maui.Controls.VisualStateGroupList.Remove(Microsoft.Maui.Controls.VisualStateGroup item) -> bool +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].get -> Microsoft.Maui.Controls.VisualStateGroup +~Microsoft.Maui.Controls.VisualStateGroupList.this[int index].set -> void +~Microsoft.Maui.Controls.WebNavigatedEventArgs.WebNavigatedEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url, Microsoft.Maui.WebNavigationResult result) -> void +~Microsoft.Maui.Controls.WebNavigatingEventArgs.WebNavigatingEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebNavigationEventArgs.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebNavigationEventArgs.Url.get -> string +~Microsoft.Maui.Controls.WebNavigationEventArgs.WebNavigationEventArgs(Microsoft.Maui.WebNavigationEvent navigationEvent, Microsoft.Maui.Controls.WebViewSource source, string url) -> void +~Microsoft.Maui.Controls.WebView.Cookies.get -> System.Net.CookieContainer +~Microsoft.Maui.Controls.WebView.Cookies.set -> void +~Microsoft.Maui.Controls.WebView.Eval(string script) -> void +~Microsoft.Maui.Controls.WebView.EvaluateJavaScriptAsync(string script) -> System.Threading.Tasks.Task +~Microsoft.Maui.Controls.WebView.On() -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~Microsoft.Maui.Controls.WebView.OnSourceChanged(object sender, System.EventArgs e) -> void +~Microsoft.Maui.Controls.WebView.Source.get -> Microsoft.Maui.Controls.WebViewSource +~Microsoft.Maui.Controls.WebView.Source.set -> void +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Binding.get -> Microsoft.Maui.Controls.BindingBase +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.ErrorCode.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.Message.get -> string +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.MessageArgs.get -> object[] +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs.XamlSourceInfo.get -> Microsoft.Maui.SourceInfo +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Source.get -> object +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.Target.get -> Microsoft.Maui.Controls.BindableObject +~Microsoft.Maui.Controls.Xaml.Diagnostics.BindingErrorEventArgs.TargetProperty.get -> Microsoft.Maui.Controls.BindableProperty +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IMarkupExtension.ProvideValue(System.IServiceProvider serviceProvider) -> T +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetBinding(object target, string propertyName, Microsoft.Maui.Controls.BindingBase binding) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeBindingService.TrySetValue(object target, Microsoft.Maui.Controls.BindableProperty property, object value) -> bool +~Microsoft.Maui.Controls.Xaml.Internals.INativeValueConverterService.ConvertTo(object value, System.Type toType, out object platformValue) -> bool +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetObject.get -> object +~Microsoft.Maui.Controls.Xaml.IProvideValueTarget.TargetProperty.get -> object +~Microsoft.Maui.Controls.Xaml.IReferenceProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.IRootObjectProvider.RootObject.get -> object +~Microsoft.Maui.Controls.Xaml.IValueProvider.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.Resolve(string qualifiedTypeName, System.IServiceProvider serviceProvider = null) -> System.Type +~Microsoft.Maui.Controls.Xaml.IXamlTypeResolver.TryResolve(string qualifiedTypeName, out System.Type type) -> bool +~Microsoft.Maui.Controls.Xaml.IXmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Exception innerException) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(string message, System.Xml.IXmlLineInfo xmlInfo, System.Exception innerException = null) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +~Microsoft.Maui.Controls.Xaml.XamlParseException.XmlInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Path.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.get -> string +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.ResourceId.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.Type.set -> void +~Microsoft.Maui.Controls.Xaml.XamlResourceIdAttribute.XamlResourceIdAttribute(string resourceId, string path, System.Type type) -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.AssemblyName.set -> void +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.ClrNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsDefinitionAttribute.XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) -> void +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.Prefix.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlNamespace.get -> string +~Microsoft.Maui.Controls.XmlnsPrefixAttribute.XmlnsPrefixAttribute(string xmlNamespace, string prefix) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.AbsoluteLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.AbsoluteLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.Accelerator.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Accelerator.ToString() -> string +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.AcceleratorTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.AppLinkEntry.ToString() -> string +~override Microsoft.Maui.Controls.BaseShellItem.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BindablePropertyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BoundsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.BrushTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentLayout.ToString() -> string +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Button.ButtonContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Button.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.CarouselLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Cell.OnPropertyChanging(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Compatibility.ConstraintTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.FlexLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Grid.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.Compatibility.Layout.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnAdded(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.Compatibility.RelativeLayout.OnRemoved(Microsoft.Maui.Controls.View view) -> void +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.DoubleCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Editor.OnTextChanged(string oldValue, string newValue) -> void +~override Microsoft.Maui.Controls.Element.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.FileImageSource.Cancel() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Controls.FileImageSource.ToString() -> string +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FileImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FlexLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.FlexLayout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.FlexLayout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FlowDirectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontAttributesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.FontSizeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.FormattedString.ToString() -> string +~override Microsoft.Maui.Controls.GradientStop.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.Grid.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.Grid.OnAdd(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnInsert(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnRemove(int index, Microsoft.Maui.IView view) -> void +~override Microsoft.Maui.Controls.Grid.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.GridLengthTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.CreatePlatformView() -> object +~override Microsoft.Maui.Controls.HorizontalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.HtmlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ImageSourceConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ItemsLayoutTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Label.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.LayoutOptionsConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ListStringTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.ListView.CreateDefault(object item) -> Microsoft.Maui.Controls.Cell +~override Microsoft.Maui.Controls.ListView.SetupContent(Microsoft.Maui.Controls.Cell content, int index) -> void +~override Microsoft.Maui.Controls.ListView.UnhookContent(Microsoft.Maui.Controls.Cell content) -> void +~override Microsoft.Maui.Controls.ListView.ValidateItemTemplate(Microsoft.Maui.Controls.DataTemplate template) -> bool +~override Microsoft.Maui.Controls.MultiPage.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.MultiPage.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ReferenceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RefreshView.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.ResourceDictionary.RDSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.RowDefinitionCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Ellipse.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.EllipseGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.GeometryGroup.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.Line.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.LineGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.MatrixTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Path.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PathGeometryConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.PointCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shapes.Polygon.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Polyline.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.Rectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.RoundRectangle.GetPath() -> Microsoft.Maui.Graphics.PathF +~override Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.AppendPath(Microsoft.Maui.Graphics.PathF path) -> void +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.StrokeShapeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.Shapes.TransformTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.Shell.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.ShellAppearance.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.ShellContent.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellContent.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellItem.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.ShellSection.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.SolidColorBrush.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.StackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.StreamImageSource.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.Switch.OnPropertyChanged(string propertyName = null) -> void +~override Microsoft.Maui.Controls.TabbedPage.CreateDefault(object item) -> Microsoft.Maui.Controls.Page +~override Microsoft.Maui.Controls.TemplatedPage.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TemplatedView.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextAlignmentConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TextDecorationConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.TriggerAction.Invoke(object sender) -> void +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.TypeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UriImageSource.ToString() -> string +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.UriTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.UrlWebViewSource.Load(Microsoft.Maui.IWebViewDelegate renderer) -> void +~override Microsoft.Maui.Controls.VerticalStackLayout.CreateLayoutManager() -> Microsoft.Maui.Layouts.ILayoutManager +~override Microsoft.Maui.Controls.VisualElement.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~override Microsoft.Maui.Controls.VisualElement.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualElement.VisibilityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualState.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroup.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualStateGroupList.Equals(object obj) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.VisualTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Controls.WebView.OnPropertyChanged(string propertyName) -> void +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Controls.WebViewSourceTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Foldable.FoldEventArgs.ToString() -> string +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Accelerator.FromString(string text) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.Accelerator.implicit operator Microsoft.Maui.Controls.Accelerator(string accelerator) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.AnimationExtensions.AbortAnimation(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Add(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Action step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.Animate(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func transform, System.Action callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = null, System.Action finished = null, System.Func repeat = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimateKinetic(this Microsoft.Maui.Controls.IAnimatable self, string name, System.Func callback, double velocity, double drag, System.Action finished = null, Microsoft.Maui.Animations.IAnimationManager animationManager = null) -> void +~static Microsoft.Maui.Controls.AnimationExtensions.AnimationIsRunning(this Microsoft.Maui.Controls.IAnimatable self, string handle) -> bool +~static Microsoft.Maui.Controls.AnimationExtensions.Batch(this Microsoft.Maui.Controls.IAnimatable self) -> System.IDisposable +~static Microsoft.Maui.Controls.AnimationExtensions.Insert(this Microsoft.Maui.Animations.IAnimationManager animationManager, System.Func step) -> int +~static Microsoft.Maui.Controls.AnimationExtensions.Interpolate(double start, double end = 1, double reverseVal = 0, bool reverse = false) -> System.Func +~static Microsoft.Maui.Controls.AnimationExtensions.Remove(this Microsoft.Maui.Animations.IAnimationManager animationManager, int tickerId) -> void +~static Microsoft.Maui.Controls.Application.ControlsApplicationMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.AppLinkEntry.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.AppLinkEntry +~static Microsoft.Maui.Controls.AutomationProperties.GetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetHelpText(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.GetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable) -> bool? +~static Microsoft.Maui.Controls.AutomationProperties.GetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.VisualElement +~static Microsoft.Maui.Controls.AutomationProperties.GetName(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.AutomationProperties.SetExcludedWithChildren(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetHelpText(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetIsInAccessibleTree(Microsoft.Maui.Controls.BindableObject bindable, bool? value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetLabeledBy(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.VisualElement value) -> void +~static Microsoft.Maui.Controls.AutomationProperties.SetName(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyView(Microsoft.Maui.Controls.BindableObject b) -> object +~static Microsoft.Maui.Controls.BindableLayout.GetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemsSource(Microsoft.Maui.Controls.BindableObject b) -> System.Collections.IEnumerable +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplate(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.BindableLayout.GetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.DataTemplateSelector +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyView(Microsoft.Maui.Controls.BindableObject b, object value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetEmptyViewTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemsSource(Microsoft.Maui.Controls.BindableObject b, System.Collections.IEnumerable value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplate(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplate value) -> void +~static Microsoft.Maui.Controls.BindableLayout.SetItemTemplateSelector(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.DataTemplateSelector value) -> void +~static Microsoft.Maui.Controls.BindableObject.SetInheritedBindingContext(Microsoft.Maui.Controls.BindableObject bindable, object value) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.GetPropertyIfSet(this Microsoft.Maui.Controls.BindableObject bindableObject, Microsoft.Maui.Controls.BindableProperty bindableProperty, T returnIfNotSet) -> T +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, T light, T dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, Microsoft.Maui.Graphics.Color light, Microsoft.Maui.Graphics.Color dark) -> void +~static Microsoft.Maui.Controls.BindableObjectExtensions.SetBinding(this Microsoft.Maui.Controls.BindableObject self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path, Microsoft.Maui.Controls.BindingMode mode = Microsoft.Maui.Controls.BindingMode.Default, Microsoft.Maui.Controls.IValueConverter converter = null, string stringFormat = null) -> void +~static Microsoft.Maui.Controls.BindableProperty.Create(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue = null, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttached(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWay, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.BindableProperty.CreateAttachedReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindableProperty.CreateReadOnly(string propertyName, System.Type returnType, System.Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = null, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = null, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = null, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = null) -> Microsoft.Maui.Controls.BindablePropertyKey +~static Microsoft.Maui.Controls.BindingBase.DisableCollectionSynchronization(System.Collections.IEnumerable collection) -> void +~static Microsoft.Maui.Controls.BindingBase.EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, Microsoft.Maui.Controls.CollectionSynchronizationCallback callback) -> void +~static Microsoft.Maui.Controls.BoundsConstraint.FromExpression(System.Linq.Expressions.Expression> expression, System.Collections.Generic.IEnumerable parents = null) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Brush.AliceBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.AntiqueWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aqua.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Aquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Azure.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Beige.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Bisque.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Black.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlanchedAlmond.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Blue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BlueViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Brown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.BurlyWood.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CadetBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chartreuse.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Chocolate.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Coral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.CornflowerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cornsilk.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Crimson.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Cyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkKhaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkMagenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOliveGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DarkViolet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DeepSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Default.get -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.DimGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.DodgerBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Firebrick.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.FloralWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.ForestGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Fuchsia.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gainsboro.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GhostWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gold.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Goldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Gray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Green.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.GreenYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Honeydew.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.HotPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Controls.Brush(Microsoft.Maui.Graphics.Paint paint) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Brush.implicit operator Microsoft.Maui.Graphics.Paint(Microsoft.Maui.Controls.Brush brush) -> Microsoft.Maui.Graphics.Paint +~static Microsoft.Maui.Controls.Brush.IndianRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Indigo.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.IsNullOrEmpty(Microsoft.Maui.Controls.Brush brush) -> bool +~static Microsoft.Maui.Controls.Brush.Ivory.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Khaki.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lavender.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LavenderBlush.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LawnGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LemonChiffon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCoral.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightCyan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGoldenrodYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightPink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSalmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightSteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LightYellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Lime.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.LimeGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Linen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Magenta.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Maroon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumAquamarine.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumOrchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumPurple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumSpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MediumVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MidnightBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MintCream.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.MistyRose.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Moccasin.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.NavajoWhite.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Navy.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OldLace.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Olive.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OliveDrab.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orange.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.OrangeRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Orchid.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGoldenrod.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleTurquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PaleVioletRed.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PapayaWhip.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PeachPuff.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Peru.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Pink.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Plum.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.PowderBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Purple.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Red.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RosyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.RoyalBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SaddleBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Salmon.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SandyBrown.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SeaShell.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Sienna.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Silver.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SkyBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SlateGray.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Snow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SpringGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.SteelBlue.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tan.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Teal.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Thistle.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Tomato.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Transparent.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Turquoise.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Violet.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Wheat.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.White.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.WhiteSmoke.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.Yellow.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Brush.YellowGreen.get -> Microsoft.Maui.Controls.SolidColorBrush +~static Microsoft.Maui.Controls.Button.ControlsButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Button.MapContentLayout(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapLineBreakMode(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Button.MapText(Microsoft.Maui.Handlers.ButtonHandler handler, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Rect +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.GetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutBounds(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Rect bounds) -> void +~static Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.SetLayoutFlags(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.AbsoluteLayoutFlags flags) -> void +~static Microsoft.Maui.Controls.Compatibility.Constraint.Constant(double size) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.FromExpression(System.Linq.Expressions.Expression> expression) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToParent(System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.Constraint.RelativeToView(Microsoft.Maui.Controls.View view, System.Func measure) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Compatibility.Layout.LayoutChildIntoBoundingRegion(Microsoft.Maui.Controls.VisualElement child, Microsoft.Maui.Graphics.Rect region) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.BoundsConstraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetXConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.GetYConstraint(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Compatibility.Constraint +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetBoundsConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.BoundsConstraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetHeightConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetWidthConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetXConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.Compatibility.RelativeLayout.SetYConstraint(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Compatibility.Constraint value) -> void +~static Microsoft.Maui.Controls.CompressedLayout.GetHeadlessOffset(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Point +~static Microsoft.Maui.Controls.CompressedLayout.GetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable) -> bool +~static Microsoft.Maui.Controls.CompressedLayout.SetIsHeadless(Microsoft.Maui.Controls.BindableObject bindable, bool value) -> void +~static Microsoft.Maui.Controls.Configuration.Create(TElement element) -> Microsoft.Maui.Controls.Configuration +~static Microsoft.Maui.Controls.ContentPresenter.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.ControlsColorExtensions.IsNotDefault(this Microsoft.Maui.Graphics.Color color) -> bool +~static Microsoft.Maui.Controls.DatePicker.ControlsDatePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.DependencyService.Get(Microsoft.Maui.Controls.DependencyFetchTarget fetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.DependencyService.Register(System.Reflection.Assembly[] assemblies) -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.Register() -> void +~static Microsoft.Maui.Controls.DependencyService.RegisterSingleton(T instance) -> void +~static Microsoft.Maui.Controls.DependencyService.Resolve(Microsoft.Maui.Controls.DependencyFetchTarget fallbackFetchTarget = Microsoft.Maui.Controls.DependencyFetchTarget.GlobalInstance) -> T +~static Microsoft.Maui.Controls.Device.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.get -> System.Reflection.Assembly +~static Microsoft.Maui.Controls.Device.DefaultRendererAssembly.set -> void +~static Microsoft.Maui.Controls.Device.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, Microsoft.Maui.Controls.Element targetElement) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType) -> double +~static Microsoft.Maui.Controls.Device.GetNamedSize(Microsoft.Maui.Controls.NamedSize size, System.Type targetElementType, bool useOldSizes) -> double +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Device.RuntimePlatform.get -> string +~static Microsoft.Maui.Controls.Device.StartTimer(System.TimeSpan interval, System.Func callback) -> void +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(double[] d) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.DoubleCollection.implicit operator Microsoft.Maui.Controls.DoubleCollection(float[] f) -> Microsoft.Maui.Controls.DoubleCollection +~static Microsoft.Maui.Controls.Editor.ControlsEditorMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Editor.MapText(Microsoft.Maui.Handlers.EditorHandler handler, Microsoft.Maui.Controls.Editor editor) -> void +~static Microsoft.Maui.Controls.Effect.Resolve(string name) -> Microsoft.Maui.Controls.Effect +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsDefault(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMatchParent(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.EffectiveVisualExtensions.IsMaterial(this Microsoft.Maui.Controls.IVisual visual) -> bool +~static Microsoft.Maui.Controls.Element.ControlsElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesExcludedWithChildren(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Element.MapAutomationPropertiesIsInAccessibleTree(Microsoft.Maui.IElementHandler handler, Microsoft.Maui.Controls.Element element) -> void +~static Microsoft.Maui.Controls.Entry.ControlsEntryMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Entry.MapText(Microsoft.Maui.Handlers.EntryHandler handler, Microsoft.Maui.Controls.Entry entry) -> void +~static Microsoft.Maui.Controls.FileImageSource.implicit operator Microsoft.Maui.Controls.FileImageSource(string file) -> Microsoft.Maui.Controls.FileImageSource +~static Microsoft.Maui.Controls.FileImageSource.implicit operator string(Microsoft.Maui.Controls.FileImageSource file) -> string +~static Microsoft.Maui.Controls.FlexLayout.GetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexAlignSelf +~static Microsoft.Maui.Controls.FlexLayout.GetBasis(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Layouts.FlexBasis +~static Microsoft.Maui.Controls.FlexLayout.GetGrow(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.FlexLayout.GetShrink(Microsoft.Maui.Controls.BindableObject bindable) -> float +~static Microsoft.Maui.Controls.FlexLayout.SetAlignSelf(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexAlignSelf value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetBasis(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Layouts.FlexBasis value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetGrow(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetOrder(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.FlexLayout.SetShrink(Microsoft.Maui.Controls.BindableObject bindable, float value) -> void +~static Microsoft.Maui.Controls.FlyoutItem.GetIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.FlyoutItem.SetIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.FormattedString.explicit operator string(Microsoft.Maui.Controls.FormattedString formatted) -> string +~static Microsoft.Maui.Controls.FormattedString.implicit operator Microsoft.Maui.Controls.FormattedString(string text) -> Microsoft.Maui.Controls.FormattedString +~static Microsoft.Maui.Controls.Grid.GetColumn(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject bindable) -> int +~static Microsoft.Maui.Controls.Grid.SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetColumnSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject bindable, int value) -> void +~static Microsoft.Maui.Controls.GridExtensions.Add(this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapCurrentItem(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsBounceEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapIsSwipeEnabled(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapLoop(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPeekAreaInsets(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler.MapPosition(Microsoft.Maui.Controls.Handlers.Items.CarouselViewHandler handler, Microsoft.Maui.Controls.CarouselView carouselView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.CollectionViewHandler.Mapper -> Microsoft.Maui.PropertyMapper +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.GroupableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler.MapIsGrouped(Microsoft.Maui.Controls.Handlers.Items.GroupableItemsViewHandler handler, Microsoft.Maui.Controls.GroupableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.ItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyView(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapEmptyViewTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapFlowDirection(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapIsVisible(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsSource(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemsUpdatingScrollMode(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapItemTemplate(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Controls.Handlers.Items.ItemsViewHandler handler, Microsoft.Maui.Controls.ItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.MapCanReorderItems(Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler handler, Microsoft.Maui.Controls.ReorderableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewHandler.ReorderableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItem(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectedItems(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.MapSelectionMode(Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler handler, Microsoft.Maui.Controls.SelectableItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.SelectableItemsViewHandler.SelectableItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapFooterTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapHeaderTemplate(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemSizingStrategy(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.MapItemsLayout(Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler handler, Microsoft.Maui.Controls.StructuredItemsView itemsView) -> void +~static Microsoft.Maui.Controls.Handlers.Items.StructuredItemsViewHandler.StructuredItemsViewMapper -> Microsoft.Maui.PropertyMapper> +~static Microsoft.Maui.Controls.Handlers.LineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapX2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY1(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.LineHandler.MapY2(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Line line) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapData(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapRenderTransform(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PathHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Path path) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolygonHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polygon polygon) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapFillRule(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapPoints(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.PolylineHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Polyline polyline) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusX(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RectangleHandler.MapRadiusY(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.Rectangle rectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.MapCornerRadius(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.Controls.Shapes.RoundRectangle roundRectangle) -> void +~static Microsoft.Maui.Controls.Handlers.RoundRectangleHandler.Mapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.ConfigureEffects(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Action configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.ImageSource.FromFile(string file) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Reflection.Assembly sourceAssembly = null) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromResource(string resource, System.Type resolvingType) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromStream(System.Func> stream) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.FromUri(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(string source) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.implicit operator Microsoft.Maui.Controls.ImageSource(System.Uri uri) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.ImageSource.IsNullOrEmpty(Microsoft.Maui.Controls.ImageSource imageSource) -> bool +~static Microsoft.Maui.Controls.Internals.AsyncValue.Null.get -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.AsyncValueExtensions.AsAsyncValue(this System.Threading.Tasks.Task valueTask, T defaultValue = default(T)) -> Microsoft.Maui.Controls.Internals.AsyncValue +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroup(this TItem cell) -> Microsoft.Maui.Controls.ITemplatedItemsList +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetGroupHeaderContent(this TItem cell) -> TItem +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIndex(this TItem cell) -> int +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetIsGroupHeader(this TItem cell) -> bool +~static Microsoft.Maui.Controls.Internals.CellExtensions.GetPath(this Microsoft.Maui.Controls.Cell cell) -> System.Tuple +~static Microsoft.Maui.Controls.Internals.CellExtensions.SetIsGroupHeader(this TItem cell, bool value) -> void +~static Microsoft.Maui.Controls.Internals.ContentPageEx.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.ContentPageEx.LoadProfile(this Microsoft.Maui.Controls.ContentPage page) -> void +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.CreateContent(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> object +~static Microsoft.Maui.Controls.Internals.DataTemplateExtensions.SelectDataTemplate(this Microsoft.Maui.Controls.DataTemplate self, object item, Microsoft.Maui.Controls.BindableObject container) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.DependencyResolver.ResolveUsing(System.Func resolver) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.RegisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController oldElement, Microsoft.Maui.Controls.IElementController newElement) -> void +~static Microsoft.Maui.Controls.Internals.EffectUtilities.UnregisterEffectControlProvider(Microsoft.Maui.Controls.IEffectControlProvider self, Microsoft.Maui.Controls.IElementController element) -> void +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.get -> Microsoft.Maui.Controls.Internals.IExpressionSearch +~static Microsoft.Maui.Controls.Internals.ExpressionSearch.Default.set -> void +~static Microsoft.Maui.Controls.Internals.GIFBitmap.CreateBitmapAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, Microsoft.Maui.Controls.Internals.GIFHeader header, Microsoft.Maui.Controls.Internals.GIFBitmapDecoder decoder, Microsoft.Maui.Controls.Internals.GIFBitmap previousBitmap, bool ignoreImageData = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFColorTable.CreateColorTableAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, short size) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.GIFHeader.CreateHeaderAsync(Microsoft.Maui.Controls.Internals.GIFDecoderStreamReader stream, bool skipTypeIdentifier = false) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Controls.Internals.NameScope.GetNameScope(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Internals.INameScope +~static Microsoft.Maui.Controls.Internals.NameScope.SetNameScope(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Internals.INameScope value) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Action insert, System.Action removeAt, System.Action reset) -> System.Collections.Specialized.NotifyCollectionChangedAction +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.Apply(this System.Collections.Specialized.NotifyCollectionChangedEventArgs self, System.Collections.Generic.IList from, System.Collections.Generic.IList to) -> void +~static Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsExtensions.WithCount(this System.Collections.Specialized.NotifyCollectionChangedEventArgs e, int count) -> Microsoft.Maui.Controls.Internals.NotifyCollectionChangedEventArgsEx +~static Microsoft.Maui.Controls.Internals.PageExtensions.AncestorToRoot(this Microsoft.Maui.Controls.Page page) -> Microsoft.Maui.Controls.Page +~static Microsoft.Maui.Controls.Internals.Performance.Provider.get -> Microsoft.Maui.Controls.Internals.IPerformanceProvider +~static Microsoft.Maui.Controls.Internals.Performance.SetProvider(Microsoft.Maui.Controls.Internals.IPerformanceProvider instance) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(out string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Start(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Performance.Stop(string reference, string tag = null, string path = null, string member = null) -> void +~static Microsoft.Maui.Controls.Internals.Profile.Data -> System.Collections.Generic.List +~static Microsoft.Maui.Controls.Internals.Profile.FrameBegin(string name = "", int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.Profile.FrameEnd(string name = "") -> void +~static Microsoft.Maui.Controls.Internals.Profile.FramePartition(string id, int line = 0) -> void +~static Microsoft.Maui.Controls.Internals.PropertyPropagationExtensions.PropagatePropertyChanged(string propertyName, Microsoft.Maui.Controls.Element target, Microsoft.Maui.Controls.Element source) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.get -> System.Collections.Generic.IEnumerable +~static Microsoft.Maui.Controls.Internals.Registrar.ExtraAssemblies.set -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.Controls.InitializationFlags flags, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterAll(System.Type[] attrTypes, Microsoft.Maui.IFontRegistrar fontRegistrar = null) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.Registered.get -> Microsoft.Maui.Controls.Internals.Registrar +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffect(string resolutionName, string id, System.Type effectType) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterEffects(string resolutionName, Microsoft.Maui.Controls.ExportEffectAttribute[] effectAttributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRenderers(Microsoft.Maui.Controls.HandlerAttribute[] attributes) -> void +~static Microsoft.Maui.Controls.Internals.Registrar.RegisterRendererToHandlerShim(System.Func handlerShim) -> void +~static Microsoft.Maui.Controls.Internals.ResourceLoader.ResourceProvider2.get -> System.Func +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.GetTransformedText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~static Microsoft.Maui.Controls.Internals.TextTransformUtilites.SetPlainText(Microsoft.Maui.Controls.InputView inputView, string platformText) -> void +~static Microsoft.Maui.Controls.KnownColor.Accent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.Default.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.KnownColor.SetAccent(Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.KnownColor.Transparent.get -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Label.ControlsLabelMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Label.MapLineBreakMode(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapMaxLines(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapText(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Label.MapTextType(Microsoft.Maui.Handlers.LabelHandler handler, Microsoft.Maui.Controls.Label label) -> void +~static Microsoft.Maui.Controls.Layout.ControlsLayoutMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Layout.MapInputTransparent(Microsoft.Maui.Handlers.LayoutHandler handler, Microsoft.Maui.Controls.Layout layout) -> void +~static Microsoft.Maui.Controls.MenuItem.GetAccelerator(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.Accelerator +~static Microsoft.Maui.Controls.MenuItem.SetAccelerator(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.Accelerator value) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Instance.get -> Microsoft.Maui.Controls.IMessagingCenter +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message, TArgs args) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Send(TSender sender, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Subscribe(object subscriber, string message, System.Action callback, TSender source = null) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MessagingCenter.Unsubscribe(object subscriber, string message) -> void +~static Microsoft.Maui.Controls.MultiPage.GetIndex(T page) -> int +~static Microsoft.Maui.Controls.MultiPage.SetIndex(Microsoft.Maui.Controls.Page page, int index) -> void +~static Microsoft.Maui.Controls.NameScopeExtensions.FindByName(this Microsoft.Maui.Controls.Element element, string name) -> T +~static Microsoft.Maui.Controls.NavigationPage.ControlsNavigationPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.NavigationPage.GetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.NavigationPage.GetHasBackButton(Microsoft.Maui.Controls.Page page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page) -> bool +~static Microsoft.Maui.Controls.NavigationPage.GetIconColor(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.NavigationPage.GetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.ImageSource +~static Microsoft.Maui.Controls.NavigationPage.GetTitleView(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.NavigationPage.SetBackButtonTitle(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasBackButton(Microsoft.Maui.Controls.Page page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetHasNavigationBar(Microsoft.Maui.Controls.BindableObject page, bool value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetIconColor(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleIconImageSource(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.ImageSource value) -> void +~static Microsoft.Maui.Controls.NavigationPage.SetTitleView(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.OnIdiom.implicit operator T(Microsoft.Maui.Controls.OnIdiom onIdiom) -> T +~static Microsoft.Maui.Controls.OnPlatform.implicit operator T(Microsoft.Maui.Controls.OnPlatform onPlatform) -> T +~static Microsoft.Maui.Controls.PanGestureRecognizer.CurrentId.get -> Microsoft.Maui.Controls.Internals.AutoId +~static Microsoft.Maui.Controls.Picker.ControlsPickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Platform.ButtonExtensions.UpdateContentLayout(this object platformButton, Microsoft.Maui.Controls.Button button) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetSendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.GetShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPause(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendAppearingEventOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetSendDisappearingEventOnPause(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SetShouldPreserveKeyboardOnResume(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResume(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.GetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.SetBarHeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.GetWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.UseWindowSoftInputModeAdjust(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.GetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.SetUseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPadding(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.GetImeOptions(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.SetImeOptions(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImeFlags value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.GetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.SetIsFastScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.DisableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSmoothScroll(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.EnableSwipePaging(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetMaxItemCount(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(Microsoft.Maui.Controls.BindableObject element, int value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetOffscreenPageLimit(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.GetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.SetIsContextActionsLegacyModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(Microsoft.Maui.Controls.VisualElement element) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> float? +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(Microsoft.Maui.Controls.VisualElement element, float? value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetElevation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, float? value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetDisplayZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetEnableZoomControls(Microsoft.Maui.Controls.WebView element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.GetMixedContentMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetDisplayZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(Microsoft.Maui.Controls.WebView element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetEnableZoomControls(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.SetMixedContentMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.MixedContentHandling value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsDisplayed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.ZoomControlsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.GetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(Microsoft.Maui.Controls.BindableObject element, bool tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.SetHasCornerRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.GetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(Microsoft.Maui.Controls.BindableObject element, string backButtonIcon) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.SetBackButtonIcon(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.GetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition tabPosition) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.SetTabPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabPosition value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.GetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetEnableAccessibilityScalingForNamedFontSizes(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetHandleControlUpdatesOnMainThread(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.SetPanGestureRecognizerShouldRecognizeSimultaneously(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.GetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.SetDefaultBackgroundColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.DisableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.EnableAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.GetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetAdjustsFontSizeToFitWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.SetCursorColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.GetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.SetApplyShadow(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetGroupHeaderStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.GroupHeaderStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetRowAnimationsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SetSeparatorStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SeparatorStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.DisableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.EnableTranslucentNavigationBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.GetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetHideNavigationBarSeparator(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetIsNavigationBarTranslucent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetPrefersLargeTitles(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.SetStatusBarTextColorMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarTextColorMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetModalPresentationStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetSafeAreaInsets(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.GetUseSafeArea(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Thickness +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetLargeTitleDisplay(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.LargeTitleDisplayMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetModalPresentationStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIModalPresentationStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPreferredStatusBarUpdateAnimation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UIStatusBarAnimation value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersHomeIndicatorAutoHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetPrefersStatusBarHidden(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.StatusBarHiddenMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetSafeAreaInsets(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Thickness value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SetUseSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UsingSafeArea(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.GetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.SetShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouches(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.GetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SetSearchBarStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UISearchBarStyle style) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.GetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.SetUpdateOnTap(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.GetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.SwipeTransitionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.SwipeTransitionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SetSwipeTransitionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.SwipeTransitionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.GetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.SetTranslucencyMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TranslucencyMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.GetUpdateMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.SetUpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.UpdateMode +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.GetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetBlurEffect(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetCanBecomeFirstResponder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetIsShadowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowOpacity(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.SetShadowRadius(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.UseBlurEffect(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.BlurEffectStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPopStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.GetNavigationTransitionPushStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPopStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionPushStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.SetNavigationTransitionStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle pushStyle, Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationTransitionStyle popStyle) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.VisualElement[] +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, params Microsoft.Maui.Controls.VisualElement[] value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.GetTabsStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.TabsStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.HideTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.TabsStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.SetTabsStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.TabsStyle value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabs(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.ShowTabsOnNavigation(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(Microsoft.Maui.Controls.BindableObject application) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.GetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.Element value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetActiveBezelInteractionElement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.Element value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(Microsoft.Maui.Controls.BindableObject application, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetOverlayContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.SetUseBezelInteraction(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.GetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetBlendColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(Microsoft.Maui.Controls.BindableObject element, string file) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.SetFile(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string file) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.GetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.ScrollToPosition +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.ScrollToPosition position) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.SetFocusedItemScrollPosition(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.ScrollToPosition position) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.GetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(Microsoft.Maui.Controls.BindableObject element, string weight) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.SetFontWeight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string weight) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.GetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.SetHasBreadCrumbsBar(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(Microsoft.Maui.Controls.BindableObject page) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.GetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(Microsoft.Maui.Controls.BindableObject page, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.SetBreadCrumb(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.GetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(Microsoft.Maui.Controls.BindableObject element, bool isPulsing) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.SetPulsingStatus(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool isPulsing) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.GetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> int +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetHorizontalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(Microsoft.Maui.Controls.BindableObject element, int scrollStep) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.SetVerticalScrollStep(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, int scrollStep) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.GetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Color color) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.SetColor(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Color color) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.GetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(Microsoft.Maui.Controls.BindableObject element) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool? +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusBack(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusDown(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusForward(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusLeft(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusRight(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.MoveFocusUp(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetFocusAllowed(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusBackView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusDownView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusForwardView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusLeftView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusRightView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetNextFocusUpView(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.View value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.SetToolTip(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.GetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.SetImageDirectory(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidth(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.GetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapsedPaneWidth(Microsoft.Maui.Controls.BindableObject element, double collapsedPaneWidth) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle collapseStyle) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.SetCollapseStyle(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.CollapseStyle value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.UsePartialCollapse(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.GetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.SetDetectReadingOrderFromContent(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.GetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SetSelectionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListViewSelectionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.GetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarDynamicOverflowEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement toolbarPlacement) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.SetToolbarPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.GetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.SetRefreshPullDirection(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirection value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.DisableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.EnableSpellCheck(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.GetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.SetIsSpellCheckEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.DisableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.EnableHeaderIcons(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.GetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Graphics.Size +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.IsHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Graphics.Size value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.SetHeaderIconsSize(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Graphics.Size value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(Microsoft.Maui.Controls.BindableObject element) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> string +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.AccessKeyPlacement +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> double +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.GetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(Microsoft.Maui.Controls.BindableObject element, string value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKey(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, string value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyHorizontalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.AccessKeyPlacement value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyPlacement(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.AccessKeyPlacement value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(Microsoft.Maui.Controls.BindableObject element, double value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetAccessKeyVerticalOffset(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, double value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.SetIsLegacyColorModeEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(Microsoft.Maui.Controls.BindableObject element) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.GetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config) -> bool +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(Microsoft.Maui.Controls.BindableObject element, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetExecutionMode(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebViewExecutionMode value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(Microsoft.Maui.Controls.BindableObject element, bool value) -> void +~static Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.SetIsJavaScriptAlertEnabled(this Microsoft.Maui.Controls.IPlatformElementConfiguration config, bool value) -> Microsoft.Maui.Controls.IPlatformElementConfiguration +~static Microsoft.Maui.Controls.PointCollection.implicit operator Microsoft.Maui.Controls.PointCollection(Microsoft.Maui.Graphics.Point[] d) -> Microsoft.Maui.Controls.PointCollection +~static Microsoft.Maui.Controls.RadioButton.ControlsRadioButtonMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.RadioButton.DefaultTemplate.get -> Microsoft.Maui.Controls.ControlTemplate +~static Microsoft.Maui.Controls.RadioButtonGroup.GetGroupName(Microsoft.Maui.Controls.BindableObject b) -> string +~static Microsoft.Maui.Controls.RadioButtonGroup.GetSelectedValue(Microsoft.Maui.Controls.BindableObject bindableObject) -> object +~static Microsoft.Maui.Controls.RadioButtonGroup.SetGroupName(Microsoft.Maui.Controls.BindableObject bindable, string groupName) -> void +~static Microsoft.Maui.Controls.RadioButtonGroup.SetSelectedValue(Microsoft.Maui.Controls.BindableObject bindable, object selectedValue) -> void +~static Microsoft.Maui.Controls.RefreshView.ControlsRefreshViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Region.FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY) -> Microsoft.Maui.Controls.Region +~static Microsoft.Maui.Controls.RelativeBindingSource.Self.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.RelativeBindingSource.TemplatedParent.get -> Microsoft.Maui.Controls.RelativeBindingSource +~static Microsoft.Maui.Controls.Routing.FormatRoute(string route) -> string +~static Microsoft.Maui.Controls.Routing.FormatRoute(System.Collections.Generic.List segments) -> string +~static Microsoft.Maui.Controls.Routing.GetOrCreateContent(string route, System.IServiceProvider services = null) -> Microsoft.Maui.Controls.Element +~static Microsoft.Maui.Controls.Routing.GetRoute(Microsoft.Maui.Controls.BindableObject obj) -> string +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, Microsoft.Maui.Controls.RouteFactory factory) -> void +~static Microsoft.Maui.Controls.Routing.RegisterRoute(string route, System.Type type) -> void +~static Microsoft.Maui.Controls.Routing.SetRoute(Microsoft.Maui.Controls.Element obj, string value) -> void +~static Microsoft.Maui.Controls.Routing.UnRegisterRoute(string route) -> void +~static Microsoft.Maui.Controls.ScrollView.ControlsScrollViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.ControlsSearchBarMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.SearchBar.MapText(Microsoft.Maui.Handlers.SearchBarHandler handler, Microsoft.Maui.Controls.SearchBar searchBar) -> void +~static Microsoft.Maui.Controls.SearchHandler.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static Microsoft.Maui.Controls.SemanticProperties.GetDescription(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.GetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable) -> Microsoft.Maui.SemanticHeadingLevel +~static Microsoft.Maui.Controls.SemanticProperties.GetHint(Microsoft.Maui.Controls.BindableObject bindable) -> string +~static Microsoft.Maui.Controls.SemanticProperties.SetDescription(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHeadingLevel(Microsoft.Maui.Controls.BindableObject bindable, Microsoft.Maui.SemanticHeadingLevel value) -> void +~static Microsoft.Maui.Controls.SemanticProperties.SetHint(Microsoft.Maui.Controls.BindableObject bindable, string value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.Add(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, object value) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddBinding(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, Microsoft.Maui.Controls.Binding binding) -> void +~static Microsoft.Maui.Controls.SettersExtensions.AddDynamicResource(this System.Collections.Generic.IList setters, Microsoft.Maui.Controls.BindableProperty property, string key) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenArc(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point pt1, Microsoft.Maui.Graphics.Point pt2, double radiusX, double radiusY, double angleRotation, bool isLargeArc, bool isCounterclockwise, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenCubicBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl1, Microsoft.Maui.Graphics.Point ptCtrl2, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance) -> Microsoft.Maui.Controls.Shapes.PathGeometry +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenGeometry(Microsoft.Maui.Controls.Shapes.PathGeometry pathGeoDst, Microsoft.Maui.Controls.Shapes.Geometry geoSrc, double tolerance, Microsoft.Maui.Controls.Shapes.Matrix matxPrevious) -> void +~static Microsoft.Maui.Controls.Shapes.GeometryHelper.FlattenQuadraticBezier(System.Collections.Generic.List points, Microsoft.Maui.Graphics.Point ptStart, Microsoft.Maui.Graphics.Point ptCtrl, Microsoft.Maui.Graphics.Point ptEnd, double tolerance) -> void +~static Microsoft.Maui.Controls.Shapes.PathFigureCollectionConverter.ParseStringToPathFigureCollection(Microsoft.Maui.Controls.Shapes.PathFigureCollection pathFigureCollection, string pathString) -> void +~static Microsoft.Maui.Controls.Shapes.Shape.ControlsShapeViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.Shapes.Shape.MapStrokeDashArray(Microsoft.Maui.Handlers.IShapeViewHandler handler, Microsoft.Maui.IShapeView shapeView) -> void +~static Microsoft.Maui.Controls.Shell.Current.get -> Microsoft.Maui.Controls.Shell +~static Microsoft.Maui.Controls.Shell.GetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.BackButtonBehavior +~static Microsoft.Maui.Controls.Shell.GetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.Brush +~static Microsoft.Maui.Controls.Shell.GetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.FlyoutBehavior +~static Microsoft.Maui.Controls.Shell.GetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj) -> double +~static Microsoft.Maui.Controls.Shell.GetForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.DataTemplate +~static Microsoft.Maui.Controls.Shell.GetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetPresentationMode(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.PresentationMode +~static Microsoft.Maui.Controls.Shell.GetSearchHandler(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.SearchHandler +~static Microsoft.Maui.Controls.Shell.GetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj) -> bool +~static Microsoft.Maui.Controls.Shell.GetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.GetTitleView(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Controls.View +~static Microsoft.Maui.Controls.Shell.GetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj) -> Microsoft.Maui.Graphics.Color +~static Microsoft.Maui.Controls.Shell.SetBackButtonBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.BackButtonBehavior behavior) -> void +~static Microsoft.Maui.Controls.Shell.SetBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBackdrop(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.Brush value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutBehavior(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.FlyoutBehavior value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutHeight(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutItemIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool isVisible) -> void +~static Microsoft.Maui.Controls.Shell.SetFlyoutWidth(Microsoft.Maui.Controls.BindableObject obj, double value) -> void +~static Microsoft.Maui.Controls.Shell.SetForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate itemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetMenuItemTemplate(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.DataTemplate menuItemTemplate) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarHasShadow(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetNavBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetPresentationMode(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.PresentationMode presentationMode) -> void +~static Microsoft.Maui.Controls.Shell.SetSearchHandler(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.SearchHandler handler) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarBackgroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarDisabledColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarForegroundColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarIsVisible(Microsoft.Maui.Controls.BindableObject obj, bool value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTabBarUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.Shell.SetTitleView(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Controls.View value) -> void +~static Microsoft.Maui.Controls.Shell.SetUnselectedColor(Microsoft.Maui.Controls.BindableObject obj, Microsoft.Maui.Graphics.Color value) -> void +~static Microsoft.Maui.Controls.ShellAppearance.operator !=(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellAppearance.operator ==(Microsoft.Maui.Controls.ShellAppearance appearance1, Microsoft.Maui.Controls.ShellAppearance appearance2) -> bool +~static Microsoft.Maui.Controls.ShellContent.implicit operator Microsoft.Maui.Controls.ShellContent(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellContent +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.MenuItem menuItem) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.ShellSection shellSection) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellItem.implicit operator Microsoft.Maui.Controls.ShellItem(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellItem +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(string value) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellNavigationState.implicit operator Microsoft.Maui.Controls.ShellNavigationState(System.Uri uri) -> Microsoft.Maui.Controls.ShellNavigationState +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.ShellContent shellContent) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellSection.implicit operator Microsoft.Maui.Controls.ShellSection(Microsoft.Maui.Controls.TemplatedPage page) -> Microsoft.Maui.Controls.ShellSection +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewDataChanged(Microsoft.Maui.Controls.DataTemplate currentViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object newViewData, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.OnViewTemplateChanged(Microsoft.Maui.Controls.DataTemplate newViewTemplate, ref Microsoft.Maui.Controls.View localViewRef, object currentViewData, System.Action OnChildRemoved, System.Action OnChildAdded, Microsoft.Maui.Controls.Shell shell) -> void +~static Microsoft.Maui.Controls.ShellTemplatedViewManager.SetView(ref Microsoft.Maui.Controls.View localView, Microsoft.Maui.Controls.View newView, System.Action OnChildRemoved, System.Action OnChildAdded) -> void +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromReader(System.IO.TextReader reader) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromResource(string resourcePath, System.Reflection.Assembly assembly, System.Xml.IXmlLineInfo lineInfo = null) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.StyleSheets.StyleSheet.FromString(string stylesheet) -> Microsoft.Maui.Controls.StyleSheets.StyleSheet +~static Microsoft.Maui.Controls.TabbedPage.ControlsTabbedPageMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.TemplateExtensions.SetBinding(this Microsoft.Maui.Controls.DataTemplate self, Microsoft.Maui.Controls.BindableProperty targetProperty, string path) -> void +~static Microsoft.Maui.Controls.TimePicker.ControlsTimePickerMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.ControlsVisualElementMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundColor(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualElement.MapBackgroundImageSource(Microsoft.Maui.IViewHandler handler, Microsoft.Maui.IView view) -> void +~static Microsoft.Maui.Controls.VisualMarker.Default.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualMarker.MatchParent.get -> Microsoft.Maui.Controls.IVisual +~static Microsoft.Maui.Controls.VisualStateManager.GetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement) -> System.Collections.Generic.IList +~static Microsoft.Maui.Controls.VisualStateManager.GoToState(Microsoft.Maui.Controls.VisualElement visualElement, string name) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.HasVisualStateGroups(this Microsoft.Maui.Controls.VisualElement element) -> bool +~static Microsoft.Maui.Controls.VisualStateManager.SetVisualStateGroups(Microsoft.Maui.Controls.VisualElement visualElement, Microsoft.Maui.Controls.VisualStateGroupList value) -> void +~static Microsoft.Maui.Controls.WebView.ControlsWebViewMapper -> Microsoft.Maui.IPropertyMapper +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(string url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.WebViewSource.implicit operator Microsoft.Maui.Controls.WebViewSource(System.Uri url) -> Microsoft.Maui.Controls.WebViewSource +~static Microsoft.Maui.Controls.Window.ControlsWindowMapper -> Microsoft.Maui.IPropertyMapper +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ActivityIndicator.IsRunningProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AdaptiveTrigger.MinWindowWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.AppLinkUriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.IsLinkActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.ThumbnailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AppLinkEntry.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.ExcludedWithChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.HelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.IsInAccessibleTreeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.LabeledByProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.AutomationProperties.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IconOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BackButtonBehavior.TextOverrideProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BaseShellItem.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableLayout.ItemTemplateSelectorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableObject.BindingContextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BindableProperty.UnsetValue -> object +~static readonly Microsoft.Maui.Controls.Binding.DoNothing -> object +~static readonly Microsoft.Maui.Controls.BoxView.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.BoxView.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ContentLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Button.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsBounceEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsDraggingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsScrollAnimatedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.IsSwipeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.LoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PeekAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CarouselView.VisibleViewsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Cell.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CheckBox.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.ButtonsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ClickGestureRecognizer.NumberOfClicksRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ColumnDefinition.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.PropertyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompareStateTrigger.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.AbsoluteLayout.LayoutFlagsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.BoundsConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.HeightConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.WidthConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.XConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.RelativeLayout.YConstraintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Compatibility.StackLayout.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.HeadlessOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.CompressedLayout.IsHeadlessProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentPage.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ContentView.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.DateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MaximumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.MinimumDateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DatePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.BodyStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.CaptionStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemDetailTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.ListItemTextStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.SubtitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyle -> Microsoft.Maui.Controls.Style +~static readonly Microsoft.Maui.Controls.Device.Styles.TitleStyleKey -> string +~static readonly Microsoft.Maui.Controls.DeviceStateTrigger.DeviceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.CanDragProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DragStartingCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DragGestureRecognizer.DropCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.AllowDropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragLeaveCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DragOverCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.DropGestureRecognizer.DropCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.AutoSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Editor.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Element.ClassIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ClearButtonVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsPasswordProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.ReturnTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Entry.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.LabelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.EntryCell.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FileImageSource.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.AlignSelfProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.BasisProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.GrowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.JustifyContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.OrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.ShrinkProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlexLayout.WrapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.FlyoutLayoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.GlyphProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.FontImageSource.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Frame.HasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientBrush.GradientStopsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GradientStop.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GraphicsView.DrawableProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.ColumnSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowDefinitionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Grid.RowSpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.HorizontalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.SpanProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GridItemsLayout.VerticalItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.GroupableItemsView.IsGroupedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.BaseUrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.HtmlWebViewSource.HtmlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsAnimationPlayingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Image.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.AspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsLoadingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsOpaqueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.IsPressedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageButton.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ImageCell.ImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.CountProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.HideSingleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorsShapeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.IndicatorTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.MaximumVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.PositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.IndicatorView.SelectedIndicatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsReadOnlyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.MaxLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.InputView.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.NameScope.NameScopeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs.StyleSheets -> Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.NameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Internals.TemplatedItemsList.ShortNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsLayout.SnapPointsTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.EmptyViewTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsUpdatingScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.RemainingItemsThresholdReachedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ItemsView.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.FormattedTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineBreakModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.MaxLinesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.TextTypeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Label.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.CascadeInputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.IsClippedToBoundsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Layout.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearGradientBrush.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.CarouselVertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Horizontal -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.ItemSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.LinearItemsLayout.Vertical -> Microsoft.Maui.Controls.IItemsLayout +~static readonly Microsoft.Maui.Controls.ListView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.GroupHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RefreshControlColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ListView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBar.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuBarItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.AcceleratorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsDestructiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MenuItem.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.MultiPage.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigableElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.CurrentPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasBackButtonProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.IconColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.RootPageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleIconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.NavigationPage.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OpenGLView.HasRenderLoopProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.OrientationStateTrigger.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.BackgroundImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IconImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.IsBusyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.PaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Page.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PanGestureRecognizer.TouchPointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedIndexProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Picker.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendAppearingEventOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.SendDisappearingEventOnPauseProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.Application.ShouldPreserveKeyboardOnResumeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat.NavigationPage.BarHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Application.WindowSoftInputModeAdjustProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultPaddingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Button.UseDefaultShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.Entry.ImeOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ImageButton.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ListView.IsFastScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSmoothScrollEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.IsSwipePagingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.OffscreenPageLimitProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.TabbedPage.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.ViewCell.IsContextActionsLegacyModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.ElevationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.DisplayZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.EnableZoomControlsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.WebView.MixedContentModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.BoxView.HasCornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.NavigationPage.BackButtonIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific.TabbedPage.TabPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.EnableAccessibilityScalingForNamedFontSizesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.HandleControlUpdatesOnMainThreadProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Application.PanGestureRecognizerShouldRecognizeSimultaneouslyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Cell.DefaultBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.GroupHeaderStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.RowAnimationsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ListView.SeparatorStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.HideNavigationBarSeparatorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.NavigationPage.StatusBarTextColorModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.LargeTitleDisplayProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.ModalPresentationStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PreferredStatusBarUpdateAnimationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.Slider.UpdateOnTapProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.SwipeView.SwipeTransitionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TabbedPage.TranslucencyModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.CanBecomeFirstResponderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.IsShadowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowOpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.VisualElement.ShadowRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPopStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.NavigationPage.NavigationTransitionPushStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.TabbedPage.TabsStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.ActiveBezelInteractionElementPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.OverlayContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Application.UseBezelInteractionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Entry.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.BlendColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Image.FileProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ItemsView.FocusedItemScrollPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Label.FontWeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.NavigationPage.HasBreadCrumbsBarProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Page.BreadCrumbProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ProgressBar.ProgressBarPulsingStatusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.HorizontalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.ScrollView.VerticalScrollStepProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.Switch.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.IsFocusAllowedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusBackViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusDownViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusForwardViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusLeftViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusRightViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.NextFocusUpViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement.ToolTipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Application.ImageDirectoryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapsedPaneWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.FlyoutPage.CollapseStyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.InputView.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Label.DetectReadingOrderFromContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ListView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarDynamicOverflowEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.Page.ToolbarPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.RefreshView.RefreshPullDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.SearchBar.IsSpellCheckEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.TabbedPage.HeaderIconsSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyHorizontalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyPlacementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.AccessKeyVerticalOffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.VisualElement.IsLegacyColorModeEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.ExecutionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.WebView.IsJavaScriptAlertEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ProgressBar.ProgressProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadialGradientBrush.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.BorderWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.IsCheckedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButton.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.GroupNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RadioButtonGroup.SelectedValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.IsRefreshingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RefreshView.RefreshColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanMixGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ReorderableItemsView.CanReorderItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Routing.RouteProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.RowDefinition.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ContentSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.HorizontalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.ScrollYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ScrollView.VerticalScrollBarVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.CursorPositionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.IsTextPredictionEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SearchCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.SelectionLengthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchBar.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.AutomationIdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CancelButtonColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ClearPlaceholderNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.DisplayMemberNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.HorizontalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.SearchHandler.IsSearchEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemsSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.KeyboardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.PlaceholderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconHelpTextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconNameProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.QueryProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.SearchBoxVisibilityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.ShowsResultsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SearchHandler.VerticalTextAlignmentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectedItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionChangedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SelectableItemsView.SelectionModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.DescriptionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HeadingLevelProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SemanticProperties.HintProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.BrushProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OffsetProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shadow.RadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.IsLargeArcProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.RotationAngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ArcSegment.SweepDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.BezierSegment.Point3Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.SkewYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.CompositeTransform.TranslateYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.CenterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.EllipseGeometry.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.GeometryGroup.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.X2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Line.Y2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.EndPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineGeometry.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.LineSegment.PointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.MatrixTransform.MatrixProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.DataProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Path.RenderTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsClosedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.IsFilledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.SegmentsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathFigure.StartPointProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FiguresProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PathGeometry.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polygon.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.FillRuleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Polyline.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyLineSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.PolyQuadraticBezierSegment.PointsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point1Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.QuadraticBezierSegment.Point2Property -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Rectangle.RadiusYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.AngleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RotateTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangle.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.CornerRadiusProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.RoundRectangleGeometry.RectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.ScaleTransform.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.AngleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.SkewTransform.CenterYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.Transform.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TransformGroup.ChildrenProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shapes.TranslateTransform.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackButtonBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.CurrentStateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.DisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackdropProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageAspectProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundImageProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutFooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderBehaviorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIconProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutIsPresentedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutItemIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutVerticalScrollModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.FlyoutWidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.ItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.MenuItemTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarHasShadowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.NavBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.PresentationModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.SearchHandlerProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarDisabledColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarForegroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarIsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarTitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TabBarUnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.TitleViewProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Shell.UnselectedColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.ContentTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellContent.MenuItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellGroupItem.FlyoutDisplayOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellItem.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.CurrentItemProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.ShellSection.ItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragCompletedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.DragStartedCommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MaximumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.MinimumTrackColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ThumbImageSourceProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Slider.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SolidColorBrush.ColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.LineHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextDecorationsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Span.TextTransformProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackBase.SpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StackLayout.OrientationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StateTrigger.IsActiveProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.IncrementProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MaximumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.MinimumProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Stepper.ValueProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StreamImageSource.StreamProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.FooterTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.HeaderTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemSizingStrategyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.StructuredItemsView.ItemsLayoutProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.DirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeGestureRecognizer.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItem.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.ModeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItems.SwipeBehaviorOnInvokedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeItemView.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.BottomItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.LeftItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.RightItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.ThresholdProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwipeView.TopItemsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.IsToggledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.Switch.ThumbColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.OnProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.SwitchCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarBackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.BarTextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.SelectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TabbedPage.UnselectedTabColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableSectionBase.TitleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.HasUnevenRowsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TableView.RowHeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TapGestureRecognizer.NumberOfTapsRequiredProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedPage.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TemplatedView.ControlTemplateProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandParameterProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.CommandProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.DetailProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TextCell.TextProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.CharacterSpacingProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAttributesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontAutoScalingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontFamilyProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FontSizeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.FormatProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TextColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.TimePicker.TimeProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CacheValidityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.CachingEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UriImageSource.UriProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.UrlWebViewSource.UrlProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.HorizontalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.MarginProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.View.VerticalOptionsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.AnchorYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundColorProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BackgroundProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.BehaviorsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ClipProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.FlowDirectionProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.HeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.InputTransparentProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsEnabledProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.IsFocusedPropertyKey -> Microsoft.Maui.Controls.BindablePropertyKey +~static readonly Microsoft.Maui.Controls.VisualElement.IsVisibleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MaximumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumHeightRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.MinimumWidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.NavigationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.OpacityProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.RotationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.ScaleYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.StyleProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationXProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TranslationYProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.TriggersProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.VisualProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WidthRequestProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.WindowProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.XProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualElement.YProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.VisualStateManager.VisualStateGroupsProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoBackProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CanGoForwardProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.CookiesProperty -> Microsoft.Maui.Controls.BindableProperty +~static readonly Microsoft.Maui.Controls.WebView.SourceProperty -> Microsoft.Maui.Controls.BindableProperty +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(Microsoft.Maui.Controls.BindableObject bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnAttachedTo(T bindable) -> void +~virtual Microsoft.Maui.Controls.Behavior.OnDetachingFrom(T bindable) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanged(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.BindableObject.OnPropertyChanging(string propertyName = null) -> void +~virtual Microsoft.Maui.Controls.Button.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.CarouselView.OnCurrentItemChanged(System.EventArgs args) -> void +~virtual Microsoft.Maui.Controls.CarouselView.OnPositionChanged(Microsoft.Maui.Controls.PositionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildAdded(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.ShouldInvalidateOnChildRemoved(Microsoft.Maui.Controls.View child) -> bool +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnAdded(T view) -> void +~virtual Microsoft.Maui.Controls.Compatibility.Layout.OnRemoved(T view) -> void +~virtual Microsoft.Maui.Controls.DatePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Element.OnChildAdded(Microsoft.Maui.Controls.Element child) -> void +~virtual Microsoft.Maui.Controls.Element.OnChildRemoved(Microsoft.Maui.Controls.Element child, int oldLogicalIndex) -> void +~virtual Microsoft.Maui.Controls.Element.OnHandlerChanging(Microsoft.Maui.Controls.HandlerChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Element.OnParentChanging(Microsoft.Maui.Controls.ParentChangingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ImageSource.Cancel() -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetModalStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopModal(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnPushModal(Microsoft.Maui.Controls.Page modal, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.Internals.NavigationProxy.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetCell(int section, int row) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetHeaderCell(int section) -> Microsoft.Maui.Controls.Cell +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionIndexTitles() -> string[] +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTextColor(int section) -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Internals.TableModel.GetSectionTitle(int section) -> string +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowLongPressed(object item) -> void +~virtual Microsoft.Maui.Controls.Internals.TableModel.OnRowSelected(object item) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrolled(Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) -> void +~virtual Microsoft.Maui.Controls.ItemsView.OnScrollToRequested(Microsoft.Maui.Controls.ScrollToRequestEventArgs e) -> void +~virtual Microsoft.Maui.Controls.Label.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Layout.OnAdd(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnInsert(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnRemove(int index, Microsoft.Maui.IView view) -> void +~virtual Microsoft.Maui.Controls.Layout.OnUpdate(int index, Microsoft.Maui.IView view, Microsoft.Maui.IView oldView) -> void +~virtual Microsoft.Maui.Controls.MultiPage.OnPagesChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) -> void +~virtual Microsoft.Maui.Controls.MultiPage.SetupContent(T content, int index) -> void +~virtual Microsoft.Maui.Controls.MultiPage.UnhookContent(T content) -> void +~virtual Microsoft.Maui.Controls.Page.GetParentWindow() -> Microsoft.Maui.Controls.Window +~virtual Microsoft.Maui.Controls.Page.OnChildMeasureInvalidated(object sender, System.EventArgs e) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedFrom(Microsoft.Maui.Controls.NavigatedFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatedTo(Microsoft.Maui.Controls.NavigatedToEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Page.OnNavigatingFrom(Microsoft.Maui.Controls.NavigatingFromEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Picker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.PlatformEffect.OnElementPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.PropertyChangingEventArgs.PropertyName.get -> string +~virtual Microsoft.Maui.Controls.RadioButton.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SearchHandler.OnItemSelected(object item) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.OnQueryChanged(string oldValue, string newValue) -> void +~virtual Microsoft.Maui.Controls.SearchHandler.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.SelectableItemsView.OnSelectionChanged(Microsoft.Maui.Controls.SelectionChangedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigated(Microsoft.Maui.Controls.ShellNavigatedEventArgs args) -> void +~virtual Microsoft.Maui.Controls.Shell.OnNavigating(Microsoft.Maui.Controls.ShellNavigatingEventArgs args) -> void +~virtual Microsoft.Maui.Controls.ShellSection.GetNavigationStack() -> System.Collections.Generic.IReadOnlyList +~virtual Microsoft.Maui.Controls.ShellSection.OnInsertPageBefore(Microsoft.Maui.Controls.Page page, Microsoft.Maui.Controls.Page before) -> void +~virtual Microsoft.Maui.Controls.ShellSection.OnPopAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPopToRootAsync(bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnPushAsync(Microsoft.Maui.Controls.Page page, bool animated) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.Controls.ShellSection.OnRemovePage(Microsoft.Maui.Controls.Page page) -> void +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.SolidColorBrush.Color.set -> void +~virtual Microsoft.Maui.Controls.Span.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.get -> System.Func> +~virtual Microsoft.Maui.Controls.StreamImageSource.Stream.set -> void +~virtual Microsoft.Maui.Controls.TemplatedView.ResolveControlTemplate() -> Microsoft.Maui.Controls.ControlTemplate +~virtual Microsoft.Maui.Controls.TimePicker.UpdateFormsText(string source, Microsoft.Maui.TextTransform textTransform) -> string +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.BarTextColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.get -> Microsoft.Maui.Graphics.Color +~virtual Microsoft.Maui.Controls.Toolbar.IconColor.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.Title.get -> string +~virtual Microsoft.Maui.Controls.Toolbar.Title.set -> void +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.get -> Microsoft.Maui.Controls.VisualElement +~virtual Microsoft.Maui.Controls.Toolbar.TitleView.set -> void +~virtual Microsoft.Maui.Controls.View.GetChildElements(Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IList diff --git a/src/Controls/src/Core/PublicAPI/netstandard/PublicAPI.Unshipped.txt b/src/Controls/src/Core/PublicAPI/netstandard/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..97c24524f23f --- /dev/null +++ b/src/Controls/src/Core/PublicAPI/netstandard/PublicAPI.Unshipped.txt @@ -0,0 +1,12 @@ +#nullable enable +override Microsoft.Maui.Controls.ContentPresenter.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.ContentPresenter.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.FlyoutPage.OnDisappearing() -> void +override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void +override Microsoft.Maui.Controls.TemplatedView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Controls.TemplatedView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.ContentView.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.ArrangeOverride(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.RadioButton.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +*REMOVED*override Microsoft.Maui.Controls.FlexLayout.MeasureOverride(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size diff --git a/src/Controls/src/Core/RadioButtonGroup.cs b/src/Controls/src/Core/RadioButtonGroup.cs index 5724c12320df..c2e9bf6c995c 100644 --- a/src/Controls/src/Core/RadioButtonGroup.cs +++ b/src/Controls/src/Core/RadioButtonGroup.cs @@ -10,7 +10,7 @@ public static class RadioButtonGroup static readonly BindableProperty RadioButtonGroupControllerProperty = BindableProperty.CreateAttached("RadioButtonGroupController", typeof(RadioButtonGroupController), typeof(Maui.ILayout), default(RadioButtonGroupController), - defaultValueCreator: (b) => new RadioButtonGroupController((Maui.ILayout)b), + defaultValueCreator: (b) => new RadioButtonGroupController(b as Maui.ILayout), propertyChanged: (b, o, n) => OnControllerChanged(b, (RadioButtonGroupController)o, (RadioButtonGroupController)n)); static RadioButtonGroupController GetRadioButtonGroupController(BindableObject b) diff --git a/src/Controls/src/Core/ResourceDictionary.cs b/src/Controls/src/Core/ResourceDictionary.cs index 3de5057c4843..55db5e5b7539 100644 --- a/src/Controls/src/Core/ResourceDictionary.cs +++ b/src/Controls/src/Core/ResourceDictionary.cs @@ -17,6 +17,7 @@ namespace Microsoft.Maui.Controls /// public class ResourceDictionary : IResourceDictionary, IDictionary { + const string GetResourcePathUriScheme = "maui://"; static ConditionalWeakTable s_instances = new ConditionalWeakTable(); readonly Dictionary _innerDictionary = new Dictionary(); ResourceDictionary _mergedInstance; @@ -383,10 +384,11 @@ object IExtendedTypeConverter.ConvertFromInvariantString(string value, IServiceP internal static string GetResourcePath(Uri uri, string rootTargetPath) { - //need a fake scheme so it's not seen as file:// uri, and the forward slashes are valid on all plats + // GetResourcePathUriScheme is a fake scheme so it's not seen as file:// uri, + // and the forward slashes are valid on all plats var resourceUri = uri.OriginalString.StartsWith("/", StringComparison.Ordinal) - ? new Uri($"pack://{uri.OriginalString}", UriKind.Absolute) - : new Uri($"pack:///{rootTargetPath}/../{uri.OriginalString}", UriKind.Absolute); + ? new Uri($"{GetResourcePathUriScheme}{uri.OriginalString}", UriKind.Absolute) + : new Uri($"{GetResourcePathUriScheme}/{rootTargetPath}/../{uri.OriginalString}", UriKind.Absolute); //drop the leading '/' return resourceUri.AbsolutePath.Substring(1); diff --git a/src/Controls/src/Core/ScrollView.cs b/src/Controls/src/Core/ScrollView.cs index 58acdd18c987..ccd6c6ac7ac6 100644 --- a/src/Controls/src/Core/ScrollView.cs +++ b/src/Controls/src/Core/ScrollView.cs @@ -136,16 +136,39 @@ public View Content OnPropertyChanging(); if (_content != null) + { + _content.SizeChanged -= ContentSizeChanged; InternalChildren.Remove(_content); + } _content = value; if (_content != null) + { InternalChildren.Add(_content); + _content.SizeChanged += ContentSizeChanged; + } + OnPropertyChanged(); - Handler?.UpdateValue(nameof(Content)); } } + void ContentSizeChanged(object sender, EventArgs e) + { + var view = (sender as IView); + if (view == null) + { + ContentSize = Size.Zero; + return; + } + + var margin = view.Margin; + var frameSize = view.Frame.Size; + + // The ContentSize includes the margins for the content + ContentSize = new Size(frameSize.Width + margin.HorizontalThickness, + frameSize.Height + margin.VerticalThickness); + } + /// public Size ContentSize { @@ -237,41 +260,6 @@ public Task ScrollToAsync(Element element, ScrollToPosition position, bool anima protected override void LayoutChildren(double x, double y, double width, double height) { - var over = ((IScrollViewController)this).LayoutAreaOverride; - if (!over.IsEmpty) - { - x = over.X + Padding.Left; - y = over.Y + Padding.Top; - width = over.Width - Padding.HorizontalThickness; - height = over.Height - Padding.VerticalThickness; - } - - if (_content != null) - { - SizeRequest size; - switch (Orientation) - { - case ScrollOrientation.Horizontal: - size = _content.Measure(double.PositiveInfinity, height, MeasureFlags.IncludeMargins); - LayoutChildIntoBoundingRegion(_content, new Rect(x, y, GetMaxWidth(width, size), height)); - ContentSize = new Size(GetMaxWidth(width), height); - break; - case ScrollOrientation.Vertical: - size = _content.Measure(width, double.PositiveInfinity, MeasureFlags.IncludeMargins); - LayoutChildIntoBoundingRegion(_content, new Rect(x, y, width, GetMaxHeight(height, size))); - ContentSize = new Size(width, GetMaxHeight(height)); - break; - case ScrollOrientation.Both: - size = _content.Measure(double.PositiveInfinity, double.PositiveInfinity, MeasureFlags.IncludeMargins); - LayoutChildIntoBoundingRegion(_content, new Rect(x, y, GetMaxWidth(width, size), GetMaxHeight(height, size))); - ContentSize = new Size(GetMaxWidth(width), GetMaxHeight(height)); - break; - case ScrollOrientation.Neither: - LayoutChildIntoBoundingRegion(_content, new Rect(x, y, width, height)); - ContentSize = new Size(width, height); - break; - } - } } protected override SizeRequest OnMeasure(double widthConstraint, double heightConstraint) diff --git a/src/Controls/src/Core/Shapes/EllipseGeometry.cs b/src/Controls/src/Core/Shapes/EllipseGeometry.cs index 87e5806165e6..e060f96fac88 100644 --- a/src/Controls/src/Core/Shapes/EllipseGeometry.cs +++ b/src/Controls/src/Core/Shapes/EllipseGeometry.cs @@ -56,8 +56,8 @@ public double RadiusY /// public override void AppendPath(PathF path) { - var centerX = (float)RadiusX; - var centerY = (float)RadiusY; + var centerX = (float)Center.X; + var centerY = (float)Center.Y; var radiusX = (float)RadiusX; var radiusY = (float)RadiusY; diff --git a/src/Controls/src/Core/Shapes/PathGeometry.cs b/src/Controls/src/Core/Shapes/PathGeometry.cs index a8c2a3b347c7..684f58eef055 100644 --- a/src/Controls/src/Core/Shapes/PathGeometry.cs +++ b/src/Controls/src/Core/Shapes/PathGeometry.cs @@ -1,5 +1,5 @@ -using Microsoft.Maui.Devices; using System.Collections.Generic; +using Microsoft.Maui.Devices; using Microsoft.Maui.Graphics; namespace Microsoft.Maui.Controls.Shapes @@ -101,7 +101,7 @@ void AddArc(PathF path, ArcSegment arcSegment) for (int i = 0; i < points.Count; i++) { path.LineTo( - (float)points[i].X, + (float)points[i].X, (float)points[i].Y); } } diff --git a/src/Controls/src/Core/Shapes/RoundRectangleGeometry.cs b/src/Controls/src/Core/Shapes/RoundRectangleGeometry.cs index 636f9b8e08bf..ff2cd7f1e640 100644 --- a/src/Controls/src/Core/Shapes/RoundRectangleGeometry.cs +++ b/src/Controls/src/Core/Shapes/RoundRectangleGeometry.cs @@ -1,5 +1,5 @@ -using Microsoft.Maui.Graphics; using Microsoft.Maui.Devices; +using Microsoft.Maui.Graphics; using Rect = Microsoft.Maui.Graphics.Rect; namespace Microsoft.Maui.Controls.Shapes diff --git a/src/Controls/src/Core/Shell/Shell.cs b/src/Controls/src/Core/Shell/Shell.cs index a6b3e460943e..726e09275ac5 100644 --- a/src/Controls/src/Core/Shell/Shell.cs +++ b/src/Controls/src/Core/Shell/Shell.cs @@ -10,11 +10,11 @@ using System.Threading.Tasks; using System.Windows.Input; using Microsoft.Extensions.Logging; +using Microsoft.Maui.ApplicationModel; using Microsoft.Maui.Controls.Internals; using Microsoft.Maui.Controls.Xaml.Diagnostics; using Microsoft.Maui.Devices; using Microsoft.Maui.Graphics; -using Microsoft.Maui.ApplicationModel; namespace Microsoft.Maui.Controls { @@ -856,10 +856,9 @@ void Initialize() SetCurrentItem() .FireAndForget(); - ((ShellElementCollection)Items).VisibleItemsChangedInternal += (s, e) => + ((ShellElementCollection)Items).VisibleItemsChangedInternal += async (s, e) => { - SetCurrentItem() - .FireAndForget(); + await SetCurrentItem(); SendStructureChanged(); SendFlyoutItemsChanged(); diff --git a/src/Controls/src/Core/Shell/ShellContent.cs b/src/Controls/src/Core/Shell/ShellContent.cs index 0a00b7c4bb45..12ea12e05530 100644 --- a/src/Controls/src/Core/Shell/ShellContent.cs +++ b/src/Controls/src/Core/Shell/ShellContent.cs @@ -156,12 +156,6 @@ protected override void OnChildAdded(Element child) base.OnChildAdded(child); if (child is Page page) { - if (IsVisibleContent && page.IsVisible) - { - SendAppearing(); - SendPageAppearing(page); - } - page.PropertyChanged += OnPagePropertyChanged; _isPageVisibleChanged?.Invoke(this, EventArgs.Empty); } @@ -209,6 +203,11 @@ Page ContentCache public static implicit operator ShellContent(TemplatedPage page) { + if (page.Parent != null) + { + return (ShellContent)page.Parent; + } + var shellContent = new ShellContent(); var pageRoute = Routing.GetRoute(page); diff --git a/src/Controls/src/Core/Shell/ShellNavigationManager.cs b/src/Controls/src/Core/Shell/ShellNavigationManager.cs index ad6c42725ad0..d8e8b6ba57ed 100644 --- a/src/Controls/src/Core/Shell/ShellNavigationManager.cs +++ b/src/Controls/src/Core/Shell/ShellNavigationManager.cs @@ -22,10 +22,10 @@ public ShellNavigationManager(Shell shell) } public Task GoToAsync( - ShellNavigationState state, - bool? animate, - bool enableRelativeShellRoutes, - ShellNavigatingEventArgs deferredArgs = null, + ShellNavigationState state, + bool? animate, + bool enableRelativeShellRoutes, + ShellNavigatingEventArgs deferredArgs = null, ShellRouteParameters parameters = null, bool? canCancel = null) { @@ -209,8 +209,44 @@ await _shell.Dispatcher.DispatchAsync(() => HandleNavigated(_accumulatedEvent); } + ActionDisposable _waitingForWindow; public void HandleNavigated(ShellNavigatedEventArgs args) { + _waitingForWindow?.Dispose(); + _waitingForWindow = null; + + // we don't want to fire Navigated until shell is attached to an actual window + if (_shell.Window == null || _shell.CurrentPage == null) + { + _shell.PropertyChanged += WaitForWindowToSet; + var shellContent = _shell?.CurrentItem?.CurrentItem?.CurrentItem; + + if (shellContent != null) + shellContent.ChildAdded += WaitForWindowToSet; + + _waitingForWindow = new ActionDisposable(() => + { + _shell.PropertyChanged -= WaitForWindowToSet; + if (shellContent != null) + shellContent.ChildAdded -= WaitForWindowToSet; + }); + + void WaitForWindowToSet(object sender, EventArgs e) + { + if (_shell.Window != null && + _shell.CurrentPage != null) + { + _waitingForWindow?.Dispose(); + _waitingForWindow = null; + + _shell.CurrentItem?.SendAppearing(); + HandleNavigated(args); + } + } + + return; + } + if (AccumulateNavigatedEvents) { if (_accumulatedEvent == null) diff --git a/src/Controls/src/Core/ShellToolbar.cs b/src/Controls/src/Core/ShellToolbar.cs index f1fba2a5513b..84af6e3fffee 100644 --- a/src/Controls/src/Core/ShellToolbar.cs +++ b/src/Controls/src/Core/ShellToolbar.cs @@ -111,17 +111,19 @@ internal void ApplyChanges() } else { + var flyoutBehavior = (_shell as IFlyoutView).FlyoutBehavior; #if WINDOWS - IsVisible = (BackButtonVisible || - !String.IsNullOrEmpty(Title) || + IsVisible = (!String.IsNullOrEmpty(Title) || TitleView != null || _toolbarTracker.ToolbarItems.Count > 0 || - _menuBarTracker.ToolbarItems.Count > 0); + _menuBarTracker.ToolbarItems.Count > 0 || + flyoutBehavior == FlyoutBehavior.Flyout); #else IsVisible = (BackButtonVisible || !String.IsNullOrEmpty(Title) || TitleView != null || - _toolbarTracker.ToolbarItems.Count > 0); + _toolbarTracker.ToolbarItems.Count > 0 || + flyoutBehavior == FlyoutBehavior.Flyout); #endif } diff --git a/src/Controls/src/Core/SwipeItems.cs b/src/Controls/src/Core/SwipeItems.cs index 8247e054b8a2..6280e110184a 100644 --- a/src/Controls/src/Core/SwipeItems.cs +++ b/src/Controls/src/Core/SwipeItems.cs @@ -125,7 +125,7 @@ protected override void OnBindingContextChanged() void OnSwipeItemsChanged(object sender, NotifyCollectionChangedEventArgs notifyCollectionChangedEventArgs) { - if (notifyCollectionChangedEventArgs.NewItems != null) + if (notifyCollectionChangedEventArgs.NewItems != null) { object bc = BindingContext; foreach (BindableObject item in notifyCollectionChangedEventArgs.NewItems) diff --git a/src/Controls/src/Core/TemplatedView.cs b/src/Controls/src/Core/TemplatedView.cs index bfc6ef7a8dcb..18730a771201 100644 --- a/src/Controls/src/Core/TemplatedView.cs +++ b/src/Controls/src/Core/TemplatedView.cs @@ -87,8 +87,11 @@ void IControlTemplated.OnApplyTemplate() protected virtual void OnApplyTemplate() { + OnApplyTemplateImpl(); } + partial void OnApplyTemplateImpl(); + protected override void OnChildRemoved(Element child, int oldLogicalIndex) { base.OnChildRemoved(child, oldLogicalIndex); diff --git a/src/Controls/src/Core/ViewExtensions.cs b/src/Controls/src/Core/ViewExtensions.cs index 76c354e8db28..9944bb198896 100644 --- a/src/Controls/src/Core/ViewExtensions.cs +++ b/src/Controls/src/Core/ViewExtensions.cs @@ -188,7 +188,7 @@ internal static IAnimationManager GetAnimationManager(this IAnimatable animatabl { if (element.FindMauiContext() is IMauiContext viewMauiContext) return viewMauiContext.GetAnimationManager(); - + if (Application.Current?.FindMauiContext() is IMauiContext applicationMauiContext) return applicationMauiContext.GetAnimationManager(); } diff --git a/src/Controls/src/Core/VisualElement.cs b/src/Controls/src/Core/VisualElement.cs index 66e875e3010b..e6ab677137b7 100644 --- a/src/Controls/src/Core/VisualElement.cs +++ b/src/Controls/src/Core/VisualElement.cs @@ -332,6 +332,7 @@ void InvalidateGradientBrushRequested(object sender, EventArgs e) IFlowDirectionController FlowController => this; /// + [System.ComponentModel.TypeConverter(typeof(FlowDirectionConverter))] public FlowDirection FlowDirection { get { return (FlowDirection)GetValue(FlowDirectionProperty); } @@ -809,14 +810,14 @@ SizeRequest GetSizeRequest(double widthConstraint, double heightConstraint) Size request = result.Request; Size minimum = result.Minimum; - if (heightRequest != -1) + if (heightRequest != -1 && !double.IsNaN(heightRequest)) { request.Height = heightRequest; if (!hasMinimum) minimum.Height = heightRequest; } - if (widthRequest != -1) + if (widthRequest != -1 && !double.IsNaN(widthRequest)) { request.Width = widthRequest; if (!hasMinimum) @@ -888,7 +889,7 @@ public void Unfocus() protected override void OnBindingContextChanged() { PropagateBindingContextToStateTriggers(); - + PropagateBindingContextToBrush(); PropagateBindingContextToShadow(); base.OnBindingContextChanged(); @@ -897,7 +898,9 @@ protected override void OnBindingContextChanged() protected override void OnChildAdded(Element child) { base.OnChildAdded(child); + var view = child as View; + if (view != null) ComputeConstraintForView(view); } @@ -905,6 +908,7 @@ protected override void OnChildAdded(Element child) protected override void OnChildRemoved(Element child, int oldLogicalIndex) { base.OnChildRemoved(child, oldLogicalIndex); + if (child is View view) view.ComputedConstraint = LayoutConstraint.None; } @@ -1003,7 +1007,7 @@ internal void InvalidateStateTriggers(bool attach) internal void MockBounds(Rect bounds) { -#if NETSTANDARD2_0 || NET6_0 +#if NETSTANDARD2_0 || NET6_0_OR_GREATER (_mockX, _mockY, _mockWidth, _mockHeight) = bounds; #else _mockX = bounds.X; @@ -1013,7 +1017,7 @@ internal void MockBounds(Rect bounds) #endif } - bool IsMocked() + bool IsMocked() { return _mockX != -1 || _mockY != -1 || _mockWidth != -1 || _mockHeight != -1; } @@ -1196,7 +1200,7 @@ void IPropertyPropagationController.PropagatePropertyChanged(string propertyName PropertyPropagationExtensions.PropagatePropertyChanged(propertyName, this, ((IVisualTreeElement)this).GetVisualChildren()); } - void UpdateBoundsComponents(Rect bounds) + void UpdateBoundsComponents(Rect bounds) { _frame = bounds; diff --git a/src/Controls/src/Core/VisualStateManager.cs b/src/Controls/src/Core/VisualStateManager.cs index ce5552892d31..80c4251af4c4 100644 --- a/src/Controls/src/Core/VisualStateManager.cs +++ b/src/Controls/src/Core/VisualStateManager.cs @@ -2,8 +2,8 @@ using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Runtime.CompilerServices; using System.Linq; +using System.Runtime.CompilerServices; using Microsoft.Maui.Controls.Xaml; namespace Microsoft.Maui.Controls @@ -352,7 +352,7 @@ public override int GetHashCode() return hash; } } - + } /// @@ -611,7 +611,7 @@ void OnStateTriggersChanged(IList stateTriggers) public override bool Equals(object obj) => Equals(obj as VisualState); - bool Equals (VisualState other) + bool Equals(VisualState other) { if (other is null) return false; diff --git a/src/Controls/src/Xaml.Design/Controls.Xaml.Design.csproj b/src/Controls/src/Xaml.Design/Controls.Xaml.Design.csproj index 0e841d5fa296..45788ab8f05b 100644 --- a/src/Controls/src/Xaml.Design/Controls.Xaml.Design.csproj +++ b/src/Controls/src/Xaml.Design/Controls.Xaml.Design.csproj @@ -4,7 +4,7 @@ Microsoft.Maui.Controls.Xaml.DesignTools False False - <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' And '$(MSBuildRuntimeType)' == 'Full'">True + <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' ">True diff --git a/src/Controls/src/Xaml/ApplyPropertiesVisitor.cs b/src/Controls/src/Xaml/ApplyPropertiesVisitor.cs index 68fa95cc53b0..89d0b88f5330 100644 --- a/src/Controls/src/Xaml/ApplyPropertiesVisitor.cs +++ b/src/Controls/src/Xaml/ApplyPropertiesVisitor.cs @@ -129,7 +129,7 @@ public void Visit(ElementNode node, INode parentNode) Exception xpe = null; string xKey = null; - if ( xpe == null + if (xpe == null && node.Properties.ContainsKey(XmlName.xKey)) { if ((node.Properties[XmlName.xKey] is ValueNode valueNode)) @@ -139,12 +139,12 @@ public void Visit(ElementNode node, INode parentNode) } //ResourceDictionary - if ( xpe == null + if (xpe == null && TryAddToResourceDictionary(source as ResourceDictionary, value, xKey, node, out xpe)) return; //ContentProperty - if ( xpe == null + if (xpe == null && (contentProperty = GetContentPropertyName(Context.Types[parentElement])) != null) { var name = new XmlName(node.NamespaceURI, contentProperty); @@ -158,7 +158,7 @@ public void Visit(ElementNode node, INode parentNode) } // Collection element, implicit content, or implicit collection element. - if ( xpe == null + if (xpe == null && typeof(IEnumerable).IsAssignableFrom(Context.Types[parentElement]) && Context.Types[parentElement].GetRuntimeMethods().Any(mi => mi.Name == "Add" && mi.GetParameters().Length == 1)) { diff --git a/src/Controls/src/Xaml/Controls.Xaml.csproj b/src/Controls/src/Xaml/Controls.Xaml.csproj index ada3a0be064d..62fc4abde531 100644 --- a/src/Controls/src/Xaml/Controls.Xaml.csproj +++ b/src/Controls/src/Xaml/Controls.Xaml.csproj @@ -1,12 +1,14 @@  + netstandard2.1;netstandard2.0;$(_MauiDotNetTfm);$(MauiPlatforms) Microsoft.Maui.Controls.Xaml Microsoft.Maui.Controls.Xaml false - <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' And '$(MSBuildRuntimeType)' == 'Full'">True - $(NoWarn);CA2200 + <_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' ">True + $(NoWarn);CA2200;CS1591;RS0041 Microsoft.Maui.Controls.Xaml + true @@ -17,12 +19,10 @@ - - - + @@ -42,4 +42,7 @@ + + + diff --git a/src/Controls/src/Xaml/PublicAPI/net-android/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-android/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-android/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.19041/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-android/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.19041/PublicAPI.Shipped.txt rename to src/Controls/src/Xaml/PublicAPI/net-android/PublicAPI.Unshipped.txt diff --git a/src/Controls/src/Xaml/PublicAPI/net-ios/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-ios/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-ios/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.20348/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-ios/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0-windows10.0.20348/PublicAPI.Shipped.txt rename to src/Controls/src/Xaml/PublicAPI/net-ios/PublicAPI.Unshipped.txt diff --git a/src/Controls/src/Xaml/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/BlazorWebView/src/Maui/PublicAPI/net6.0/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt similarity index 100% rename from src/BlazorWebView/src/Maui/PublicAPI/net6.0/PublicAPI.Shipped.txt rename to src/Controls/src/Xaml/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt diff --git a/src/Controls/src/Xaml/PublicAPI/net-tizen/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-tizen/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-tizen/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/Controls/src/Xaml/PublicAPI/net-tizen/PublicAPI.Unshipped.txt b/src/Controls/src/Xaml/PublicAPI/net-tizen/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-tizen/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Controls/src/Xaml/PublicAPI/net-windows/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net-windows/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-windows/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/Controls/src/Xaml/PublicAPI/net-windows/PublicAPI.Unshipped.txt b/src/Controls/src/Xaml/PublicAPI/net-windows/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net-windows/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Controls/src/Xaml/PublicAPI/net/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/net/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/Controls/src/Xaml/PublicAPI/net/PublicAPI.Unshipped.txt b/src/Controls/src/Xaml/PublicAPI/net/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/net/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Controls/src/Xaml/PublicAPI/netstandard/PublicAPI.Shipped.txt b/src/Controls/src/Xaml/PublicAPI/netstandard/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6faff5e90ef0 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/netstandard/PublicAPI.Shipped.txt @@ -0,0 +1,185 @@ +#nullable enable +Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension +Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.AppThemeBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.ArrayExtension +Microsoft.Maui.Controls.Xaml.ArrayExtension.ArrayExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension +Microsoft.Maui.Controls.Xaml.BindingExtension.BindingExtension() -> void +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.BindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.DataTemplateExtension +Microsoft.Maui.Controls.Xaml.DataTemplateExtension.DataTemplateExtension() -> void +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension +Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.DynamicResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.Extensions +Microsoft.Maui.Controls.Xaml.FontImageExtension +Microsoft.Maui.Controls.Xaml.FontImageExtension.FontImageExtension() -> void +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.get -> double +Microsoft.Maui.Controls.Xaml.FontImageExtension.Size.set -> void +Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider +Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.XamlServiceProvider() -> void +Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver +Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.XmlNamespaceResolver() -> void +Microsoft.Maui.Controls.Xaml.NullExtension +Microsoft.Maui.Controls.Xaml.NullExtension.NullExtension() -> void +Microsoft.Maui.Controls.Xaml.OnIdiomExtension +Microsoft.Maui.Controls.Xaml.OnIdiomExtension.OnIdiomExtension() -> void +Microsoft.Maui.Controls.Xaml.OnPlatformExtension +Microsoft.Maui.Controls.Xaml.OnPlatformExtension.OnPlatformExtension() -> void +Microsoft.Maui.Controls.Xaml.ReferenceExtension +Microsoft.Maui.Controls.Xaml.ReferenceExtension.ReferenceExtension() -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.get -> int +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorLevel.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.get -> Microsoft.Maui.Controls.RelativeBindingSourceMode +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.RelativeSourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticExtension +Microsoft.Maui.Controls.Xaml.StaticExtension.StaticExtension() -> void +Microsoft.Maui.Controls.Xaml.StaticResourceExtension +Microsoft.Maui.Controls.Xaml.StaticResourceExtension.StaticResourceExtension() -> void +Microsoft.Maui.Controls.Xaml.StyleSheetExtension +Microsoft.Maui.Controls.Xaml.StyleSheetExtension.StyleSheetExtension() -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.get -> Microsoft.Maui.Controls.BindingMode +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Mode.set -> void +Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.TemplateBindingExtension() -> void +Microsoft.Maui.Controls.Xaml.TypeExtension +Microsoft.Maui.Controls.Xaml.TypeExtension.TypeExtension() -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationAttribute(Microsoft.Maui.Controls.Xaml.XamlCompilationOptions xamlCompilationOptions) -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.get -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationAttribute.XamlCompilationOptions.set -> void +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Compile = 2 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlCompilationOptions.Skip = 1 -> Microsoft.Maui.Controls.Xaml.XamlCompilationOptions +Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Dark.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.get -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Light.set -> void +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.AppThemeBindingExtension.Value.get -> object +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Items.get -> System.Collections.IList +~Microsoft.Maui.Controls.Xaml.ArrayExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Array +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.get -> System.Type +~Microsoft.Maui.Controls.Xaml.ArrayExtension.Type.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.BindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.FallbackValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.get -> object +~Microsoft.Maui.Controls.Xaml.BindingExtension.TargetNullValue.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.get -> Microsoft.Maui.Controls.Internals.TypedBindingBase +~Microsoft.Maui.Controls.Xaml.BindingExtension.TypedBinding.set -> void +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.get -> string +~Microsoft.Maui.Controls.Xaml.BindingExtension.UpdateSourceEventName.set -> void +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.DataTemplate +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.DataTemplateExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.DynamicResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Color.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.FontFamily.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.get -> string +~Microsoft.Maui.Controls.Xaml.FontImageExtension.Glyph.set -> void +~Microsoft.Maui.Controls.Xaml.FontImageExtension.ProvideValue(System.IServiceProvider serviceProvider) -> Microsoft.Maui.Controls.ImageSource +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.FindByName(string name) -> object +~Microsoft.Maui.Controls.Xaml.Internals.SimpleValueTargetProvider.SimpleValueTargetProvider(object[] objectAndParents, object targetProperty, Microsoft.Maui.Controls.Internals.INameScope scope) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.Add(System.Type type, object service) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XamlServiceProvider.GetService(System.Type serviceType) -> object +~Microsoft.Maui.Controls.Xaml.Internals.XamlTypeResolver.XamlTypeResolver(System.Xml.IXmlNamespaceResolver namespaceResolver, System.Reflection.Assembly currentAssembly) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfo.get -> System.Xml.IXmlLineInfo +~Microsoft.Maui.Controls.Xaml.Internals.XmlLineInfoProvider.XmlLineInfoProvider(System.Xml.IXmlLineInfo xmlLineInfo) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.Add(string prefix, string ns) -> void +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) -> System.Collections.Generic.IDictionary +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupNamespace(string prefix) -> string +~Microsoft.Maui.Controls.Xaml.Internals.XmlNamespaceResolver.LookupPrefix(string namespaceName) -> string +~Microsoft.Maui.Controls.Xaml.NullExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Desktop.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Phone.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Tablet.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.TV.set -> void +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.get -> object +~Microsoft.Maui.Controls.Xaml.OnIdiomExtension.Watch.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Android.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Default.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.iOS.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.MacCatalyst.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.Tizen.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.UWP.set -> void +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.get -> object +~Microsoft.Maui.Controls.Xaml.OnPlatformExtension.WinUI.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.get -> string +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.Name.set -> void +~Microsoft.Maui.Controls.Xaml.ReferenceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.get -> System.Type +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.AncestorType.set -> void +~Microsoft.Maui.Controls.Xaml.RelativeSourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.get -> string +~Microsoft.Maui.Controls.Xaml.StaticExtension.Member.set -> void +~Microsoft.Maui.Controls.Xaml.StaticExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.get -> string +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.Key.set -> void +~Microsoft.Maui.Controls.Xaml.StaticResourceExtension.ProvideValue(System.IServiceProvider serviceProvider) -> object +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.get -> System.Uri +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Source.set -> void +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.get -> string +~Microsoft.Maui.Controls.Xaml.StyleSheetExtension.Style.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.get -> Microsoft.Maui.Controls.IValueConverter +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Converter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.get -> object +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.ConverterParameter.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.Path.set -> void +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.get -> string +~Microsoft.Maui.Controls.Xaml.TemplateBindingExtension.StringFormat.set -> void +~Microsoft.Maui.Controls.Xaml.TypeExtension.ProvideValue(System.IServiceProvider serviceProvider) -> System.Type +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.get -> string +~Microsoft.Maui.Controls.Xaml.TypeExtension.TypeName.set -> void +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.FilePath.get -> string +~Microsoft.Maui.Controls.Xaml.XamlFilePathAttribute.XamlFilePathAttribute(string filePath = "") -> void +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.AddMauiControlsHandlers(this Microsoft.Maui.Hosting.IMauiHandlersCollection handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp(this Microsoft.Maui.Hosting.MauiAppBuilder builder, System.Func implementationFactory) -> Microsoft.Maui.Hosting.MauiAppBuilder +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, string xaml) -> TXaml +~static Microsoft.Maui.Controls.Xaml.Extensions.LoadFromXaml(this TXaml view, System.Type callingType) -> TXaml diff --git a/src/Controls/src/Xaml/PublicAPI/netstandard/PublicAPI.Unshipped.txt b/src/Controls/src/Xaml/PublicAPI/netstandard/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Controls/src/Xaml/PublicAPI/netstandard/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Controls/tests/Core.UnitTests/AppThemeTests.cs b/src/Controls/tests/Core.UnitTests/AppThemeTests.cs index 0b9683bb7253..732c0657b8ae 100644 --- a/src/Controls/tests/Core.UnitTests/AppThemeTests.cs +++ b/src/Controls/tests/Core.UnitTests/AppThemeTests.cs @@ -195,5 +195,24 @@ public void ThemeBindingRemovedOnOneTimeBindablePropertyWhenPropertySet() SetAppTheme(AppTheme.Dark); Assert.AreEqual(Colors.Pink, shell.FlyoutBackgroundColor); } + + [Test] + public void NullApplicationCurrentFallsBackToEssentials() + { + var label = new Label + { + Text = "Green on Light, Red on Dark" + }; + + label.SetAppThemeColor(Label.TextColorProperty, Colors.Green, Colors.Red); + + Application.Current = null; + + Assert.AreEqual(Colors.Green, label.TextColor); + + SetAppTheme(AppTheme.Dark); + + Assert.AreEqual(Colors.Red, label.TextColor); + } } } \ No newline at end of file diff --git a/src/Controls/tests/Core.UnitTests/FlyoutPageUnitTests.cs b/src/Controls/tests/Core.UnitTests/FlyoutPageUnitTests.cs index 2ec58494a521..ebe282dd55f8 100644 --- a/src/Controls/tests/Core.UnitTests/FlyoutPageUnitTests.cs +++ b/src/Controls/tests/Core.UnitTests/FlyoutPageUnitTests.cs @@ -400,6 +400,69 @@ public void ThrowsExceptionWhenAddingAlreadyParentedFlyout() var mdp = new FlyoutPage(); Assert.Throws(() => mdp.Flyout = Flyout); } + + [Test] + public void FlyoutPageAppearingAnDisappearingPropagatesToFlyout() + { + int disappearing = 0; + int appearing = 0; + + var flyout = new ContentPage() { Title = "flyout" }; + var flyoutPage = new FlyoutPage() + { + Flyout = flyout, + Detail = new ContentPage() { Title = "detail" } + }; + + _ = new Window(flyoutPage); + flyout.Appearing += (_, __) => appearing++; + flyout.Disappearing += (_, __) => disappearing++; + + Assert.AreEqual(0, disappearing); + Assert.AreEqual(0, appearing); + + flyoutPage.SendDisappearing(); + + Assert.AreEqual(1, disappearing); + Assert.AreEqual(0, appearing); + + flyoutPage.SendAppearing(); + + Assert.AreEqual(1, disappearing); + Assert.AreEqual(1, appearing); + } + + [Test] + public void FlyoutPageAppearingAnDisappearingPropagatesToDetail() + { + int disappearing = 0; + int appearing = 0; + + var detail = new ContentPage() { Title = "detail" }; + var flyoutPage = new FlyoutPage() + { + Flyout = new ContentPage() { Title = "flyout" }, + Detail = detail + }; + + _ = new Window(flyoutPage); + + detail.Appearing += (_, __) => appearing++; + detail.Disappearing += (_, __) => disappearing++; + + Assert.AreEqual(0, disappearing); + Assert.AreEqual(0, appearing); + + flyoutPage.SendDisappearing(); + + Assert.AreEqual(1, disappearing); + Assert.AreEqual(0, appearing); + + flyoutPage.SendAppearing(); + + Assert.AreEqual(1, disappearing); + Assert.AreEqual(1, appearing); + } } } diff --git a/src/Controls/tests/Core.UnitTests/GridTests.cs b/src/Controls/tests/Core.UnitTests/GridTests.cs index 5d14e066277a..200594a21531 100644 --- a/src/Controls/tests/Core.UnitTests/GridTests.cs +++ b/src/Controls/tests/Core.UnitTests/GridTests.cs @@ -597,7 +597,6 @@ public void ContractionAppliedEquallyOnMultiStarRows() [Test] public void Issue13127() { - var scrollView = new ScrollView() { IsPlatformEnabled = true }; var outerGrid = new Grid() { RowSpacing = 0, IsPlatformEnabled = true }; var outerStackLayout = new StackLayout() { Spacing = 0, IsPlatformEnabled = true }; @@ -624,10 +623,9 @@ public void Issue13127() outerStackLayout.Children.Add(innerGrid); outerGrid.Children.Add(outerStackLayout); - scrollView.Content = outerGrid; - var sizeRequest = scrollView.Measure(500, 1000); - scrollView.Layout(new Rect(0, 0, sizeRequest.Request.Width, 1000)); + var sizeRequest = outerGrid.Measure(500, 1000); + outerGrid.Layout(new Rect(0, 0, sizeRequest.Request.Width, 1000)); Assert.That(innerGrid.Height, Is.EqualTo(foreground.Height)); Assert.That(background.Height, Is.EqualTo(foreground.Height * 0.6).Within(0.01)); diff --git a/src/Controls/tests/Core.UnitTests/HostBuilderHandlerTests.cs b/src/Controls/tests/Core.UnitTests/HostBuilderHandlerTests.cs index 4488b6458f67..138d82290630 100644 --- a/src/Controls/tests/Core.UnitTests/HostBuilderHandlerTests.cs +++ b/src/Controls/tests/Core.UnitTests/HostBuilderHandlerTests.cs @@ -1,4 +1,5 @@ -using Microsoft.Extensions.DependencyInjection; +using System; +using Microsoft.Extensions.DependencyInjection; using Microsoft.Maui.Controls.Hosting; using Microsoft.Maui.Handlers; using Microsoft.Maui.Hosting; @@ -22,7 +23,7 @@ public void DefaultHandlersAreRegistered() var handler = handlers.GetHandler(typeof(Button)); Assert.NotNull(handler); - Assert.AreEqual(handler.GetType(), typeof(ButtonHandler)); + Assert.AreEqual(typeof(ButtonHandler), handler.GetType()); } [Test] @@ -40,7 +41,33 @@ public void CanSpecifyHandler() var specificHandler = handlers.GetHandler(typeof(Button)); Assert.NotNull(specificHandler); - Assert.AreEqual(specificHandler.GetType(), typeof(ButtonHandlerStub)); + Assert.AreEqual(typeof(ButtonHandlerStub), specificHandler.GetType()); + } + + [Test] + [TestCase(typeof(Label), typeof(LabelHandler))] + [TestCase(typeof(Button), typeof(ButtonHandler))] + [TestCase(typeof(ContentPage), typeof(PageHandler))] + [TestCase(typeof(Page), typeof(PageHandler))] + [TestCase(typeof(TemplatedView), typeof(ContentViewHandler))] + [TestCase(typeof(ContentView), typeof(ContentViewHandler))] + [TestCase(typeof(MyTestCustomTemplatedView), typeof(ContentViewHandler))] + public void VariousControlsGetCorrectHandler(Type viewType, Type handlerType) + { + var mauiApp = MauiApp.CreateBuilder() + .UseMauiApp() + .Build(); + + var handlers = mauiApp.Services.GetRequiredService(); + + var specificHandler = handlers.GetHandler(viewType); + + Assert.NotNull(specificHandler); + Assert.AreEqual(handlerType, specificHandler.GetType()); + } + + class MyTestCustomTemplatedView : TemplatedView + { } } } diff --git a/src/Controls/tests/Core.UnitTests/Layouts/FlexLayoutTests.cs b/src/Controls/tests/Core.UnitTests/Layouts/FlexLayoutTests.cs new file mode 100644 index 000000000000..e5811b3019c5 --- /dev/null +++ b/src/Controls/tests/Core.UnitTests/Layouts/FlexLayoutTests.cs @@ -0,0 +1,84 @@ +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Layouts; +using NUnit.Framework; + +namespace Microsoft.Maui.Controls.Core.UnitTests.Layouts +{ + [TestFixture, Category("Layout")] + public class FlexLayoutTests + { + class TestImage : Image + { + public bool Passed { get; private set; } + + protected override Size MeasureOverride(double widthConstraint, double heightConstraint) + { + if (double.IsPositiveInfinity(widthConstraint) && double.IsPositiveInfinity(heightConstraint)) + { + Passed = true; + } + + return base.MeasureOverride(widthConstraint, heightConstraint); + } + } + + class TestLabel : Label + { + protected override Size MeasureOverride(double widthConstraint, double heightConstraint) + { + return new Size(150, 100); + } + } + + [Test] + public void FlexLayoutMeasuresImagesUnconstrained() + { + var root = new Grid(); + var flexLayout = new FlexLayout() as IFlexLayout; + var image = new TestImage(); + + root.Add(flexLayout); + flexLayout.Add(image as IView); + + var manager = new FlexLayoutManager(flexLayout); + _ = manager.Measure(1000, 1000); + + Assert.True(image.Passed, "Image should be measured unconstrained even if the FlexLayout is constrained."); + } + + [Test] + public void FlexLayoutRecognizesVisibilityChange() + { + var root = new Grid(); + var flexLayout = new FlexLayout() as IFlexLayout; + var view = new TestLabel(); + var view2 = new TestLabel(); + + root.Add(flexLayout); + flexLayout.Add(view as IView); + flexLayout.Add(view2 as IView); + + var manager = new FlexLayoutManager(flexLayout); + + // Measure and arrange the layout while the first view is visible + var measure = manager.Measure(1000, 1000); + manager.ArrangeChildren(new Rect(Point.Zero, measure)); + + // Keep track of where the second view is arranged + var whenVisible = view2.Frame.X; + + // Change the visibility + view.IsVisible = false; + + // Measure and arrange againg + measure = manager.Measure(1000, 1000); + manager.ArrangeChildren(new Rect(Point.Zero, measure)); + + var whenInvisible = view2.Frame.X; + + // The location of the second view should have changed + // now that the first view is not visible + Assert.True(whenInvisible != whenVisible); + } + } +} diff --git a/src/Controls/tests/Core.UnitTests/Layouts/GridLayoutTests.cs b/src/Controls/tests/Core.UnitTests/Layouts/GridLayoutTests.cs index 836ad9311059..c2a0ef610d3c 100644 --- a/src/Controls/tests/Core.UnitTests/Layouts/GridLayoutTests.cs +++ b/src/Controls/tests/Core.UnitTests/Layouts/GridLayoutTests.cs @@ -130,7 +130,7 @@ static void AssertInvalidated(IViewHandler handler) } [Test] - public void RowDefinitionsGetBindingContext() + public void RowDefinitionsGetBindingContext() { var def = new RowDefinition(); var def2 = new RowDefinition(); diff --git a/src/Controls/tests/Core.UnitTests/ScrollViewUnitTests.cs b/src/Controls/tests/Core.UnitTests/ScrollViewUnitTests.cs index 63d9f4ed47e2..2356bec1c19a 100644 --- a/src/Controls/tests/Core.UnitTests/ScrollViewUnitTests.cs +++ b/src/Controls/tests/Core.UnitTests/ScrollViewUnitTests.cs @@ -58,217 +58,6 @@ public void GetsCorrectSizeRequestWithWrappingContent(ScrollOrientation orientat Assert.AreEqual(10, r.Request.Height); } - [Test] - public void TestContentSizeChangedVertical() - { - View view = new View { IsPlatformEnabled = true, WidthRequest = 100, HeightRequest = 100 }; - - ScrollView scroll = new ScrollView { Content = view }; - - var handler = Substitute.For(); - scroll.Handler = handler; - - scroll.Layout(new Rect(0, 0, 50, 50)); - - Assert.AreEqual(new Size(50, 100), scroll.ContentSize); - - bool changed = false; - scroll.PropertyChanged += (sender, e) => - { - switch (e.PropertyName) - { - case "ContentSize": - changed = true; - break; - } - }; - - view.HeightRequest = 200; - - // Verify that the HeightRequest change invalidated the layout, and simulate a native layout update - AssertInvalidated(handler); - scroll.ForceLayout(); - - Assert.True(changed); - Assert.AreEqual(new Size(50, 200), scroll.ContentSize); - } - - [Test] - public void TestContentSizeChangedVerticalBidirectional() - { - View view = new View { IsPlatformEnabled = true, WidthRequest = 100, HeightRequest = 100 }; - - ScrollView scroll = new ScrollView { Content = view, Orientation = ScrollOrientation.Both }; - - var handler = Substitute.For(); - scroll.Handler = handler; - - scroll.Layout(new Rect(0, 0, 50, 50)); - - Assert.AreEqual(new Size(100, 100), scroll.ContentSize); - - bool changed = false; - scroll.PropertyChanged += (sender, e) => - { - switch (e.PropertyName) - { - case "ContentSize": - changed = true; - break; - } - }; - - view.HeightRequest = 200; - - // Verify that the HeightRequest change invalidated the layout, and simulate a native layout update - AssertInvalidated(handler); - scroll.ForceLayout(); - - Assert.True(changed); - Assert.AreEqual(new Size(100, 200), scroll.ContentSize); - } - - [Test] - public void TestContentSizeChangedHorizontal() - { - View view = new View { IsPlatformEnabled = true, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Orientation = ScrollOrientation.Horizontal, - Content = view - }; - - var handler = Substitute.For(); - scroll.Handler = handler; - - scroll.Layout(new Rect(0, 0, 50, 50)); - - Assert.AreEqual(new Size(100, 50), scroll.ContentSize); - - bool changed = false; - scroll.PropertyChanged += (sender, e) => - { - switch (e.PropertyName) - { - case "ContentSize": - changed = true; - break; - } - }; - - view.WidthRequest = 200; - - // Verify that the WidthRequest change invalidated the layout, and simulate a native layout update - AssertInvalidated(handler); - scroll.ForceLayout(); - - Assert.True(changed); - Assert.AreEqual(new Size(200, 50), scroll.ContentSize); - } - - [Test] - public void TestContentSizeChangedHorizontalBidirectional() - { - View view = new View { IsPlatformEnabled = true, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Orientation = ScrollOrientation.Both, - Content = view - }; - - var handler = Substitute.For(); - scroll.Handler = handler; - - scroll.Layout(new Rect(0, 0, 50, 50)); - - Assert.AreEqual(new Size(100, 100), scroll.ContentSize); - - bool changed = false; - scroll.PropertyChanged += (sender, e) => - { - switch (e.PropertyName) - { - case "ContentSize": - changed = true; - break; - } - }; - - view.WidthRequest = 200; - - // Verify that the WidthRequest change invalidated the layout, and simulate a native layout update - AssertInvalidated(handler); - scroll.ForceLayout(); - - Assert.True(changed); - Assert.AreEqual(new Size(200, 100), scroll.ContentSize); - } - - [Test] - public void TestContentSizeDidNotChangeNeither() - { - View view = new View { IsPlatformEnabled = true, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Orientation = ScrollOrientation.Neither, - Content = view - }; - - var originalBounds = new Rect(0, 0, 50, 50); - - scroll.Layout(originalBounds); - - Assert.That(originalBounds.Size, Is.EqualTo(scroll.ContentSize)); - - bool changed = false; - scroll.PropertyChanged += (sender, e) => - { - switch (e.PropertyName) - { - case "ContentSize": - changed = true; - break; - } - }; - - view.WidthRequest = 200; - - Assert.That(changed, Is.False); - Assert.That(originalBounds.Size, Is.EqualTo(scroll.ContentSize)); - } - - [Test] - public void TestContentSizeClamping() - { - View view = new View { IsPlatformEnabled = true, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Orientation = ScrollOrientation.Horizontal, - Content = view, - }; - scroll.Layout(new Rect(0, 0, 50, 50)); - - bool changed = false; - scroll.PropertyChanged += (sender, e) => - { - switch (e.PropertyName) - { - case "ContentSize": - changed = true; - break; - } - }; - - view.HeightRequest = 200; - - Assert.False(changed); - Assert.AreEqual(new Size(100, 50), scroll.ContentSize); - } - [Test] public void TestChildChanged() { @@ -497,57 +286,6 @@ public void SetScrollPosition() Assert.That(scroll.ScrollY, Is.EqualTo(100)); } - [Test] - public void TestScrollContentMarginHorizontal() - { - View view = new View { IsPlatformEnabled = true, Margin = 100, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Content = view, - Orientation = ScrollOrientation.Horizontal, - }; - scroll.Layout(new Rect(0, 0, 100, 100)); - - Assert.AreEqual(new Size(300, 100), scroll.ContentSize); - Assert.AreEqual(100, scroll.Height); - Assert.AreEqual(100, scroll.Width); - } - - [Test] - public void TestScrollContentMarginVertical() - { - View view = new View { IsPlatformEnabled = true, Margin = 100, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Content = view, - Orientation = ScrollOrientation.Vertical, - }; - scroll.Layout(new Rect(0, 0, 100, 100)); - - Assert.AreEqual(new Size(100, 300), scroll.ContentSize); - Assert.AreEqual(100, scroll.Height); - Assert.AreEqual(100, scroll.Width); - } - - [Test] - public void TestScrollContentMarginBiDirectional() - { - View view = new View { IsPlatformEnabled = true, Margin = 100, WidthRequest = 100, HeightRequest = 100 }; - - var scroll = new ScrollView - { - Content = view, - Orientation = ScrollOrientation.Both, - }; - scroll.Layout(new Rect(0, 0, 100, 100)); - - Assert.AreEqual(new Size(300, 300), scroll.ContentSize); - Assert.AreEqual(100, scroll.Height); - Assert.AreEqual(100, scroll.Width); - } - [Test] public void TestBackToBackBiDirectionalScroll() { diff --git a/src/Controls/tests/Core.UnitTests/ShellTests.cs b/src/Controls/tests/Core.UnitTests/ShellTests.cs index 8721ac8e2b93..70c67ecd6f76 100644 --- a/src/Controls/tests/Core.UnitTests/ShellTests.cs +++ b/src/Controls/tests/Core.UnitTests/ShellTests.cs @@ -71,6 +71,34 @@ public void SetCurrentItemWithImplicitlyWrappedShellContent(bool useShellContent } + [Test] + public void SettingCurrentItemOnShellViaContentPage() + { + var page1 = new ContentPage(); + var page2 = new ContentPage(); + var shell = new TestShell() + { + Items = + { + new TabBar() + { + Items = + { + new ShellContent() { Content = page1 }, + new ShellContent() { Content = page2 }, + } + } + } + }; + + shell.CurrentItem = page2; + Assert.AreEqual(1, shell.Items.Count); + Assert.AreEqual(2, shell.Items[0].Items.Count); + Assert.AreEqual(1, shell.Items[0].Items[0].Items.Count); + Assert.AreEqual(1, shell.Items[0].Items[1].Items.Count); + Assert.AreEqual(shell.CurrentItem.CurrentItem, shell.Items[0].Items[1]); + } + [Test] public void SetCurrentItemAddsToShellCollection() { @@ -1163,6 +1191,7 @@ public async Task GetCurrentPageInShellNavigation() public async Task GetCurrentPageBetweenSections() { var shell = new Shell(); + _ = new Window() { Page = shell }; var one = new ShellItem { Route = "one" }; var two = new ShellItem { Route = "two" }; @@ -1197,6 +1226,7 @@ public async Task GetCurrentPageBetweenSections() public void GetCurrentPageOnInit() { var shell = new Shell(); + _ = new Window() { Page = shell }; Page page = null; shell.Navigated += (_, __) => { diff --git a/src/Controls/tests/Core.UnitTests/ShellToolbarTests.cs b/src/Controls/tests/Core.UnitTests/ShellToolbarTests.cs index 5bb19aee5c44..3f06eb7b7f65 100644 --- a/src/Controls/tests/Core.UnitTests/ShellToolbarTests.cs +++ b/src/Controls/tests/Core.UnitTests/ShellToolbarTests.cs @@ -226,5 +226,22 @@ public void ContentPageColorsPropagateToShellToolbar() Assert.AreEqual(Colors.Orange, toolbar.IconColor); Assert.AreEqual(Colors.Pink, toolbar.BarTextColor); } + + [Test] + public void ToolBarShouldBeVisibleWithEmptyTitleAndFlyoutBehaviorSetToFlyout() + { + TestShell testShell = new TestShell() + { + CurrentItem = new FlyoutItem() + { + CurrentItem = new ContentPage() + } + }; + + _ = new Window() { Page = testShell }; + var toolbar = testShell.Toolbar; + + Assert.IsTrue(toolbar.IsVisible); + } } } diff --git a/src/Controls/tests/Core.UnitTests/TemplatedViewUnitTests.cs b/src/Controls/tests/Core.UnitTests/TemplatedViewUnitTests.cs index 6cbca68537fd..b8740cc4afad 100644 --- a/src/Controls/tests/Core.UnitTests/TemplatedViewUnitTests.cs +++ b/src/Controls/tests/Core.UnitTests/TemplatedViewUnitTests.cs @@ -56,6 +56,28 @@ public void GetContentViewTemplateChildShouldWork() Assert.AreEqual(internalChildren[0], contentView.TemplateChildObtained); } + [Test] + public void GetTemplatedViewTemplateChildShouldWork() + { + var xaml = + @" + + + + + "; + + var contentView = new MyTestTemplatedView(); + contentView.LoadFromXaml(xaml); + + IList internalChildren = contentView.InternalChildren; + Assert.AreEqual(internalChildren[0], contentView.TemplateChildObtained); + } + [Test] public void GetContentPageTemplateChildShouldWork() { @@ -96,6 +118,27 @@ public void OnContentViewApplyTemplateShouldBeCalled() Assert.IsTrue(contentView.WasOnApplyTemplateCalled); } + [Test] + public void OnTemplatedViewApplyTemplateShouldBeCalled() + { + var xaml = + @" + + + + + "; + + var contentView = new MyTestTemplatedView(); + contentView.LoadFromXaml(xaml); + + Assert.IsTrue(contentView.WasOnApplyTemplateCalled); + } + [Test] public void OnContentPageApplyTemplateShouldBeCalled() { @@ -150,6 +193,19 @@ public void BindingsShouldBeAppliedOnTemplateChange() } } + class MyTestTemplatedView : TemplatedView + { + public bool WasOnApplyTemplateCalled { get; private set; } + + public Element TemplateChildObtained { get; private set; } + + protected override void OnApplyTemplate() + { + WasOnApplyTemplateCalled = true; + TemplateChildObtained = (Element)GetTemplateChild("label0"); + } + } + class MyTestContentView : ContentView { public bool WasOnApplyTemplateCalled { get; private set; } diff --git a/src/Controls/tests/Core.UnitTests/VisualElementTests.cs b/src/Controls/tests/Core.UnitTests/VisualElementTests.cs index 19b34b5eb4e8..bc5fb079929b 100644 --- a/src/Controls/tests/Core.UnitTests/VisualElementTests.cs +++ b/src/Controls/tests/Core.UnitTests/VisualElementTests.cs @@ -2,10 +2,10 @@ using NUnit.Framework; namespace Microsoft.Maui.Controls.Core.UnitTests { - public class VisualElementTests + public class VisualElementTests { [Test(Description = "If WidthRequest has been set and is reset to -1, the Core Width should return to being Unset")] - public void SettingWidthRequestToNegativeOneShouldResetWidth() + public void SettingWidthRequestToNegativeOneShouldResetWidth() { var visualElement = new Label(); var coreView = visualElement as IView; @@ -51,5 +51,22 @@ public void SettingHeightRequestToNegativeOneShouldResetWidth() Assert.That(coreView.Height, Is.EqualTo(Dimension.Unset)); Assert.That(visualElement.HeightRequest, Is.EqualTo(-1)); } + + [Test] + public void BindingContextPropagatesToBackground() + { + var visualElement = new Label(); + var brush = new LinearGradientBrush(); + visualElement.Background = brush; + + var bc1 = new object(); + visualElement.BindingContext = bc1; + Assert.AreEqual(bc1, brush.BindingContext); + + var brush2 = new LinearGradientBrush(); + visualElement.Background = brush2; + Assert.AreEqual(bc1, brush2.BindingContext); + + } } } diff --git a/src/Controls/tests/Core.UnitTests/WindowsTests.cs b/src/Controls/tests/Core.UnitTests/WindowsTests.cs index 7b1c578cd362..50ae75a22be9 100644 --- a/src/Controls/tests/Core.UnitTests/WindowsTests.cs +++ b/src/Controls/tests/Core.UnitTests/WindowsTests.cs @@ -264,6 +264,60 @@ public void RemovingControlsFromLayoutsUnsetsTheWindow() Assert.AreEqual(window, cp.Window); } + [Test] + public void DeActivatedFiresDisappearingEvent() + { + int disappear = 0; + int appear = 0; + + var cp = new ContentPage(); + IWindow window = new Window(cp); + window.Activated(); + + cp.Appearing += (_, __) => appear++; + cp.Disappearing += (_, __) => disappear++; + + window.Deactivated(); + Assert.AreEqual(1, disappear); + Assert.AreEqual(0, appear); + } + + [Test] + public void ReActivatedFiresCorrectActivatedEvent() + { + int disappear = 0; + int appear = 0; + + var cp = new ContentPage(); + IWindow window = new Window(cp); + window.Activated(); + + cp.Appearing += (_, __) => appear++; + cp.Disappearing += (_, __) => disappear++; + + Assert.AreEqual(0, disappear); + window.Deactivated(); + window.Activated(); + Assert.AreEqual(1, disappear); + Assert.AreEqual(1, appear); + } + + [Test] + public void RemovedPageFiresDisappearing() + { + int disappear = 0; + int appear = 0; + + var cp = new ContentPage(); + cp.Disappearing += (_, __) => disappear++; + + Window window = new Window(cp); + (window as IWindow).Activated(); + Assert.AreEqual(0, disappear); + window.Page = new ContentPage(); + Assert.AreEqual(1, disappear); + } + void ValidateSetup(Application app, Page page = null) { var window = (Window)app.Windows[0]; diff --git a/src/Controls/tests/DeviceTests/Elements/Compatibility/VisualElementRendererTests.cs b/src/Controls/tests/DeviceTests/Elements/Compatibility/VisualElementRendererTests.cs new file mode 100644 index 000000000000..0cd6a6c3f4a3 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Compatibility/VisualElementRendererTests.cs @@ -0,0 +1,58 @@ +using System.Linq; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Controls.Handlers.Compatibility; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Hosting; +using Microsoft.Maui.Platform; +using Xunit; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.Compatibility)] + public partial class VisualElementRendererTests : HandlerTestBase + { + class LegacyComponent : View + { + + } + +#if WINDOWS + class LegacyComponentRenderer : ViewRenderer +#else + class LegacyComponentRenderer : VisualElementRenderer +#endif + { +#if ANDROID + public LegacyComponentRenderer(Android.Content.Context context) : base(context) + { + + } +#endif + } + + + void SetupBuilder() + { + EnsureHandlerCreated(builder => + { + builder.ConfigureMauiHandlers(handlers => + { + handlers.AddHandler(); + }); + }); + } + + [Fact] + public async Task CompatibilityRendererWorksWithNoInnerContrlSpecified() + { + SetupBuilder(); + + var renderer = await InvokeOnMainThreadAsync(() => new LegacyComponent().ToPlatform(MauiContext)); + + await InvokeOnMainThreadAsync(() => Assert.Equal(renderer, (renderer as IPlatformViewHandler).PlatformView)); + + Assert.NotNull(renderer); + } + } +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.Android.cs new file mode 100644 index 000000000000..d7aeb4405438 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.Android.cs @@ -0,0 +1,21 @@ +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class ContentViewTests + { + static int GetChildCount(ContentViewHandler contentViewHandler) + { + return contentViewHandler.PlatformView.ChildCount; + } + + static int GetContentChildCount(ContentViewHandler contentViewHandler) + { + if (contentViewHandler.PlatformView.GetChildAt(0) is LayoutViewGroup childLayoutViewGroup) + return childLayoutViewGroup.ChildCount; + else + return 0; + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.Windows.cs new file mode 100644 index 000000000000..2e32a119dae1 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.Windows.cs @@ -0,0 +1,21 @@ +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class ContentViewTests + { + static int GetChildCount(ContentViewHandler contentViewHandler) + { + return contentViewHandler.PlatformView.Children.Count; + } + + static int GetContentChildCount(ContentViewHandler contentViewHandler) + { + if (contentViewHandler.PlatformView.Children[0] is LayoutPanel childLayoutPanel) + return childLayoutPanel.Children.Count; + else + return 0; + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.cs b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.cs new file mode 100644 index 000000000000..0e5b5256f2b5 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.cs @@ -0,0 +1,55 @@ +using System; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Hosting; +using Microsoft.Maui.Platform; +using Xunit; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.ContentView)] + public partial class ContentViewTests : HandlerTestBase + { + void SetupBuilder() + { + EnsureHandlerCreated(builder => + { + builder.ConfigureMauiHandlers(handlers => + { + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + }); + }); + } + + [Fact("ContentView updating it's ControlTemplate works")] + public async Task ControlTemplateUpdates() + { + SetupBuilder(); + var child = new Label { Text = "Content 1" }; + var contentView = new Microsoft.Maui.Controls.ContentView(); + var header = new Label { Text = "Header" }; + var footer = new Label { Text = "Footer" }; + var presenter = new ContentPresenter(); + var grid = new Grid(); + + var contentViewHandler = await CreateHandlerAsync(contentView); + + await InvokeOnMainThreadAsync(() => + { + contentView.Content = child; + Assert.True(GetChildCount(contentViewHandler) == 1); + Assert.True(GetContentChildCount(contentViewHandler) == 0); + grid.Children.Add(header); + grid.Children.Add(presenter); + grid.Children.Add(footer); + var dataTemplate = new ControlTemplate(() => grid); + contentView.ControlTemplate = dataTemplate; + Assert.True(GetChildCount(contentViewHandler) == 1); + Assert.True(GetContentChildCount(contentViewHandler) == 3); + }); + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.iOS.cs b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.iOS.cs new file mode 100644 index 000000000000..0e38b37d5927 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ContentView/ContentViewTests.iOS.cs @@ -0,0 +1,17 @@ +using Microsoft.Maui.Handlers; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class ContentViewTests + { + static int GetChildCount(ContentViewHandler contentViewHandler) + { + return contentViewHandler.PlatformView.Subviews.Length; + } + + static int GetContentChildCount(ContentViewHandler contentViewHandler) + { + return contentViewHandler.PlatformView.Subviews[0].Subviews.Length; + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Android.cs index a39140111d28..c6456d00aabf 100644 --- a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Android.cs +++ b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Android.cs @@ -15,5 +15,28 @@ Task GetPlatformText(EditorHandler handler) { return InvokeOnMainThreadAsync(() => GetPlatformControl(handler).Text); } + + void SetPlatformText(EditorHandler editorHandler, string text) => + GetPlatformControl(editorHandler).Text = text; + + int GetPlatformCursorPosition(EditorHandler editorHandler) + { + var textView = GetPlatformControl(editorHandler); + + if (textView != null) + return textView.SelectionStart; + + return -1; + } + + int GetPlatformSelectionLength(EditorHandler editorHandler) + { + var textView = GetPlatformControl(editorHandler); + + if (textView != null) + return textView.SelectionEnd - textView.SelectionStart; + + return -1; + } } } diff --git a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Windows.cs index 1b0c63cb7165..9198c624d00c 100644 --- a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Windows.cs +++ b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.Windows.cs @@ -14,5 +14,14 @@ Task GetPlatformText(EditorHandler handler) { return InvokeOnMainThreadAsync(() => GetPlatformControl(handler).Text); } + + void SetPlatformText(EditorHandler editorHandler, string text) => + GetPlatformControl(editorHandler).Text = text; + + int GetPlatformCursorPosition(EditorHandler editorHandler) => + GetPlatformControl(editorHandler).SelectionStart; + + int GetPlatformSelectionLength(EditorHandler editorHandler) => + GetPlatformControl(editorHandler).SelectionLength; } } diff --git a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.cs b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.cs index 39c6df536fa1..e181caee0a18 100644 --- a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.cs @@ -51,7 +51,7 @@ await CreateHandlerAndAddToWindow(layout, (_) => } #endif - [Theory] + [Theory(DisplayName = "Text is Transformed Correctly at Initialization")] [ClassData(typeof(TextTransformCases))] public async Task InitialTextTransformApplied(string text, TextTransform transform, string expected) { @@ -60,7 +60,7 @@ public async Task InitialTextTransformApplied(string text, TextTransform transfo Assert.Equal(expected, platformText); } - [Theory] + [Theory(DisplayName = "Text is Transformed Correctly after Initialization")] [ClassData(typeof(TextTransformCases))] public async Task TextTransformUpdated(string text, TextTransform transform, string expected) { @@ -95,5 +95,199 @@ await InvokeOnMainThreadAsync(() => }); } #endif + + [Theory(DisplayName = "CursorPosition Initializes Correctly")] + [InlineData(2)] + public async Task CursorPositionInitializesCorrectly(int initialPosition) + { + var editor = new Editor + { + Text = "This is TEXT!", + CursorPosition = initialPosition + }; + + await ValidatePropertyInitValue( + editor, + () => editor.CursorPosition, + GetPlatformCursorPosition, + initialPosition); + } + + [Theory(DisplayName = "CursorPosition Updates Correctly")] + [InlineData(2, 5)] + public async Task CursorPositionUpdatesCorrectly(int setValue, int unsetValue) + { + string text = "This is TEXT!"; + + var editor = new Editor + { + Text = text + }; + + await ValidatePropertyUpdatesValue( + editor, + nameof(ITextInput.CursorPosition), + GetPlatformCursorPosition, + setValue, + unsetValue + ); + } + + [Theory(DisplayName = "CursorPosition is Capped to Text's Length")] + [InlineData(30)] + public async Task CursorPositionIsCapped(int initialPosition) + { + string text = "This is TEXT!"; + + var editor = new Editor + { + Text = text, + CursorPosition = initialPosition + }; + + await ValidatePropertyInitValue( + editor, + () => editor.CursorPosition, + GetPlatformCursorPosition, + text.Length); + } + + [Theory(DisplayName = "Unset CursorPosition is kept at zero at initialization")] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task UnsetCursorPositionKeepsToZeroOnInitialization(string text) + { + var editor = new Editor + { + Text = text + }; + + await ValidatePropertyInitValue( + editor, + () => editor.CursorPosition, + GetPlatformCursorPosition, + 0); + } + + [Theory(DisplayName = "CursorPosition moves to the end on text change after initialization" +#if WINDOWS + , Skip = "For some reason, the PlatformView events are not being fired on tests after the handler is created, something is swallowing them. " + + "This was tested on a real app and it's working correctly." +#endif + )] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task CursorPositionMovesToTheEndOnTextChangeAfterInitialization(string text) + { + var editor = new Editor + { + Text = "Test" + }; + + await SetValueAsync(editor, text, SetPlatformText); + + Assert.Equal(text.Length, editor.CursorPosition); + } + + [Theory(DisplayName = "SelectionLength Initializes Correctly")] + [InlineData(2)] + public async Task SelectionLengthInitializesCorrectly(int initialLength) + { + var editor = new Editor + { + Text = "This is TEXT!", + SelectionLength = initialLength + }; + + await ValidatePropertyInitValue( + editor, + () => editor.SelectionLength, + GetPlatformSelectionLength, + initialLength); + } + + [Theory(DisplayName = "SelectionLength Updates Correctly")] + [InlineData(2, 5)] + public async Task SelectionLengthUpdatesCorrectly(int setValue, int unsetValue) + { + string text = "This is TEXT!"; + + var editor = new Editor + { + Text = text, + }; + + await ValidatePropertyUpdatesValue( + editor, + nameof(IEditor.SelectionLength), + GetPlatformSelectionLength, + setValue, + unsetValue + ); + } + + [Theory(DisplayName = "SelectionLength is Capped to Text Length")] + [InlineData(30)] + public async Task SelectionLengthIsCapped(int selectionLength) + { + string text = "This is TEXT!"; + + var editor = new Editor + { + Text = text, + SelectionLength = selectionLength + }; + + await ValidatePropertyInitValue( + editor, + () => editor.SelectionLength, + GetPlatformSelectionLength, + text.Length); + } + + [Theory(DisplayName = "Unset SelectionLength is kept at zero at initialization")] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task UnsetSelectionLengthKeepsToZeroOnInitialization(string text) + { + var editor = new Editor + { + Text = text + }; + + await ValidatePropertyInitValue( + editor, + () => editor.SelectionLength, + GetPlatformSelectionLength, + 0); + } + + [Theory(DisplayName = "SelectionLength is kept at zero on text change after initialization" +#if WINDOWS + , Skip = "For some reason, the PlatformView events are not being fired on tests after the handler is created, something is swallowing them. " + + "This was tested on a real app and it's working correctly." +#endif + )] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task SelectionLengthMovesToTheEndOnTextChangeAfterInitialization(string text) + { + var editor = new Editor + { + Text = "Test" + }; + + await SetValueAsync(editor, text, SetPlatformText); + + Assert.Equal(0, editor.SelectionLength); + } } } diff --git a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.iOS.cs b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.iOS.cs index b5f8da788983..d7dc7809ea19 100644 --- a/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.iOS.cs +++ b/src/Controls/tests/DeviceTests/Elements/Editor/EditorTests.iOS.cs @@ -15,5 +15,28 @@ Task GetPlatformText(EditorHandler handler) { return InvokeOnMainThreadAsync(() => GetPlatformControl(handler).Text); } + + void SetPlatformText(EditorHandler editorHandler, string text) => + GetPlatformControl(editorHandler).Text = text; + + int GetPlatformCursorPosition(EditorHandler editorHandler) + { + var nativeEditor = GetPlatformControl(editorHandler); + + if (nativeEditor != null && nativeEditor.SelectedTextRange != null) + return (int)nativeEditor.GetOffsetFromPosition(nativeEditor.BeginningOfDocument, nativeEditor.SelectedTextRange.Start); + + return -1; + } + + int GetPlatformSelectionLength(EditorHandler editorHandler) + { + var nativeEditor = GetPlatformControl(editorHandler); + + if (nativeEditor != null && nativeEditor.SelectedTextRange != null) + return (int)nativeEditor.GetOffsetFromPosition(nativeEditor.SelectedTextRange.Start, nativeEditor.SelectedTextRange.End); + + return -1; + } } } diff --git a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Android.cs index 8d5d8f034a3e..483dff871bfc 100644 --- a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Android.cs +++ b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Android.cs @@ -14,16 +14,27 @@ Task GetPlatformText(EntryHandler handler) return InvokeOnMainThreadAsync(() => GetPlatformControl(handler).Text); } - int GetCursorStartPosition(EntryHandler entryHandler) + void SetPlatformText(EntryHandler entryHandler, string text) => + GetPlatformControl(entryHandler).Text = text; + + int GetPlatformCursorPosition(EntryHandler entryHandler) { - var control = GetPlatformControl(entryHandler); - return control.SelectionStart; + var editText = GetPlatformControl(entryHandler); + + if (editText != null) + return editText.SelectionEnd; + + return -1; } - void UpdateCursorStartPosition(EntryHandler entryHandler, int position) + int GetPlatformSelectionLength(EntryHandler entryHandler) { - var control = GetPlatformControl(entryHandler); - control.SetSelection(position); + var editText = GetPlatformControl(entryHandler); + + if (editText != null) + return editText.SelectionEnd - editText.SelectionStart; + + return -1; } } } diff --git a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Windows.cs index 33650278d246..5116daaf0162 100644 --- a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Windows.cs +++ b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.Windows.cs @@ -15,16 +15,13 @@ Task GetPlatformText(EntryHandler handler) return InvokeOnMainThreadAsync(() => GetPlatformControl(handler).Text); } - int GetCursorStartPosition(EntryHandler entryHandler) - { - var control = GetPlatformControl(entryHandler); - return control.SelectionStart; - } + void SetPlatformText(EntryHandler entryHandler, string text) => + GetPlatformControl(entryHandler).Text = text; - void UpdateCursorStartPosition(EntryHandler entryHandler, int position) - { - var control = GetPlatformControl(entryHandler); - control.SelectionStart = position; - } + int GetPlatformCursorPosition(EntryHandler entryHandler) => + GetPlatformControl(entryHandler).SelectionStart; + + int GetPlatformSelectionLength(EntryHandler entryHandler) => + GetPlatformControl(entryHandler).SelectionLength; } } diff --git a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.cs b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.cs index 19f3cb6d4d88..f48cdef27e1c 100644 --- a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.DeviceTests [Category(TestCategory.Entry)] public partial class EntryTests : HandlerTestBase { - [Theory] + [Theory(DisplayName = "Text is Transformed Correctly at Initialization")] [ClassData(typeof(TextTransformCases))] public async Task InitialTextTransformApplied(string text, TextTransform transform, string expected) { @@ -18,7 +18,7 @@ public async Task InitialTextTransformApplied(string text, TextTransform transfo Assert.Equal(expected, platformText); } - [Theory] + [Theory(DisplayName = "Text is Transformed Correctly after Initialization")] [ClassData(typeof(TextTransformCases))] public async Task TextTransformUpdated(string text, TextTransform transform, string expected) { @@ -29,80 +29,223 @@ public async Task TextTransformUpdated(string text, TextTransform transform, str Assert.Equal(expected, platformText); } +#if WINDOWS + // Only Windows needs the IsReadOnly workaround for MaxLength==0 to prevent text from being entered [Fact] - public async Task CursorPositionDoesntResetWhenNativeTextValueChanges() + public async Task MaxLengthIsReadOnlyValueTest() { - var textInput = new Entry() + Entry entry = new Entry(); + + await InvokeOnMainThreadAsync(() => { - Text = "Hello" + var handler = CreateHandler(entry); + var platformControl = GetPlatformControl(handler); + + entry.MaxLength = 0; + Assert.True(platformControl.IsReadOnly); + entry.IsReadOnly = false; + Assert.True(platformControl.IsReadOnly); + + entry.MaxLength = 10; + Assert.False(platformControl.IsReadOnly); + entry.IsReadOnly = true; + Assert.True(platformControl.IsReadOnly); + }); + } +#endif + + [Theory(DisplayName = "CursorPosition Initializes Correctly")] + [InlineData(2)] + public async Task CursorPositionInitializesCorrectly(int initialPosition) + { + var entry = new Entry + { + Text = "This is TEXT!", + CursorPosition = initialPosition }; + await ValidatePropertyInitValue( + entry, + () => entry.CursorPosition, + GetPlatformCursorPosition, + initialPosition); + } - int cursorPosition = 0; - await InvokeOnMainThreadAsync(() => + [Theory(DisplayName = "CursorPosition Updates Correctly")] + [InlineData(2, 5)] + public async Task CursorPositionUpdatesCorrectly(int setValue, int unsetValue) + { + string text = "This is TEXT!"; + + var entry = new Entry { - var handler = CreateHandler(textInput); - UpdateCursorStartPosition(handler, 5); - handler.UpdateValue(nameof(ITextInput.Text)); - cursorPosition = GetCursorStartPosition(handler); - }); + Text = text + }; - Assert.Equal(5, cursorPosition); + await ValidatePropertyUpdatesValue( + entry, + nameof(ITextInput.CursorPosition), + GetPlatformCursorPosition, + setValue, + unsetValue + ); } - [Fact] - public async Task CursorPositionResetsToZeroAfterChangingText() + [Theory(DisplayName = "CursorPosition is Capped to Text's Length")] + [InlineData(30)] + public async Task CursorPositionIsCapped(int initialPosition) { - var textInput = new Entry() + string text = "This is TEXT!"; + + var entry = new Entry { - Text = "Hello" + Text = text, + CursorPosition = initialPosition }; + await ValidatePropertyInitValue( + entry, + () => entry.CursorPosition, + GetPlatformCursorPosition, + text.Length); + } - int cursorPosition = 0; - await InvokeOnMainThreadAsync(() => + [Theory(DisplayName = "Unset CursorPosition is kept at zero at initialization")] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task UnsetCursorPositionIsKeptAtZeroAtInitialization(string text) + { + var entry = new Entry { - var handler = CreateHandler(textInput); - UpdateCursorStartPosition(handler, 5); - textInput.Text = "hel"; - cursorPosition = GetCursorStartPosition(handler); - }); + Text = text + }; - // iOS won't reset your cursor position when changing the value. - // We could force iOS to act like winui/android - // but that starts to become a rabbit hole. - // If the developer cares they can use the cursor APIs - // to specifically move the cursor where they want it to be -#if IOS - Assert.Equal(3, cursorPosition); -#else - Assert.Equal(0, cursorPosition); -#endif + await ValidatePropertyInitValue( + entry, + () => entry.CursorPosition, + GetPlatformCursorPosition, + 0); } + [Theory(DisplayName = "CursorPosition moves to the end on text change by code after initialization" #if WINDOWS - // Only Windows needs the IsReadOnly workaround for MaxLength==0 to prevent text from being entered - [Fact] - public async Task MaxLengthIsReadOnlyValueTest() + , Skip = "For some reason, the PlatformView events are not being fired on tests after the handler is created, something is swallowing them. " + + "This was tested on a real app and it's working correctly." +#endif + )] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task CursorPositionMovesToTheEndOnTextChangeAfterInitialization(string text) { - Entry entry = new Entry(); + var entry = new Entry + { + Text = "Test" + }; - await InvokeOnMainThreadAsync(() => + await SetValueAsync(entry, text, SetPlatformText); + + Assert.Equal(text.Length, entry.CursorPosition); + } + + [Theory(DisplayName = "SelectionLength Initializes Correctly")] + [InlineData(2)] + public async Task SelectionLengthInitializesCorrectly(int initialLength) + { + var entry = new Entry { - var handler = CreateHandler(entry); - var platformControl = GetPlatformControl(handler); + Text = "This is TEXT!", + SelectionLength = initialLength + }; - entry.MaxLength = 0; - Assert.True(platformControl.IsReadOnly); - entry.IsReadOnly = false; - Assert.True(platformControl.IsReadOnly); + await ValidatePropertyInitValue( + entry, + () => entry.SelectionLength, + GetPlatformSelectionLength, + initialLength); + } - entry.MaxLength = 10; - Assert.False(platformControl.IsReadOnly); - entry.IsReadOnly = true; - Assert.True(platformControl.IsReadOnly); - }); + [Theory(DisplayName = "SelectionLength Updates Correctly")] + [InlineData(2, 5)] + public async Task SelectionLengthUpdatesCorrectly(int setValue, int unsetValue) + { + string text = "This is TEXT!"; + + var entry = new Entry + { + Text = text, + }; + + await ValidatePropertyUpdatesValue( + entry, + nameof(IEntry.SelectionLength), + GetPlatformSelectionLength, + setValue, + unsetValue + ); + } + + [Theory(DisplayName = "SelectionLength is Capped to Text Length")] + [InlineData(30)] + public async Task SelectionLengthIsCapped(int selectionLength) + { + string text = "This is TEXT!"; + + var entry = new Entry + { + Text = text, + SelectionLength = selectionLength + }; + + await ValidatePropertyInitValue( + entry, + () => entry.SelectionLength, + GetPlatformSelectionLength, + text.Length); + } + + [Theory(DisplayName = "Unset SelectionLength is kept at zero at initialization")] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task UnsetSelectionLengthIsKeptAtZeroAtInitialization(string text) + { + var entry = new Entry + { + Text = text + }; + + await ValidatePropertyInitValue( + entry, + () => entry.SelectionLength, + GetPlatformSelectionLength, + 0); } + + [Theory(DisplayName = "SelectionLength is kept at zero on text change by code after initialization" +#if WINDOWS + , Skip = "For some reason, the PlatformView events are not being fired on tests after the handler is created, something is swallowing them. " + + "This was tested on a real app and it's working correctly." #endif + )] + [InlineData("This is a test!!!")] + [InlineData("a")] + [InlineData("")] + [InlineData(" ")] + public async Task SelectionLengthMovesToTheEndOnTextChangeAfterInitialization(string text) + { + var entry = new Entry + { + Text = "Test" + }; + + await SetValueAsync(entry, text, SetPlatformText); + + Assert.Equal(0, entry.SelectionLength); + } } } diff --git a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs index e58f07f480f8..e6612ac553c3 100644 --- a/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs +++ b/src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs @@ -14,17 +14,27 @@ Task GetPlatformText(EntryHandler handler) return InvokeOnMainThreadAsync(() => GetPlatformControl(handler).Text); } - void UpdateCursorStartPosition(EntryHandler entryHandler, int position) + void SetPlatformText(EntryHandler entryHandler, string text) => + GetPlatformControl(entryHandler).Text = text; + + int GetPlatformCursorPosition(EntryHandler entryHandler) { - var control = GetPlatformControl(entryHandler); - var endPosition = control.GetPosition(control.BeginningOfDocument, position); - control.SelectedTextRange = control.GetTextRange(endPosition, endPosition); + var textField = GetPlatformControl(entryHandler); + + if (textField != null && textField.SelectedTextRange != null) + return (int)textField.GetOffsetFromPosition(textField.BeginningOfDocument, textField.SelectedTextRange.Start); + + return -1; } - int GetCursorStartPosition(EntryHandler entryHandler) + int GetPlatformSelectionLength(EntryHandler entryHandler) { - var control = GetPlatformControl(entryHandler); - return (int)control.GetOffsetFromPosition(control.BeginningOfDocument, control.SelectedTextRange.Start); + var textField = GetPlatformControl(entryHandler); + + if (textField != null && textField.SelectedTextRange != null) + return (int)textField.GetOffsetFromPosition(textField.SelectedTextRange.Start, textField.SelectedTextRange.End); + + return -1; } } } diff --git a/src/Controls/tests/DeviceTests/Elements/Frame/FrameTests.cs b/src/Controls/tests/DeviceTests/Elements/Frame/FrameTests.cs new file mode 100644 index 000000000000..18745506687c --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Frame/FrameTests.cs @@ -0,0 +1,65 @@ +using System; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Controls.Handlers.Compatibility; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Hosting; +using Microsoft.Maui.Platform; +using Xunit; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.Frame)] + public partial class FrameTests : HandlerTestBase + { + void SetupBuilder() + { + EnsureHandlerCreated(builder => + { + builder.ConfigureMauiHandlers(handlers => + { + handlers.AddHandler(); + handlers.AddHandler(); + }); + }); + } + + [Fact(DisplayName = "Basic Frame Test")] + public async Task BasicFrameTest() + { + SetupBuilder(); + + var frame = new Frame() + { + HeightRequest = 300, + WidthRequest = 300, + Content = new Label() + { + VerticalOptions = LayoutOptions.Center, + HorizontalOptions = LayoutOptions.Center, + Text = "Hello Frame" + } + }; + + var labelFrame = + await InvokeOnMainThreadAsync(() => + frame.ToHandler(MauiContext).PlatformView.AttachAndRun(async () => + { + (frame as IView).Measure(300, 300); + (frame as IView).Arrange(new Graphics.Rect(0, 0, 300, 300)); + + await OnFrameSetToNotEmpty(frame.Content); + + return frame.Content.Frame; + + }) + ); + + + // validate label is centered in the frame + Assert.True(Math.Abs(((300 - labelFrame.Width) / 2) - labelFrame.X) < 1); + Assert.True(Math.Abs(((300 - labelFrame.Height) / 2) - labelFrame.Y) < 1); + } + } +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Android.cs index 3ddd7457b2b8..2e576f2cf3a8 100644 --- a/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Android.cs +++ b/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Android.cs @@ -6,6 +6,7 @@ using Android.Text; using Android.Widget; using Microsoft.Maui.Controls; +using Microsoft.Maui.Graphics; using Microsoft.Maui.Handlers; using Xunit; @@ -13,6 +14,30 @@ namespace Microsoft.Maui.DeviceTests { public partial class LabelTests { + [Fact] + public async Task FormattedStringSpanTextHasCorrectColorWhenChanges() + { + var expected = Colors.Red; + + var formattedLabel = new Label + { + WidthRequest = 200, + HeightRequest = 50, + FormattedText = new FormattedString + { + Spans = + { + new Span { Text = "short" }, + new Span { Text = " long second string"} + } + }, + }; + + formattedLabel.TextColor = expected; + + await ValidateHasColor(formattedLabel, expected); + } + TextView GetPlatformLabel(LabelHandler labelHandler) => labelHandler.PlatformView; @@ -20,6 +45,16 @@ TextUtils.TruncateAt GetPlatformLineBreakMode(LabelHandler labelHandler) => GetPlatformLabel(labelHandler).Ellipsize; int GetPlatformMaxLines(LabelHandler labelHandler) => - GetPlatformLabel(labelHandler).MaxLines; + GetPlatformLabel(labelHandler).MaxLines; + + Task ValidateHasColor(Label label, Color color, Action action = null) + { + return InvokeOnMainThreadAsync(() => + { + var labelHandler = CreateHandler(label); + action?.Invoke(); + labelHandler.PlatformView.AssertContainsColor(color); + }); + } } -} +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Windows.cs index 5f9ce4f39943..48b203701698 100644 --- a/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Windows.cs +++ b/src/Controls/tests/DeviceTests/Elements/Label/LabelTests.Windows.cs @@ -15,7 +15,7 @@ TextBlock GetPlatformLabel(LabelHandler labelHandler) => // But for now we have to preserve the old Forms behavior and make the tests pass, so // these tests will consider Windows's "LineBreakMode" to be it's text trimming mode TextTrimming GetPlatformLineBreakMode(LabelHandler labelHandler) => - GetPlatformLabel(labelHandler).TextTrimming; + GetPlatformLabel(labelHandler).TextTrimming; int GetPlatformMaxLines(LabelHandler labelHandler) => GetPlatformLabel(labelHandler).MaxLines; diff --git a/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.Android.cs new file mode 100644 index 000000000000..66910896e4df --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.Android.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Maui.Platform; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Controls.Platform; +using Microsoft.Maui.Controls.Handlers.Compatibility; +using Xunit; +using Android.Views; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.ListView)] + public partial class ListViewTests + { + void ValidatePlatformCells(ListView listView) + { + var renderer = (ListViewRenderer)listView.Handler; + + var viewCells = renderer + .Control + .GetChildrenOfType() + .ToList(); + + // This validates that all the cells created/added their correct + // number of viewz + foreach (var cell in viewCells) + { + Assert.Equal(1, cell.ChildCount); + + var renderedView = cell.GetChildAt(0) as ViewGroup; + Assert.Equal(1, renderedView.ChildCount); + } + } + } +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.Windows.cs new file mode 100644 index 000000000000..44ad92d6f3e0 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.Windows.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.ListView)] + public partial class ListViewTests + { + void ValidatePlatformCells(ListView listView) + { + + } + } +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.cs b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.cs index e687df8530d3..1d4ac41c51f4 100644 --- a/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.cs @@ -1,4 +1,5 @@ -using System.Linq; +using System.Collections.ObjectModel; +using System.Linq; using System.Threading.Tasks; using Microsoft.Maui.Controls; using Microsoft.Maui.Controls.Handlers.Compatibility; @@ -26,6 +27,54 @@ void SetupBuilder() }); } + [Fact] + public async Task RemovingFirstItemOfListViewDoesntCrash() + { + SetupBuilder(); + ObservableCollection data = new ObservableCollection() + { + "cat", + "dog", + "catdog" + }; + + var listView = new ListView() + { + ItemTemplate = new DataTemplate(() => + { + return new ViewCell() + { + View = new VerticalStackLayout() + { + new Label() + } + }; + }), + ItemsSource = data + }; + + var layout = new VerticalStackLayout() + { + listView + }; + + await CreateHandlerAndAddToWindow(layout, async (handler) => + { + await Task.Delay(100); + ValidatePlatformCells(listView); + data.RemoveAt(0); + await Task.Delay(100); + ValidatePlatformCells(listView); + data.Insert(1, "new"); + data.Insert(2, "record"); + await Task.Delay(100); + ValidatePlatformCells(listView); + data.RemoveAt(0); + await Task.Delay(100); + ValidatePlatformCells(listView); + }); + } + [Fact(DisplayName = "ReAssigning ListView in VSL Crashes")] public async Task ReAssigninListViewInVSLCrashes() { @@ -37,12 +86,12 @@ public async Task ReAssigninListViewInVSLCrashes() return new ViewCell() { View = new VerticalStackLayout() + { + new Label() { - new Label() - { - Text = "Cat" - } + Text = "Cat" } + } }; }) }; @@ -56,8 +105,10 @@ await CreateHandlerAndAddToWindow(layout, async (handler) => { listView.ItemsSource = Enumerable.Range(1, 1); await Task.Delay(100); + ValidatePlatformCells(listView); listView.ItemsSource = Enumerable.Range(1, 2); await Task.Delay(100); + ValidatePlatformCells(listView); }); } } diff --git a/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.iOS.cs b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.iOS.cs new file mode 100644 index 000000000000..44ad92d6f3e0 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ListView/ListViewTests.iOS.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.ListView)] + public partial class ListViewTests + { + void ValidatePlatformCells(ListView listView) + { + + } + } +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.Windows.cs new file mode 100644 index 000000000000..791241106d87 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.Windows.cs @@ -0,0 +1,86 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; +using Xunit; +using WPanel = Microsoft.UI.Xaml.Controls.Panel; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class ModalTests : HandlerTestBase + { + [Theory] + [InlineData(true)] + [InlineData(false)] + public async Task PushingPageWithBackgroundStacksAndUnStacksCorrectly(bool useColor) + { + SetupBuilder(); + + var navPage = new NavigationPage(new ContentPage()); + + await CreateHandlerAndAddToWindow(new Window(navPage), + async (handler) => + { + var windowRootViewContainer = (WPanel)handler.PlatformView.Content; + ContentPage backgroundColorContentPage = new ContentPage(); + + if (useColor) + backgroundColorContentPage.BackgroundColor = Colors.Purple; + else + backgroundColorContentPage.Background = SolidColorBrush.Purple; + + await navPage.CurrentPage.Navigation.PushModalAsync(backgroundColorContentPage); + + var modalRootView = + backgroundColorContentPage.FindMauiContext().GetNavigationRootManager().RootView; + var rootPageRootView = + navPage.FindMauiContext().GetNavigationRootManager().RootView; + + Assert.Equal(1, windowRootViewContainer.Children.IndexOf(modalRootView)); + Assert.Equal(0, windowRootViewContainer.Children.IndexOf(rootPageRootView)); + + await navPage.CurrentPage.Navigation.PopModalAsync(); + + Assert.Equal(0, windowRootViewContainer.Children.IndexOf(rootPageRootView)); + Assert.DoesNotContain(modalRootView, windowRootViewContainer.Children); + }); + } + + [Fact] + public async Task WindowTitleSetToModalTitleContainer() + { + SetupBuilder(); + + var navPage = new NavigationPage(new ContentPage()); + + await CreateHandlerAndAddToWindow(new Window(navPage), + async (handler) => + { + var rootView = handler.PlatformView.Content; + ContentPage modalPage = new ContentPage(); + + await navPage.CurrentPage.Navigation.PushModalAsync(modalPage); + await OnLoadedAsync(modalPage); + + var customTitleBar = modalPage + .FindMauiContext() + .GetNavigationRootManager() + .AppTitleBarContentControl; + + + var mauiWindow = (MauiWinUIWindow)handler.PlatformView; + Assert.Equal(mauiWindow.MauiCustomTitleBar, customTitleBar); + (handler.VirtualView as Window).Title = "Update Title"; + + var customTitle = mauiWindow.MauiCustomTitleBar.GetDescendantByName("AppTitle"); + + Assert.Equal("Update Title", customTitle.Text); + }); + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.cs b/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.cs index 56011ad732ae..013e2bd06201 100644 --- a/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/Modal/ModalTests.cs @@ -4,11 +4,16 @@ using System.Text; using System.Threading.Tasks; using Microsoft.Maui.Controls; +using Microsoft.Maui.Controls.Handlers; using Microsoft.Maui.DeviceTests.Stubs; using Microsoft.Maui.Handlers; using Microsoft.Maui.Hosting; using Xunit; +#if ANDROID || IOS +using ShellHandler = Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer; +#endif + #if IOS using NavigationViewHandler = Microsoft.Maui.Controls.Handlers.Compatibility.NavigationRenderer; using FlyoutViewHandler = Microsoft.Maui.Controls.Handlers.Compatibility.PhoneFlyoutPageRenderer; @@ -35,58 +40,83 @@ void SetupBuilder() handlers.AddHandler(typeof(TabbedPage), typeof(TabbedViewHandler)); handlers.AddHandler(); handlers.AddHandler(); + + handlers.AddHandler(typeof(Controls.Shell), typeof(ShellHandler)); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); +#if WINDOWS + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); +#endif }); }); } [Theory] [ClassData(typeof(PageTypes))] - public async Task BasicPushAndPop(Page modalPage) + public async Task BasicPushAndPop(Page rootPage, Page modalPage) { SetupBuilder(); - var navPage = new NavigationPage(new ContentPage()); - - await CreateHandlerAndAddToWindow(new Window(navPage), + await CreateHandlerAndAddToWindow(rootPage, async (_) => { - await navPage.CurrentPage.Navigation.PushModalAsync(modalPage); + var currentPage = (rootPage as IPageContainer).CurrentPage; + await currentPage.Navigation.PushModalAsync(modalPage); await OnLoadedAsync(modalPage); - Assert.Equal(1, navPage.Navigation.ModalStack.Count); - await navPage.CurrentPage.Navigation.PopModalAsync(); + Assert.Equal(1, currentPage.Navigation.ModalStack.Count); + await currentPage.Navigation.PopModalAsync(); await OnUnloadedAsync(modalPage); }); - Assert.Equal(0, navPage.Navigation.ModalStack.Count); + Assert.Equal(0, (rootPage as IPageContainer).CurrentPage.Navigation.ModalStack.Count); } class PageTypes : IEnumerable { public IEnumerator GetEnumerator() { - yield return new object[] { - new ContentPage() - }; +#if IOS // Shell currently fails to run in CI for tests + for (int i = 0; i < 1; i++) +#else + for (int i = 0; i < 2; i++) +#endif + { + Func rootPage; + + if (i == 0) + rootPage = () => new NavigationPage(new ContentPage()); + else + rootPage = () => new Shell() { CurrentItem = new ContentPage() }; + + yield return new object[] { + rootPage(), new ContentPage() + }; + + yield return new object[] { + rootPage(), new TabbedPage() + { + Children = + { + new ContentPage(), + new NavigationPage(new ContentPage()) + } + } + }; - yield return new object[] { - new TabbedPage() - { - Children = + yield return new object[] { + rootPage(), new FlyoutPage() { - new ContentPage(), - new NavigationPage(new ContentPage()) + Flyout = new ContentPage() { Title = "Flyout" }, + Detail = new ContentPage() { Title = "Detail" }, } - } - }; + }; - yield return new object[] { - new FlyoutPage() - { - Flyout = new ContentPage() { Title = "Flyout" }, - Detail = new ContentPage() { Title = "Detail" }, - } - }; + } } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => GetEnumerator(); diff --git a/src/Controls/tests/DeviceTests/Elements/NavigationPage/NavigationPageTests.cs b/src/Controls/tests/DeviceTests/Elements/NavigationPage/NavigationPageTests.cs index 81519efbcf4d..98a221631172 100644 --- a/src/Controls/tests/DeviceTests/Elements/NavigationPage/NavigationPageTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/NavigationPage/NavigationPageTests.cs @@ -63,7 +63,7 @@ await CreateHandlerAndAddToWindow(new Window(navPage), async } [Fact(DisplayName = "Set Has Navigation Bar")] - public async Task SettHasNavigationBar() + public async Task SetHasNavigationBar() { SetupBuilder(); var navPage = new NavigationPage(new ContentPage()); diff --git a/src/Controls/tests/DeviceTests/Elements/PlatformBehaviorTests.cs b/src/Controls/tests/DeviceTests/Elements/PlatformBehaviorTests.cs index 037007b633e8..34477ca689f8 100644 --- a/src/Controls/tests/DeviceTests/Elements/PlatformBehaviorTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/PlatformBehaviorTests.cs @@ -14,7 +14,7 @@ using PlatformView = Android.Views.View; #elif WINDOWS using PlatformView = Microsoft.UI.Xaml.FrameworkElement; -#elif NET6_0 || (NETSTANDARD || !PLATFORM) +#elif NET6_0_OR_GREATER || (NETSTANDARD || !PLATFORM) using PlatformView = System.Object; #endif diff --git a/src/Controls/tests/DeviceTests/Elements/ScrollView/ScrollViewTests.cs b/src/Controls/tests/DeviceTests/Elements/ScrollView/ScrollViewTests.cs new file mode 100644 index 000000000000..29d8925711b3 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/ScrollView/ScrollViewTests.cs @@ -0,0 +1,172 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Channels; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Handlers; +using Xunit; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.ScrollView)] + public partial class ScrollViewTests : HandlerTestBase + { + [Theory] + [InlineData(ScrollOrientation.Vertical)] + [InlineData(ScrollOrientation.Both)] + public async Task TestContentSizeChangedHorizontal(ScrollOrientation orientation) + { + var handler = await SetUpScrollView(orientation); + var scroll = handler.VirtualView as ScrollView; + var changed = WatchContentSizeChanged(scroll); + + await InvokeOnMainThreadAsync(async () => + { + await handler.PlatformView.AttachAndRun(async () => + { + var expectedSize = new Size(100, 100); + await AssertContentSize(() => scroll.ContentSize, expectedSize); + + scroll.Content.WidthRequest = 200; + await AssertContentSizeChanged(changed); + + expectedSize = new Size(200, 100); + await AssertContentSize(() => scroll.ContentSize, expectedSize); + }); + }); + } + + [Theory] + [InlineData(ScrollOrientation.Vertical)] + [InlineData(ScrollOrientation.Both)] + public async Task TestContentSizeChangedVertical(ScrollOrientation orientation) + { + var handler = await SetUpScrollView(orientation); + var scroll = handler.VirtualView as ScrollView; + var changed = WatchContentSizeChanged(scroll); + + await InvokeOnMainThreadAsync(async () => + { + await handler.PlatformView.AttachAndRun(async () => + { + var expectedSize = new Size(100, 100); + await AssertContentSize(() => scroll.ContentSize, expectedSize); + + scroll.Content.HeightRequest = 200; + await AssertContentSizeChanged(changed); + + expectedSize = new Size(100, 200); + await AssertContentSize(() => scroll.ContentSize, expectedSize); + }); + + }); + } + + [Theory] + [InlineData(ScrollOrientation.Vertical, 100, 300, 0, 100)] + [InlineData(ScrollOrientation.Horizontal, 0, 100, 100, 300)] + [InlineData(ScrollOrientation.Both, 100, 300, 100, 300)] + public async Task TestScrollContentMargin(ScrollOrientation orientation, int verticalMargin, + int expectedHeight, int horizontalMargin, int expectedWidth) +{ + var handler = await SetUpScrollView(orientation, verticalMargin: verticalMargin, horizontalMargin: horizontalMargin); + var scroll = handler.VirtualView as ScrollView; + + await InvokeOnMainThreadAsync(async () => + { + await handler.PlatformView.AttachAndRun(async () => + { + var expectedSize = new Size(expectedWidth, expectedHeight); + await AssertContentSize(() => scroll.ContentSize, expectedSize); + }); + + }); + } + + static async Task AssertContentSizeChanged(Task changed) + { + await WaitAssert(() => changed.IsCompleted && changed.Result, timeout: 5000, message: "PropertyChanged event with PropertyName 'ContentSize' did not fire").ConfigureAwait(false); + } + + static async Task AssertContentSize(Func actual, Size expected) + { + await WaitAssert(() => CloseEnough(actual(), expected, 0.2), timeout: 5000, message: $"ContentSize was {actual()}, expected {expected}"); + } + + static bool CloseEnough(Size a, Size b, double tolerance) + { + if (System.Math.Abs(a.Width - b.Width) > tolerance) + { + return false; + } + + if (System.Math.Abs(a.Height - b.Height) > tolerance) + { + return false; + } + + return true; + } + + static Task WatchContentSizeChanged(ScrollView scrollView) + { + var tcs = new TaskCompletionSource(); + + void handler(object sender, PropertyChangedEventArgs args) + { + if (args.PropertyName == "ContentSize") + { + scrollView.PropertyChanged -= handler; + tcs.SetResult(true); + } + } + + scrollView.PropertyChanged += handler; + return tcs.Task; + } + + async Task SetUpScrollView(ScrollOrientation orientation, int horizontalMargin = 0, int verticalMargin = 0) + { + var view = new Label + { + WidthRequest = 100, + HeightRequest = 100, + Text = "Hello", + BackgroundColor = Colors.LightBlue, + Margin = new Thickness(horizontalMargin, verticalMargin) + }; + + var scroll = new ScrollView + { + Orientation = orientation, + Content = view + }; + + var labelHandler = await CreateHandlerAsync(view); + return await CreateHandlerAsync(scroll); + } + + static async Task WaitAssert(Func predicate, int interval = 100, int timeout = 1000, string message = "") + { + System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch(); + watch.Start(); + + bool success = predicate(); + + while (!success && watch.ElapsedMilliseconds < timeout) + { + await Task.Delay(interval).ConfigureAwait(false); + success = predicate(); + } + + if (!success) + { + Assert.False(true, message); + } + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutHeaderBehaviorTestCases.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutHeaderBehaviorTestCases.cs new file mode 100644 index 000000000000..84232cf453e4 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutHeaderBehaviorTestCases.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; + +namespace Microsoft.Maui.DeviceTests +{ + public class ShellFlyoutHeaderBehaviorTestCases : IEnumerable + { + public IEnumerator GetEnumerator() + { + foreach (var behavior in Enum.GetValues(typeof(FlyoutHeaderBehavior))) + yield return new object[] { (FlyoutHeaderBehavior)behavior }; + } + + IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutTemplatePartsTestCases.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutTemplatePartsTestCases.cs new file mode 100644 index 000000000000..fff2cca39632 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutTemplatePartsTestCases.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; + +namespace Microsoft.Maui.DeviceTests +{ + public class ShellFlyoutTemplatePartsTestCases : IEnumerable + { + public IEnumerator GetEnumerator() + { + yield return new object[] { (Shell shell, object newContent) => { + shell.FlyoutHeader = newContent; + return "Flyout Header"; + } }; + yield return new object[] { (Shell shell, object newContent) => { + shell.FlyoutContent = newContent; + return "Flyout Content"; + } }; + yield return new object[] { (Shell shell, object newContent) => { + shell.FlyoutFooter = newContent; + return "Flyout Footer"; + } }; + } + + IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutTests.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutTests.cs new file mode 100644 index 000000000000..350eac56cff5 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellFlyoutTests.cs @@ -0,0 +1,259 @@ +#if ANDROID +using System; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; +using Xunit; + +#if ANDROID || IOS +using ShellHandler = Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer; +#endif + +namespace Microsoft.Maui.DeviceTests +{ + public partial class ShellTests : HandlerTestBase + { + [Fact] + public async Task FlyoutHeaderAdaptsToMinimumHeight() + { + await RunShellTest(shell => + { + var layout = new VerticalStackLayout() + { + new Label() { Text = "Flyout Header" } + }; + + layout.MinimumHeightRequest = 30; + + shell.FlyoutHeader = layout; + shell.FlyoutHeaderBehavior = FlyoutHeaderBehavior.CollapseOnScroll; + }, + async (shell, handler) => + { + await OpenFlyout(handler); + var flyoutFrame = GetFrameRelativeToFlyout(handler, shell.FlyoutHeader as IView); + + AssertionExtensions.CloseEnough(flyoutFrame.Height, 30); + }); + } + + [Theory] + [ClassData(typeof(ShellFlyoutHeaderBehaviorTestCases))] + public async Task FlyoutHeaderMinimumHeight(FlyoutHeaderBehavior behavior) + { + await RunShellTest(shell => + { + var layout = new VerticalStackLayout() + { + new Label() { Text = "Flyout Header" } + }; + + shell.FlyoutHeader = layout; + shell.FlyoutHeaderBehavior = behavior; + }, + async (shell, handler) => + { + await OpenFlyout(handler); + var flyoutFrame = GetFrameRelativeToFlyout(handler, shell.FlyoutHeader as IView); + + + if (behavior == FlyoutHeaderBehavior.CollapseOnScroll) + { + // 56 was pulled from the ActionBar height on Android + // and then just used across all three platforms for + // the min height when using collapse on scroll + AssertionExtensions.CloseEnough(56, flyoutFrame.Height); + } + else + { + AssertionExtensions.AssertWithMessage(() => + Assert.True(flyoutFrame.Height < 56), + $"Expected < 56 Actual: {flyoutFrame.Height}" + ); + } + }); + } + + // This is mainly relevant for android because android will auto offset the content + // baed on the height of the flyout header. + [Fact] + public async Task FlyoutContentSetsCorrectBottomPaddingWhenMinHeightIsSetForFlyoutHeader() + { + await RunShellTest(shell => + { + var layout = new VerticalStackLayout() + { + new Label() { Text = "Flyout Header" } + }; + + layout.MinimumHeightRequest = 30; + shell.FlyoutHeader = layout; + + shell.FlyoutFooter = new Label() { Text = "Flyout Footer" }; + shell.FlyoutContent = new VerticalStackLayout() { new Label() { Text = "Flyout Content" } }; + shell.FlyoutHeaderBehavior = FlyoutHeaderBehavior.CollapseOnScroll; + }, + async (shell, handler) => + { + await OpenFlyout(handler); + + var headerFrame = GetFrameRelativeToFlyout(handler, (IView)shell.FlyoutHeader); + var contentFrame = GetFrameRelativeToFlyout(handler, (IView)shell.FlyoutContent); + var footerFrame = GetFrameRelativeToFlyout(handler, (IView)shell.FlyoutFooter); + + // validate footer position + AssertionExtensions.CloseEnough(footerFrame.Y, headerFrame.Height + contentFrame.Height); + }); + } + + [Theory] + [ClassData(typeof(ShellFlyoutHeaderBehaviorTestCases))] + public async Task FlyoutHeaderContentAndFooterAllMeasureCorrectly(FlyoutHeaderBehavior behavior) + { + await RunShellTest(shell => + { + shell.FlyoutHeader = new Label() { Text = "Flyout Header" }; + shell.FlyoutFooter = new Label() { Text = "Flyout Footer" }; + shell.FlyoutContent = new VerticalStackLayout() { new Label() { Text = "Flyout Content" } }; + shell.FlyoutHeaderBehavior = behavior; + }, + async (shell, handler) => + { + await OpenFlyout(handler); + + var flyoutFrame = GetFlyoutFrame(handler); + var headerFrame = GetFrameRelativeToFlyout(handler, (IView)shell.FlyoutHeader); + var contentFrame = GetFrameRelativeToFlyout(handler, (IView)shell.FlyoutContent); + var footerFrame = GetFrameRelativeToFlyout(handler, (IView)shell.FlyoutFooter); + + // validate header position + AssertionExtensions.CloseEnough(0, headerFrame.X, message: "Header X"); + AssertionExtensions.CloseEnough(0, headerFrame.Y, message: "Header Y"); + AssertionExtensions.CloseEnough(flyoutFrame.Width, headerFrame.Width, message: "Header Width"); + + // validate content position + AssertionExtensions.CloseEnough(0, contentFrame.X, message: "Content X"); + AssertionExtensions.CloseEnough(headerFrame.Height, contentFrame.Y, epsilon: 0.5, message: "Content Y"); + AssertionExtensions.CloseEnough(flyoutFrame.Width, contentFrame.Width, message: "Content Width"); + + // validate footer position + AssertionExtensions.CloseEnough(0, footerFrame.X, message: "Footer X"); + AssertionExtensions.CloseEnough(headerFrame.Height + contentFrame.Height, footerFrame.Y, epsilon: 0.5, message: "Footer Y"); + AssertionExtensions.CloseEnough(flyoutFrame.Width, footerFrame.Width, message: "Footer Width"); + + //All three views should measure to the height of the flyout + AssertionExtensions.CloseEnough(headerFrame.Height + contentFrame.Height + footerFrame.Height, flyoutFrame.Height, epsilon: 0.5, message: "Total Height"); + }); + } + + [Fact] + public async Task FlyoutHeaderCollapsesOnScroll() + { + await RunShellTest(shell => + { + Enumerable.Range(0, 100) + .ForEach(i => + { + shell.FlyoutHeaderBehavior = FlyoutHeaderBehavior.CollapseOnScroll; + shell.Items.Add(new FlyoutItem() { Title = $"FlyoutItem {i}", Items = { new ContentPage() } }); + }); + + var layout = new VerticalStackLayout() + { + new Label() + { + Text = "Header Content" + } + }; + + layout.HeightRequest = 250; + + shell.FlyoutHeader = new ScrollView() + { + MinimumHeightRequest = 100, + Content = layout + }; + }, + async (shell, handler) => + { + await OpenFlyout(handler); + await Task.Delay(10); + + var initialBox = (shell.FlyoutHeader as IView).GetBoundingBox(); + + AssertionExtensions.CloseEnough(250, initialBox.Height, 0.3); + + await ScrollFlyoutToBottom(handler); + + var scrolledBox = (shell.FlyoutHeader as IView).GetBoundingBox(); + AssertionExtensions.CloseEnough(100, scrolledBox.Height, 0.3); + }); + } + + [Theory] + [ClassData(typeof(ShellFlyoutTemplatePartsTestCases))] + public async Task FlyoutCustomContentMargin(Func shellPart) + { + var baselineContent = new VerticalStackLayout() { new Label() { Text = "Flyout Layout Part" } }; + Rect frameWithoutMargin = Rect.Zero; + + // determine the location of the templated content on the screen without a margin + await RunShellTest(shell => + { + _ = shellPart(shell, baselineContent); + }, + async (shell, handler) => + { + await OpenFlyout(handler); + frameWithoutMargin = GetFrameRelativeToFlyout(handler, baselineContent); + }); + + var content = new VerticalStackLayout() { new Label() { Text = "Flyout Layout Part" } }; + string partTesting = string.Empty; + await RunShellTest(shell => + { + content.Margin = new Thickness(20, 30, 0, 30); + partTesting = shellPart(shell, content); + }, + async (shell, handler) => + { + await OpenFlyout(handler); + + var frameWithMargin = GetFrameRelativeToFlyout(handler, content); + var leftDiff = Math.Abs(Math.Abs(frameWithMargin.Left - frameWithoutMargin.Left) - 20); + var verticalDiff = Math.Abs(Math.Abs(frameWithMargin.Top - frameWithoutMargin.Top) - 30); + + AssertionExtensions.AssertWithMessage(() => + Assert.True(leftDiff < 0.2), + $"{partTesting} Left Margin Incorrect. Frame w/ margin: {frameWithMargin}. Frame w/o marin : {frameWithoutMargin}" + ); + + AssertionExtensions.AssertWithMessage(() => + Assert.True(verticalDiff < 0.2), + $"{partTesting} Top Margin Incorrect. Frame w/ margin: {frameWithMargin}. Frame w/o marin : {frameWithoutMargin}" + ); + }); + } + + async Task RunShellTest(Action action, Func testAction) + { + SetupBuilder(); + var shell = await CreateShellAsync((shell) => + { + action(shell); + if (shell.Items.Count == 0) + shell.CurrentItem = new FlyoutItem() { Items = { new ContentPage() } }; + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await OnNavigatedToAsync(shell.CurrentPage); + await testAction(shell, handler); + }); + } + } +} +#endif \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Android.cs index 71deae53c025..7e17e8d52025 100644 --- a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Android.cs +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Android.cs @@ -4,13 +4,21 @@ using System.Text; using System.Threading.Tasks; using Android.Views; +using AndroidX.AppCompat.Widget; using AndroidX.DrawerLayout.Widget; +using Google.Android.Material.AppBar; using Microsoft.Maui.Controls; using Microsoft.Maui.Controls.Handlers.Compatibility; using Microsoft.Maui.Controls.Platform.Compatibility; using Microsoft.Maui.Platform; +using Microsoft.Maui.Controls.Platform; using Xunit; using AView = Android.Views.View; +using AndroidX.CoordinatorLayout.Widget; +using AndroidX.Core.View; +using static Microsoft.Maui.Controls.Platform.Compatibility.ShellFlyoutTemplatedContentRenderer; +using Microsoft.Maui.DeviceTests.Stubs; +using Microsoft.Maui.Handlers; namespace Microsoft.Maui.DeviceTests { @@ -69,7 +77,7 @@ await CreateHandlerAndAddToWindow(shell, async (handler) => { await Task.Delay(100); var dl = GetDrawerLayout(handler); - var flyoutContainer = GetRecyclerView(handler); + var flyoutContainer = GetFlyoutMenuReyclerView(handler); Assert.True(flyoutContainer.MeasuredWidth > 0); Assert.True(flyoutContainer.MeasuredHeight > 0); @@ -142,24 +150,156 @@ await CreateHandlerAndAddToWindow(shell, async (handler) => { await Task.Delay(100); var dl = GetDrawerLayout(handler); - await OpenDrawerLayout(handler); + await OpenFlyout(handler); - var flyoutContainer = GetRecyclerView(handler); + var flyoutContainer = GetFlyoutMenuReyclerView(handler); Assert.True(flyoutContainer.MeasuredWidth > 0); Assert.True(flyoutContainer.MeasuredHeight > 0); }); } - protected Task OpenDrawerLayout(ShellRenderer shellRenderer, TimeSpan? timeOut = null) + [Fact] + public async Task FlyoutItemsRenderWhenFlyoutHeaderIsSet() { + SetupBuilder(); + VerticalStackLayout header = new VerticalStackLayout() + { + new Label() { Text = "Hello there"} + }; + + var shell = await CreateShellAsync(shell => + { + shell.CurrentItem = new FlyoutItem() { Items = { new ContentPage() }, Title = "Flyout Item" }; + shell.FlyoutHeader = header; + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await Task.Delay(100); + var dl = GetDrawerLayout(handler); + await OpenFlyout(handler); + + var flyoutContainer = GetFlyoutMenuReyclerView(handler); + + Assert.True(flyoutContainer.MeasuredWidth > 0); + Assert.True(flyoutContainer.MeasuredHeight > 0); + }); + } + + [Fact] + public async Task FlyoutHeaderRendersCorrectSizeWithFlyoutContentSet() + { + SetupBuilder(); + VerticalStackLayout header = new VerticalStackLayout() + { + new Label() { Text = "Flyout Header"} + }; + + var shell = await CreateShellAsync(shell => + { + shell.CurrentItem = new FlyoutItem() { Items = { new ContentPage() }, Title = "Flyout Item" }; + shell.FlyoutHeader = header; + + shell.FlyoutContent = new VerticalStackLayout() + { + new Label(){ Text = "Flyout Content"} + }; + + shell.FlyoutFooter = new VerticalStackLayout() + { + new Label(){ Text = "Flyout Footer"} + }; + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await Task.Delay(100); + var headerPlatformView = header.ToPlatform(); + var appBar = headerPlatformView.GetParentOfType(); + Assert.Equal(appBar.MeasuredHeight, headerPlatformView.MeasuredHeight); + }); + } + + + [Fact] + public async Task SwappingOutAndroidContextDoesntCrash() + { + SetupBuilder(); + + var shell = await CreateShellAsync(shell => + { + shell.Items.Add(new FlyoutItem() { Route = "FlyoutItem1", Items = { new ContentPage() }, Title = "Flyout Item" }); + shell.Items.Add(new FlyoutItem() { Route = "FlyoutItem2", Items = { new ContentPage() }, Title = "Flyout Item" }); + }); + + var window = new Controls.Window(shell); + var mauiContextStub1 = new ContextStub(MauiApp.Services); + var activity = mauiContextStub1.GetActivity(); + mauiContextStub1.Context = new ContextThemeWrapper(activity, Resource.Style.Maui_MainTheme_NoActionBar); + + await CreateHandlerAndAddToWindow(window, async (handler) => + { + await OnLoadedAsync(shell.CurrentPage); + await OnNavigatedToAsync(shell.CurrentPage); + await Task.Delay(100); + await shell.GoToAsync("//FlyoutItem2"); + }, mauiContextStub1); + + var mauiContextStub2 = new ContextStub(MauiApp.Services); + mauiContextStub2.Context = new ContextThemeWrapper(activity, Resource.Style.Maui_MainTheme_NoActionBar); + + await CreateHandlerAndAddToWindow(window, async (handler) => + { + await OnLoadedAsync(shell.CurrentPage); + await OnNavigatedToAsync(shell.CurrentPage); + await Task.Delay(100); + await shell.GoToAsync("//FlyoutItem1"); + await shell.GoToAsync("//FlyoutItem2"); + }, mauiContextStub2); + } + + protected AView GetFlyoutPlatformView(ShellRenderer shellRenderer) + { + var drawerLayout = GetDrawerLayout(shellRenderer); + return drawerLayout.GetChildrenOfType().First(); + } + + internal Graphics.Rect GetFlyoutFrame(ShellRenderer shellRenderer) + { + var platformView = GetFlyoutPlatformView(shellRenderer); + var context = platformView.Context; + + return new Graphics.Rect(0, 0, + context.FromPixels(platformView.MeasuredWidth), + context.FromPixels(platformView.MeasuredHeight)); + } + + internal Graphics.Rect GetFrameRelativeToFlyout(ShellRenderer shellRenderer, IView view) + { + var platformView = (view.Handler as IPlatformViewHandler).PlatformView; + return platformView.GetFrameRelativeTo(GetFlyoutPlatformView(shellRenderer)); + } + + protected async Task OpenFlyout(ShellRenderer shellRenderer, TimeSpan? timeOut = null) + { + var flyoutView = GetFlyoutPlatformView(shellRenderer); var drawerLayout = GetDrawerLayout(shellRenderer); - drawerLayout.Open(); + + if (!drawerLayout.FlyoutFirstDrawPassFinished) + await Task.Delay(10); + + var hamburger = + GetPlatformToolbar((IPlatformViewHandler)shellRenderer).GetChildrenOfType().FirstOrDefault() ?? + throw new InvalidOperationException("Unable to find Drawer Button"); + timeOut = timeOut ?? TimeSpan.FromSeconds(2); + TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); drawerLayout.DrawerOpened += OnDrawerOpened; + hamburger.PerformClick(); - return taskCompletionSource.Task.WaitAsync(timeOut.Value); + await taskCompletionSource.Task.WaitAsync(timeOut.Value); void OnDrawerOpened(object sender, DrawerLayout.DrawerOpenedEventArgs e) { @@ -168,13 +308,44 @@ void OnDrawerOpened(object sender, DrawerLayout.DrawerOpenedEventArgs e) } } - DrawerLayout GetDrawerLayout(ShellRenderer shellRenderer) + protected async Task ScrollFlyoutToBottom(ShellRenderer shellRenderer) + { + var flyoutItems = GetFlyoutMenuReyclerView(shellRenderer); + + TaskCompletionSource result = new TaskCompletionSource(); + flyoutItems.ScrollChange += OnFlyoutItemsScrollChange; + flyoutItems.ScrollToPosition(flyoutItems.GetAdapter().ItemCount - 1); + await result.Task.WaitAsync(TimeSpan.FromSeconds(2)); + await Task.Delay(10); + + void OnFlyoutItemsScrollChange(object sender, AView.ScrollChangeEventArgs e) + { + flyoutItems.ScrollChange -= OnFlyoutItemsScrollChange; + result.TrySetResult(true); + } + + // The appbar layout won't offset if you programmatically scroll the RecyclerView + // I haven't found a way to match the exact behavior when you touch and scroll + // I think we'd have to actually send touch events through adb + + var coordinatorLayout = flyoutItems.Parent.GetParentOfType(); + var appbarLayout = coordinatorLayout.GetFirstChildOfType(); + var clLayoutParams = appbarLayout.LayoutParameters as CoordinatorLayout.LayoutParams; + var behavior = clLayoutParams.Behavior as AppBarLayout.Behavior; + var headerContainer = appbarLayout.GetFirstChildOfType(); + + var verticalOffset = flyoutItems.ComputeVerticalScrollOffset(); + behavior.OnNestedPreScroll(coordinatorLayout, appbarLayout, flyoutItems, 0, verticalOffset, new int[2], ViewCompat.TypeTouch); + await Task.Delay(10); + } + + ShellFlyoutRenderer GetDrawerLayout(ShellRenderer shellRenderer) { IShellContext shellContext = shellRenderer; - return shellContext.CurrentDrawerLayout; + return (ShellFlyoutRenderer)shellContext.CurrentDrawerLayout; } - RecyclerViewContainer GetRecyclerView(ShellRenderer shellRenderer) + RecyclerViewContainer GetFlyoutMenuReyclerView(ShellRenderer shellRenderer) { IShellContext shellContext = shellRenderer; DrawerLayout dl = shellContext.CurrentDrawerLayout; diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Windows.cs index 2e627c9c1b98..492419fe5c0c 100644 --- a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Windows.cs +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.Windows.cs @@ -234,7 +234,7 @@ await CreateHandlerAndAddToWindow(shell, (handler) => return Task.CompletedTask; }); } - + [Fact(DisplayName = "Single Shell Section with Multiple Children")] public async Task SingleShellSectionWithMultipleChildren() { @@ -437,5 +437,39 @@ await CreateHandlerAndAddToWindow(shell, (handler) => return Task.CompletedTask; }); } + + protected Task OpenFlyout(ShellHandler shellRenderer, TimeSpan? timeOut = null) + { + throw new NotImplementedException(); + } + + internal Graphics.Rect GetFrameRelativeToFlyout(ShellHandler shellRenderer, IView view) + { + throw new NotImplementedException(); + } + + internal Graphics.Rect GetFlyoutFrame(ShellHandler shellRenderer) + { + throw new NotImplementedException(); + } + + // this is only relevant on windows where the title/backbutton aren't in the same + // area + [Fact(DisplayName = "Shell Toolbar not visible when only back button is present")] + public async Task ShellToolbarNotVisibleWhenOnlyBackButtonIsPresent() + { + SetupBuilder(); + + var shell = await CreateShellAsync((shell) => + { + shell.CurrentItem = new ContentPage(); + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await shell.Navigation.PushAsync(new ContentPage()); + Assert.False(IsNavigationBarVisible(handler)); + }); + } } -} +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.cs index 3c21cc65819c..347a455bfc43 100644 --- a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.cs @@ -1,5 +1,4 @@ -#if !IOS -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -40,6 +39,7 @@ void SetupBuilder() handlers.AddHandler(); handlers.AddHandler(); handlers.AddHandler(); + handlers.AddHandler(); #if WINDOWS handlers.AddHandler(); handlers.AddHandler(); @@ -49,6 +49,141 @@ void SetupBuilder() }); } + [Fact(DisplayName = "Appearing Fires Before NavigatedTo")] + public async Task AppearingFiresBeforeNavigatedTo() + { + SetupBuilder(); + var contentPage = new ContentPage(); + int contentPageAppearingFired = 0; + int navigatedToFired = 0; + int shellNavigatedToFired = 0; + + contentPage.Appearing += (_, _) => + { + contentPageAppearingFired++; + Assert.Equal(0, navigatedToFired); + Assert.Equal(0, shellNavigatedToFired); + }; + + contentPage.NavigatedTo += (_, _) => + { + navigatedToFired++; + Assert.Equal(1, contentPageAppearingFired); + }; + + Shell shell = await CreateShellAsync(shell => + { + shell.Navigated += (_, _) => + { + Assert.Equal(1, contentPageAppearingFired); + shellNavigatedToFired++; + + }; + + shell.Items.Add(new TabBar() + { + Items = + { + new ShellContent() + { + ContentTemplate = new DataTemplate(() => contentPage) + } + } + }); + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await OnFrameSetToNotEmpty(contentPage); + Assert.Equal(1, contentPageAppearingFired); + Assert.Equal(1, shellNavigatedToFired); + Assert.Equal(1, navigatedToFired); + }); + } + + [Fact(DisplayName = "Navigating During Navigated Doesnt ReFire Appearing")] + public async Task NavigatingDuringNavigatedDoesntReFireAppearing() + { + SetupBuilder(); + var contentPage = new ContentPage(); + var secondContentPage = new ContentPage(); + int contentPageAppearingFired = 0; + int navigatedToFired = 0; + + int secondContentPageAppearingFired = 0; + int secondNavigatedToFired = 0; + + TaskCompletionSource finishedSecondNavigation = new TaskCompletionSource(); + contentPage.Appearing += (_, _) => + { + contentPageAppearingFired++; + }; + + secondContentPage.Appearing += (_, _) => + { + secondContentPageAppearingFired++; + Assert.Equal(0, secondNavigatedToFired); + }; + + secondContentPage.NavigatedTo += (_, _) => + { + secondNavigatedToFired++; + }; + + Shell shell = null; + contentPage.NavigatedTo += async (_, _) => + { + navigatedToFired++; + await shell.Navigation.PushAsync(secondContentPage); + finishedSecondNavigation.SetResult(true); + }; + + shell = await CreateShellAsync(shell => + { + shell.Items.Add(new TabBar() + { + Items = + { + new ShellContent() + { + ContentTemplate = new DataTemplate(() => contentPage) + } + } + }); + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await finishedSecondNavigation.Task.WaitAsync(TimeSpan.FromSeconds(2)); + + Assert.Equal(1, contentPageAppearingFired); + Assert.Equal(1, navigatedToFired); + Assert.Equal(1, secondContentPageAppearingFired); + Assert.Equal(1, secondNavigatedToFired); + }); + } + +#if !IOS + [Fact(DisplayName = "Swap Shell Root Page for NavigationPage")] + public async Task SwapShellRootPageForNavigationPage() + { + SetupBuilder(); + var shell = await CreateShellAsync(shell => + { + shell.CurrentItem = new ContentPage(); + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + var newPage = new ContentPage(); + (handler.VirtualView as Window).Page = new NavigationPage(newPage); + await OnNavigatedToAsync(newPage); + await OnFrameSetToNotEmpty(newPage); + Assert.True(newPage.Frame.Height > 0); + }); + } +#endif + [Fact(DisplayName = "FlyoutContent Renderers When FlyoutBehavior Starts As Locked")] public async Task FlyoutContentRenderersWhenFlyoutBehaviorStartsAsLocked() { @@ -171,6 +306,45 @@ await CreateHandlerAndAddToWindow(shell, async (handler) => }); } +#if !IOS + [Fact(DisplayName = "Correctly Adjust to Making Currently Visible Shell Page Invisible")] + public async Task CorrectlyAdjustToMakingCurrentlyVisibleShellPageInvisible() + { + SetupBuilder(); + + var page1 = new ContentPage(); + var page2 = new ContentPage(); + + var shell = await CreateShellAsync((shell) => + { + var tabBar = new TabBar() + { + Items = + { + new ShellContent(){ Content = page1 }, + new ShellContent(){ Content = page2 }, + } + }; + + shell.Items.Add(tabBar); + }); + + await CreateHandlerAndAddToWindow(shell, async (handler) => + { + await OnNavigatedToAsync(page1); + shell.CurrentItem = page2; + await OnNavigatedToAsync(page2); + page2.IsVisible = false; + await OnNavigatedToAsync(page1); + Assert.Equal(shell.CurrentPage, page1); + page2.IsVisible = true; + shell.CurrentItem = page2; + await OnNavigatedToAsync(page2); + Assert.Equal(shell.CurrentPage, page2); + }); + } +#endif + [Fact(DisplayName = "Empty Shell")] public async Task DetailsViewUpdates() { @@ -368,5 +542,4 @@ protected Task CreateShellAsync(Action action) => return value; }); } -} -#endif \ No newline at end of file +} \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.iOS.cs b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.iOS.cs index e53ad18bb07b..caa04c5c7055 100644 --- a/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.iOS.cs +++ b/src/Controls/tests/DeviceTests/Elements/Shell/ShellTests.iOS.cs @@ -1,5 +1,4 @@ -#if !IOS -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -102,7 +101,7 @@ void ShellNavigated(object sender, ShellNavigatedEventArgs e) } }); } - + [Fact(DisplayName = "Clicking BackButton Fires Correct Navigation Events")] public async Task ShellWithFlyoutDisabledDoesntRenderFlyout() { @@ -207,4 +206,3 @@ public ModalShellPage() } } } -#endif diff --git a/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.Android.cs b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.Android.cs new file mode 100644 index 000000000000..5271b304853b --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.Android.cs @@ -0,0 +1,15 @@ +using Android.Views; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class TemplatedViewTests + { + static int GetChildCount(ContentViewHandler contentViewHandler) => + contentViewHandler.PlatformView.ChildCount; + + static View GetChild(ContentViewHandler contentViewHandler, int index = 0) => + contentViewHandler.PlatformView.GetChildAt(index); + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.Windows.cs new file mode 100644 index 000000000000..1b19ff2300ba --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.Windows.cs @@ -0,0 +1,15 @@ +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; +using Microsoft.UI.Xaml; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class TemplatedViewTests + { + static int GetChildCount(ContentViewHandler contentViewHandler) => + contentViewHandler.PlatformView.Children.Count; + + static UIElement GetChild(ContentViewHandler contentViewHandler, int index = 0) => + contentViewHandler.PlatformView.Children[index]; + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.cs b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.cs new file mode 100644 index 000000000000..3a8b4437d85f --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.cs @@ -0,0 +1,68 @@ +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Hosting; +using Xunit; + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.TemplatedView)] + public partial class TemplatedViewTests : HandlerTestBase + { + public TemplatedViewTests() + { + EnsureHandlerCreated(builder => + { + builder.ConfigureMauiHandlers(handlers => + { + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + }); + }); + } + + [Fact] + public async Task ControlTemplateInitializesCorrectly() + { + var content = new Label { Text = "Content 1" }; + var templatedView = new TemplatedView + { + ControlTemplate = new ControlTemplate(() => content) + }; + + var handler = await CreateHandlerAsync(templatedView); + + await InvokeOnMainThreadAsync(() => + { + Assert.Equal(1, GetChildCount(handler)); + Assert.Equal(content.Handler.PlatformView, GetChild(handler)); + }); + } + + [Fact] + public async Task ControlTemplateCanBeReplacedCorrectly() + { + var content1 = new Label { Text = "Content 1" }; + var controlTemplate1 = new ControlTemplate(() => content1); + + var content2 = new Label { Text = "Content 2" }; + var controlTemplate2 = new ControlTemplate(() => content2); + + var templatedView = new TemplatedView { ControlTemplate = controlTemplate1 }; + + var handler = await CreateHandlerAsync(templatedView); + + await InvokeOnMainThreadAsync(() => + { + Assert.Equal(1, GetChildCount(handler)); + Assert.Equal(content1.Handler.PlatformView, GetChild(handler)); + + templatedView.ControlTemplate = controlTemplate2; + + Assert.Equal(1, GetChildCount(handler)); + Assert.Equal(content2.Handler.PlatformView, GetChild(handler)); + }); + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.iOS.cs b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.iOS.cs new file mode 100644 index 000000000000..60a607f7f92b --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/TemplatedView/TemplatedViewTests.iOS.cs @@ -0,0 +1,14 @@ +using Microsoft.Maui.Handlers; +using UIKit; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class TemplatedViewTests + { + static int GetChildCount(ContentViewHandler contentViewHandler) => + contentViewHandler.PlatformView.Subviews.Length; + + static UIView GetChild(ContentViewHandler contentViewHandler, int index = 0) => + contentViewHandler.PlatformView.Subviews[index]; + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/VisualElementTreeTests.cs b/src/Controls/tests/DeviceTests/Elements/VisualElementTreeTests.cs new file mode 100644 index 000000000000..3b964fb0b1ad --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/VisualElementTreeTests.cs @@ -0,0 +1,98 @@ +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Controls.Handlers; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Hosting; +using Microsoft.Maui.Platform; +using Xunit; +#if ANDROID || IOS +using ShellHandler = Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer; +#endif + +namespace Microsoft.Maui.DeviceTests +{ + [Category(TestCategory.VisualElementTree)] +#if ANDROID || IOS + [Collection(HandlerTestBase.RunInNewWindowCollection)] +#endif + public partial class VisualElementTreeTests : HandlerTestBase + { + void SetupBuilder() + { + EnsureHandlerCreated(builder => + { + builder.ConfigureMauiHandlers(handlers => + { + handlers.AddHandler(typeof(Controls.Shell), typeof(ShellHandler)); +#if IOS + handlers.AddHandler(typeof(Controls.NavigationPage), typeof(Controls.Handlers.Compatibility.NavigationRenderer)); +#else + handlers.AddHandler(typeof(Controls.NavigationPage), typeof(NavigationViewHandler)); +#endif + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); +#if WINDOWS + handlers.AddHandler(); + handlers.AddHandler(); + handlers.AddHandler(); +#endif + }); + }); + } + + [Fact] + public async Task GetVisualTreeElements() + { + SetupBuilder(); + var label = new Label() { Text = "Find Me" }; + var page = new ContentPage() { Title = "Title Page" }; + page.Content = new VerticalStackLayout() + { + label + }; + + var rootPage = await InvokeOnMainThreadAsync(() => + new NavigationPage(page) + ); + + await CreateHandlerAndAddToWindow(rootPage, async handler => + { + await OnFrameSetToNotEmpty(label); + var locationOnScreen = label.GetLocationOnScreen().Value; + var labelFrame = label.Frame; + var window = rootPage.Window; + + // Find label at the top left corner + var topLeft = new Graphics.Point(locationOnScreen.X + 1, locationOnScreen.Y + 1); + + AssertionExtensions.AssertWithMessage( + () => Assert.Contains(label, window.GetVisualTreeElements(topLeft)), + $"Unable to find label using top left coordinate: {topLeft} with label location: {label.GetBoundingBox()}"); + + // find label at the bottom right corner + var bottomRight = new Graphics.Point( + locationOnScreen.X + labelFrame.Width - 1, + locationOnScreen.Y + labelFrame.Height - 1); + + AssertionExtensions.AssertWithMessage( + () => Assert.Contains(label, window.GetVisualTreeElements(bottomRight)), + $"Unable to find label using bottom right coordinate: {bottomRight} with label location: {label.GetBoundingBox()}"); + + // Ensure that the point directly outside the bounds of the label doesn't + // return the label + Assert.DoesNotContain(label, window.GetVisualTreeElements( + locationOnScreen.X + labelFrame.Width + 1, + locationOnScreen.Y + labelFrame.Height + 1 + )); + + }); + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.Windows.cs b/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.Windows.cs new file mode 100644 index 000000000000..58485344c0b5 --- /dev/null +++ b/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.Windows.cs @@ -0,0 +1,61 @@ +using System.Threading.Tasks; +using Microsoft.Maui.Controls; +using Microsoft.Maui.Platform; +using Microsoft.Maui.Handlers; +using WPanel = Microsoft.UI.Xaml.Controls.Panel; +using Xunit; +using System.Linq; +using Microsoft.Maui.Graphics.Win2D; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class WindowTests : HandlerTestBase + { + [Fact] + public async Task AdornerLayerAdded() + { + SetupBuilder(); + + var mainPage = new NavigationPage(new ContentPage()); + + await CreateHandlerAndAddToWindow(mainPage, (handler) => + { + var windowRootViewContainer = (WPanel)handler.PlatformView.Content; + var overlayView = + windowRootViewContainer + .Children + .OfType() + .SingleOrDefault(); + + Assert.NotNull(overlayView); + Assert.Equal(overlayView, windowRootViewContainer.Children.Last()); + return Task.CompletedTask; + }); + } + + [Fact(DisplayName = "Swapping Root Page Removes Previous Page from WindowRootViewContainer")] + public async Task SwappingRootPageRemovesPreviousPageFromWindowRootViewContainer() + { + SetupBuilder(); + + var mainPage = new Shell() { CurrentItem = new ContentPage() }; + var swappedInMainPage = new NavigationPage(new ContentPage()); + + await CreateHandlerAndAddToWindow(mainPage, async (handler) => + { + var windowRootViewContainer = (WPanel)handler.PlatformView.Content; + var countBeforePageSwap = windowRootViewContainer.Children.Count; + + var mainPageRootView = + mainPage.FindMauiContext().GetNavigationRootManager().RootView; + + (handler.VirtualView as Window).Page = swappedInMainPage; + await OnNavigatedToAsync(swappedInMainPage.CurrentPage); + await OnFrameSetToNotEmpty(swappedInMainPage.CurrentPage); + + var countAfterPageSwap = windowRootViewContainer.Children.Count; + Assert.Equal(countBeforePageSwap, countAfterPageSwap); + }); + } + } +} diff --git a/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.cs b/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.cs index 14a5f7decb55..c9fcb28980e3 100644 --- a/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.cs @@ -65,15 +65,15 @@ await CreateHandlerAndAddToWindow(window, async (handler) => var contentPage = new ContentPage() { ToolbarItems = - { - toolbarItem - } + { + toolbarItem + } }; var shell = new Shell() { CurrentItem = contentPage }; window.Page = shell; - + await OnLoadedAsync(shell); await OnLoadedAsync(shell.CurrentPage); diff --git a/src/Controls/tests/DeviceTests/HandlerTestBase.Android.cs b/src/Controls/tests/DeviceTests/HandlerTestBase.Android.cs index 6348d85e8ace..4dc5b3ba73e0 100644 --- a/src/Controls/tests/DeviceTests/HandlerTestBase.Android.cs +++ b/src/Controls/tests/DeviceTests/HandlerTestBase.Android.cs @@ -10,12 +10,14 @@ using AndroidX.Fragment.App; using Google.Android.Material.AppBar; using Microsoft.Maui.Controls; +using Microsoft.Maui.DeviceTests.Stubs; +using Microsoft.Maui.Handlers; using Microsoft.Maui.Platform; +using Xunit; using ALayoutInflater = Android.Views.LayoutInflater; using AView = Android.Views.View; using AViewGroup = Android.Views.ViewGroup; using ImportantForAccessibility = Android.Views.ImportantForAccessibility; -using Xunit; namespace Microsoft.Maui.DeviceTests { @@ -37,15 +39,15 @@ public AView GetSemanticPlatformElement(IViewHandler viewHandler) } static Drawable _decorDrawable; - Task SetupWindowForTests(IWindow window, Func runTests) + Task SetupWindowForTests(IWindow window, Func runTests, IMauiContext mauiContext = null) where THandler : class, IElementHandler { + mauiContext ??= MauiContext; return InvokeOnMainThreadAsync(async () => { AViewGroup rootView = MauiContext.Context.GetActivity().Window.DecorView as AViewGroup; _decorDrawable ??= rootView.Background; var linearLayoutCompat = new LinearLayoutCompat(MauiContext.Context); - var fragmentManager = MauiContext.GetFragmentManager(); var viewFragment = new WindowTestFragment(MauiContext, window); @@ -113,7 +115,7 @@ public bool ToolbarItemsMatch( return true; } - + protected AView GetTitleView(IElementHandler handler) { var toolbar = GetPlatformToolbar(handler); @@ -127,6 +129,11 @@ protected AView GetTitleView(IElementHandler handler) protected MaterialToolbar GetPlatformToolbar(IElementHandler handler) { + if (handler is IWindowHandler wh) + { + handler = wh.VirtualView.Content.Handler; + } + if (handler is Microsoft.Maui.Controls.Handlers.Compatibility.ShellRenderer sr) { var shell = handler.VirtualView as Shell; @@ -196,15 +203,14 @@ public WindowTestFragment(IMauiContext mauiContext, IWindow window) public override AView OnCreateView(ALayoutInflater inflater, AViewGroup container, Bundle savedInstanceState) { ScopedMauiContext = _mauiContext.MakeScoped(layoutInflater: inflater, fragmentManager: ChildFragmentManager, registerNewNavigationRoot: true); - _ = _window.ToHandler(ScopedMauiContext); - - var rootView = ScopedMauiContext.GetNavigationRootManager().RootView; + var handler = (WindowHandlerStub)_window.ToHandler(ScopedMauiContext); + var decorView = RequireActivity().Window.DecorView; - rootView.LayoutParameters = new LinearLayoutCompat.LayoutParams(decorView.MeasuredWidth, decorView.MeasuredHeight); + handler.PlatformViewUnderTest.LayoutParameters = new FitWindowsFrameLayout.LayoutParams(AViewGroup.LayoutParams.MatchParent, AViewGroup.LayoutParams.MatchParent); FakeActivityRootView = new FakeActivityRootView(ScopedMauiContext.Context); - FakeActivityRootView.LayoutParameters = new LinearLayoutCompat.LayoutParams(decorView.MeasuredWidth, decorView.MeasuredHeight); - FakeActivityRootView.AddView(rootView); + FakeActivityRootView.LayoutParameters = new LinearLayoutCompat.LayoutParams(AViewGroup.LayoutParams.MatchParent, AViewGroup.LayoutParams.MatchParent); + FakeActivityRootView.AddView(handler.PlatformViewUnderTest); return FakeActivityRootView; } @@ -222,7 +228,7 @@ public override void OnDestroy() } } - public class FakeActivityRootView : LinearLayoutCompat + public class FakeActivityRootView : FitWindowsFrameLayout { public FakeActivityRootView(Context context) : base(context) { diff --git a/src/Controls/tests/DeviceTests/HandlerTestBase.Windows.cs b/src/Controls/tests/DeviceTests/HandlerTestBase.Windows.cs index 66c067308d5e..79938952cf25 100644 --- a/src/Controls/tests/DeviceTests/HandlerTestBase.Windows.cs +++ b/src/Controls/tests/DeviceTests/HandlerTestBase.Windows.cs @@ -24,12 +24,13 @@ protected bool GetIsAccessibilityElement(IViewHandler viewHandler) => == AccessibilityView.Content; - Task SetupWindowForTests(IWindow window, Func runTests) + Task SetupWindowForTests(IWindow window, Func runTests, IMauiContext mauiContext = null) where THandler : class, IElementHandler { + mauiContext ??= MauiContext; return InvokeOnMainThreadAsync(async () => { - var applicationContext = MauiContext.MakeApplicationScope(UI.Xaml.Application.Current); + var applicationContext = mauiContext.MakeApplicationScope(UI.Xaml.Application.Current); var appStub = new MauiAppNewWindowStub(window); UI.Xaml.Application.Current.SetApplicationHandler(appStub, applicationContext); diff --git a/src/Controls/tests/DeviceTests/HandlerTestBase.cs b/src/Controls/tests/DeviceTests/HandlerTestBase.cs index d79897b10478..f8af53421263 100644 --- a/src/Controls/tests/DeviceTests/HandlerTestBase.cs +++ b/src/Controls/tests/DeviceTests/HandlerTestBase.cs @@ -1,7 +1,9 @@ using System; +using System.Reflection.Metadata; using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Maui.Controls; using Microsoft.Maui.Controls.Hosting; using Microsoft.Maui.Devices; @@ -11,14 +13,16 @@ using Microsoft.Maui.Handlers; using Microsoft.Maui.Hosting; using Microsoft.Maui.LifecycleEvents; +using Microsoft.Maui.Platform; using Microsoft.Maui.TestUtils.DeviceTests.Runners; +using Xunit; namespace Microsoft.Maui.DeviceTests { public partial class HandlerTestBase : TestBase, IDisposable { bool _isCreated; - MauiApp _mauiApp; + protected MauiApp MauiApp { get; private set; } IMauiContext _mauiContext; // In order to run any page level tests android needs to add itself to the decor view inside a new fragment @@ -74,19 +78,20 @@ public void EnsureHandlerCreated(Action additionalCreationAction appBuilder.Services.AddSingleton(svc => TestDispatcher.Provider); appBuilder.Services.AddScoped(svc => TestDispatcher.Current); + appBuilder.Services.TryAddSingleton((_) => new Application()); additionalCreationActions?.Invoke(appBuilder); - _mauiApp = appBuilder.Build(); + MauiApp = appBuilder.Build(); - _mauiContext = new ContextStub(_mauiApp.Services); + _mauiContext = new ContextStub(MauiApp.Services); } public void Dispose() { - ((IDisposable)_mauiApp)?.Dispose(); + ((IDisposable)MauiApp)?.Dispose(); - _mauiApp = null; + MauiApp = null; _mauiContext = null; } @@ -166,6 +171,17 @@ protected Task GetValueAsync(IElement view, Func(IView view, TValue value, Action func) + where THandler : IElementHandler + { + return InvokeOnMainThreadAsync(() => + { + var handler = CreateHandler(view); + func(handler, value); + }); + } + protected Task CreateHandlerAndAddToWindow(IElement view, Action action) where THandler : class, IElementHandler { @@ -177,7 +193,7 @@ protected Task CreateHandlerAndAddToWindow(IElement view, Action(IElement view, Func action) + protected Task CreateHandlerAndAddToWindow(IElement view, Func action, IMauiContext mauiContext = null) where THandler : class, IElementHandler { return InvokeOnMainThreadAsync(async () => @@ -206,14 +222,27 @@ await SetupWindowForTests(window, async () => IView content = window.Content; if (content is IPageContainer pc) + { content = pc.CurrentPage; + if (content == null) + { + // This is mainly a timing issue with Shell. + // Basically the `CurrentPage` on Shell isn't initialized until it's + // actually navigated to because it's a DataTemplate. + // The CurrentPage doesn't come into existence until the platform requests it. + // The initial `Navigated` events on Shell all fire a bit too early as well. + // Ideally I'd just use that instead of having to add a delay. + await Task.Delay(100); + content = pc.CurrentPage; + } + + _ = content ?? throw new InvalidOperationException("Current Page Not Initialized"); + } await OnLoadedAsync(content as VisualElement); #if WINDOWS - await Task.Delay(10); #endif - if (typeof(THandler).IsAssignableFrom(window.Handler.GetType())) await action((THandler)window.Handler); else if (typeof(THandler).IsAssignableFrom(window.Content.Handler.GetType())) @@ -222,7 +251,7 @@ await SetupWindowForTests(window, async () => await action((THandler)cp.Content.Handler); else throw new Exception($"I can't work with {typeof(THandler)}"); - }); + }, mauiContext); } finally { @@ -231,6 +260,90 @@ await SetupWindowForTests(window, async () => }); } + async protected Task ValidatePropertyInitValue( + IView view, + Func GetValue, + Func GetPlatformValue, + TValue expectedValue) + where THandler : IElementHandler + { + var values = await GetValueAsync(view, (THandler handler) => + { + return new + { + ViewValue = GetValue(), + PlatformViewValue = GetPlatformValue(handler) + }; + }); + + Assert.Equal(expectedValue, values.ViewValue); + Assert.Equal(expectedValue, values.PlatformViewValue); + } + + async protected Task ValidatePropertyUpdatesValue( + IView view, + string property, + Func GetPlatformValue, + TValue expectedSetValue, + TValue expectedUnsetValue) + where THandler : IElementHandler + { + var propInfo = view.GetType().GetProperty(property); + + // set initial values + + propInfo.SetValue(view, expectedSetValue); + + var (handler, viewVal, nativeVal) = await InvokeOnMainThreadAsync(() => + { + var handler = CreateHandler(view); + return (handler, (TValue)propInfo.GetValue(view), GetPlatformValue(handler)); + }); + + Assert.Equal(expectedSetValue, viewVal); + Assert.Equal(expectedSetValue, nativeVal); + + await ValidatePropertyUpdatesAfterInitValue(handler, property, GetPlatformValue, expectedSetValue, expectedUnsetValue); + } + + async protected Task ValidatePropertyUpdatesAfterInitValue( + THandler handler, + string property, + Func GetPlatformValue, + TValue expectedSetValue, + TValue expectedUnsetValue) + where THandler : IElementHandler + { + var view = handler.VirtualView; + var propInfo = handler.VirtualView.GetType().GetProperty(property); + + // confirm can update + + var (viewVal, nativeVal) = await InvokeOnMainThreadAsync(() => + { + propInfo.SetValue(view, expectedUnsetValue); + handler.UpdateValue(property); + + return ((TValue)propInfo.GetValue(view), GetPlatformValue(handler)); + }); + + Assert.Equal(expectedUnsetValue, viewVal); + Assert.Equal(expectedUnsetValue, nativeVal); + + // confirm can revert + + (viewVal, nativeVal) = await InvokeOnMainThreadAsync(() => + { + propInfo.SetValue(view, expectedSetValue); + handler.UpdateValue(property); + + return ((TValue)propInfo.GetValue(view), GetPlatformValue(handler)); + }); + + Assert.Equal(expectedSetValue, viewVal); + Assert.Equal(expectedSetValue, nativeVal); + } + protected void OnLoaded(VisualElement frameworkElement, Action action) { if (frameworkElement.IsLoaded) @@ -290,19 +403,44 @@ protected Task OnLoadedAsync(VisualElement frameworkElement, TimeSpan? timeOut = return taskCompletionSource.Task.WaitAsync(timeOut.Value); } - protected Task OnFrameSetToNotEmpty(VisualElement frameworkElement, TimeSpan? timeOut = null) + protected async Task OnNavigatedToAsync(Page page, TimeSpan? timeOut = null) + { + await OnLoadedAsync(page, timeOut); + + if (page.HasNavigatedTo) + return; + + timeOut = timeOut ?? TimeSpan.FromSeconds(2); + TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); + + page.NavigatedTo += NavigatedTo; + + await taskCompletionSource.Task.WaitAsync(timeOut.Value); + void NavigatedTo(object sender, NavigatedToEventArgs e) + { + taskCompletionSource.SetResult(true); + page.NavigatedTo -= NavigatedTo; + } + } + + protected async Task OnFrameSetToNotEmpty(VisualElement frameworkElement, TimeSpan? timeOut = null) { if (frameworkElement.Frame.Height > 0 && frameworkElement.Frame.Width > 0) { - return Task.CompletedTask; + return; } timeOut = timeOut ?? TimeSpan.FromSeconds(2); TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); frameworkElement.BatchCommitted += OnBatchCommitted; - return taskCompletionSource.Task.WaitAsync(timeOut.Value); + await taskCompletionSource.Task.WaitAsync(timeOut.Value); + + // Wait for the layout to propagate to the platform + await AssertionExtensions.Wait( + () => !frameworkElement.GetBoundingBox().Size.Equals(Size.Zero) + ); void OnBatchCommitted(object sender, Controls.Internals.EventArg e) { diff --git a/src/Controls/tests/DeviceTests/HandlerTestBase.iOS.cs b/src/Controls/tests/DeviceTests/HandlerTestBase.iOS.cs index 2f8b8ac07682..2784b5ec5aab 100644 --- a/src/Controls/tests/DeviceTests/HandlerTestBase.iOS.cs +++ b/src/Controls/tests/DeviceTests/HandlerTestBase.iOS.cs @@ -24,14 +24,15 @@ protected bool GetExcludedWithChildren(IViewHandler viewHandler) return platformView.AccessibilityElementsHidden; } - Task SetupWindowForTests(IWindow window, Func runTests) + Task SetupWindowForTests(IWindow window, Func runTests, IMauiContext mauiContext = null) where THandler : class, IElementHandler { + mauiContext ??= MauiContext; return InvokeOnMainThreadAsync(async () => { try { - _ = window.ToHandler(MauiContext); + _ = window.ToHandler(mauiContext); await runTests.Invoke(); } finally diff --git a/src/Controls/tests/DeviceTests/Stubs/ContextStub.cs b/src/Controls/tests/DeviceTests/Stubs/ContextStub.cs index 23fba6c43504..8770ba7a6d25 100644 --- a/src/Controls/tests/DeviceTests/Stubs/ContextStub.cs +++ b/src/Controls/tests/DeviceTests/Stubs/ContextStub.cs @@ -15,6 +15,10 @@ class ContextStub : IMauiContext, IServiceProvider NavigationRootManager _windowManager; #endif +#if ANDROID + Android.Content.Context _androidContext; +#endif + public ContextStub(IServiceProvider services) { _services = services; @@ -24,14 +28,15 @@ public ContextStub(IServiceProvider services) public object GetService(Type serviceType) { - if (serviceType == typeof(IApplication)) - return Controls.Application.Current; + // Don't add serviceType == typeof(IApplication) here + // The headless runner doesn't set Application.Current + // so you'll get confusing behavior if you do. if (serviceType == typeof(IAnimationManager)) return _manager ??= _services.GetRequiredService(); #if ANDROID if (serviceType == typeof(Android.Content.Context)) - return MauiProgram.CurrentContext; + return _androidContext ?? MauiProgram.CurrentContext; if (serviceType == typeof(NavigationRootManager)) return _windowManager ??= new NavigationRootManager(this); @@ -56,8 +61,12 @@ public object GetService(Type serviceType) Services.GetRequiredService(); #if __ANDROID__ - public Android.Content.Context Context => - Services.GetRequiredService(); + public Android.Content.Context Context + { + get => Services.GetRequiredService(); + set => _androidContext = value; + } + #endif } } \ No newline at end of file diff --git a/src/Controls/tests/DeviceTests/Stubs/WindowHandlerStub.Android.cs b/src/Controls/tests/DeviceTests/Stubs/WindowHandlerStub.Android.cs index 42f522d03b67..d8204ea0b75a 100644 --- a/src/Controls/tests/DeviceTests/Stubs/WindowHandlerStub.Android.cs +++ b/src/Controls/tests/DeviceTests/Stubs/WindowHandlerStub.Android.cs @@ -1,9 +1,12 @@ using System; using AndroidX.AppCompat.Widget; +using Microsoft.Maui.Controls; using Microsoft.Maui.Handlers; using Microsoft.Maui.Platform; using static Microsoft.Maui.DeviceTests.HandlerTestBase; using AActivity = Android.App.Activity; +using AView = Android.Views.View; +using AViewGroup = Android.Views.ViewGroup; namespace Microsoft.Maui.DeviceTests.Stubs { @@ -14,22 +17,23 @@ public class WindowHandlerStub : ElementHandler, IWindowHand [nameof(IWindow.Content)] = MapContent }; + public AView PlatformViewUnderTest { get; private set; } + void UpdateContent() { _ = MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); - - var rootManager = MauiContext.GetNavigationRootManager(); - - var previousRootView = rootManager.RootView; - rootManager.Connect(VirtualView.Content); + AView platformView = WindowHandler.CreateRootViewFromContent(this, VirtualView); // This is used for cases where we are testing swapping out the page set on window - if (previousRootView?.Parent is FakeActivityRootView farw) + if (PlatformViewUnderTest?.Parent is FakeActivityRootView farw) { - previousRootView.RemoveFromParent(); - rootManager.RootView.LayoutParameters = new LinearLayoutCompat.LayoutParams(500, 500); - farw.AddView(rootManager.RootView); + var decorView = MauiContext.Context.GetActivity().Window.DecorView; + PlatformViewUnderTest.RemoveFromParent(); + platformView.LayoutParameters = new LinearLayoutCompat.LayoutParams(AViewGroup.LayoutParams.MatchParent, AViewGroup.LayoutParams.MatchParent); + farw.AddView(platformView); } + + PlatformViewUnderTest = platformView; } public static void MapContent(WindowHandlerStub handler, IWindow window) diff --git a/src/Controls/tests/DeviceTests/TestCategory.cs b/src/Controls/tests/DeviceTests/TestCategory.cs index 3b4ad1a9fb7f..b5f23eab31a8 100644 --- a/src/Controls/tests/DeviceTests/TestCategory.cs +++ b/src/Controls/tests/DeviceTests/TestCategory.cs @@ -4,10 +4,13 @@ public static class TestCategory { public const string Behavior = "Behavior"; public const string Button = "Button"; + public const string Compatibility = "Compatibility"; + public const string ContentView = "ContentView"; public const string Dispatcher = "Dispatcher"; public const string Editor = "Editor"; public const string Element = "Element"; public const string Entry = "Entry"; + public const string Frame = "Frame"; public const string FlyoutPage = "FlyoutPage"; public const string Gesture = "Gesture"; public const string Label = "Label"; @@ -16,10 +19,13 @@ public static class TestCategory public const string Modal = "Modal"; public const string NavigationPage = "NavigationPage"; public const string Page = "Page"; + public const string ScrollView = "ScrollView"; public const string SearchBar = "SearchBar"; public const string Shell = "Shell"; public const string TabbedPage = "TabbedPage"; + public const string TemplatedView = "TemplatedView"; public const string VisualElement = "VisualElement"; + public const string VisualElementTree = "VisualElementTree"; public const string Window = "Window"; } } diff --git a/src/Controls/tests/Xaml.UnitTests/BindingDiagnosticsTests.xaml.cs b/src/Controls/tests/Xaml.UnitTests/BindingDiagnosticsTests.xaml.cs index b5b8a2d0c5e6..5b04bd42ee8f 100644 --- a/src/Controls/tests/Xaml.UnitTests/BindingDiagnosticsTests.xaml.cs +++ b/src/Controls/tests/Xaml.UnitTests/BindingDiagnosticsTests.xaml.cs @@ -20,7 +20,7 @@ public BindingDiagnosticsTests(bool useCompiledXaml) [TestFixture] #if !DEBUG - [Ignore("This test runs only in debug")] + [Ignore("This test runs only in debug")] #endif public class Tests { diff --git a/src/Controls/tests/Xaml.UnitTests/Issues/Maui6367.xaml.cs b/src/Controls/tests/Xaml.UnitTests/Issues/Maui6367.xaml.cs index 86d88d9e36d6..8e909b741df5 100644 --- a/src/Controls/tests/Xaml.UnitTests/Issues/Maui6367.xaml.cs +++ b/src/Controls/tests/Xaml.UnitTests/Issues/Maui6367.xaml.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls.Xaml.UnitTests { - public partial class Maui6367 + public partial class Maui6367 { public Maui6367() => InitializeComponent(); public Maui6367(bool useCompiledXaml) diff --git a/src/Controls/tests/Xaml.UnitTests/Issues/Maui6944.xaml.cs b/src/Controls/tests/Xaml.UnitTests/Issues/Maui6944.xaml.cs index 9a7e52c558f2..8dce1fb5fdb3 100644 --- a/src/Controls/tests/Xaml.UnitTests/Issues/Maui6944.xaml.cs +++ b/src/Controls/tests/Xaml.UnitTests/Issues/Maui6944.xaml.cs @@ -43,7 +43,8 @@ public class Maui6944Layout : Maui6944Base typeof(View), typeof(Maui6944Layout), defaultValue: null); - public View ChildContent { + public View ChildContent + { get => (View)GetValue(ChildContentProperty); set => SetValue(ChildContentProperty, value); } diff --git a/src/Controls/tests/Xaml.UnitTests/Issues/Maui7744.xaml b/src/Controls/tests/Xaml.UnitTests/Issues/Maui7744.xaml new file mode 100644 index 000000000000..1c1d1b74ea08 --- /dev/null +++ b/src/Controls/tests/Xaml.UnitTests/Issues/Maui7744.xaml @@ -0,0 +1,17 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Controls/tests/Xaml.UnitTests/Issues/Maui7744.xaml.cs b/src/Controls/tests/Xaml.UnitTests/Issues/Maui7744.xaml.cs new file mode 100644 index 000000000000..483b5c8c0c68 --- /dev/null +++ b/src/Controls/tests/Xaml.UnitTests/Issues/Maui7744.xaml.cs @@ -0,0 +1,32 @@ +using Microsoft.Maui.ApplicationModel; +using Microsoft.Maui.Controls.Core.UnitTests; +using Microsoft.Maui.Controls.Shapes; +using Microsoft.Maui.Devices; +using NUnit.Framework; + +namespace Microsoft.Maui.Controls.Xaml.UnitTests +{ + public partial class Maui7744 : ContentPage + { + public Maui7744() => InitializeComponent(); + public Maui7744(bool useCompiledXaml) + { + //this stub will be replaced at compile time + } + + [TestFixture] + class Test + { + [SetUp] public void Setup() => AppInfo.SetCurrent(new MockAppInfo()); + [TearDown] public void TearDown() => AppInfo.SetCurrent(null); + + [Test] + public void ConvertersAreExecutedWhileApplyingSetter([Values(false, true)] bool useCompiledXaml) + { + var page = new Maui7744(useCompiledXaml); + Assert.That(page.border0.StrokeShape, Is.TypeOf()); + Assert.That(page.border1.StrokeShape, Is.TypeOf()); + } + } + } +} \ No newline at end of file diff --git a/src/Core/src/Animations/PlatformTicker.Tizen.cs b/src/Core/src/Animations/PlatformTicker.Tizen.cs index f88c87a4396e..bfbf966c95e9 100644 --- a/src/Core/src/Animations/PlatformTicker.Tizen.cs +++ b/src/Core/src/Animations/PlatformTicker.Tizen.cs @@ -17,7 +17,7 @@ public PlatformTicker() { TizenSynchronizationContext.Initialize(); } - + _context = SynchronizationContext.Current; _timer = new Timer((object? o) => HandleElapsed(o), this, Timeout.Infinite, Timeout.Infinite); } diff --git a/src/Core/src/Core.csproj b/src/Core/src/Core.csproj index da9dbc18a4f3..76379ad4b5e8 100644 --- a/src/Core/src/Core.csproj +++ b/src/Core/src/Core.csproj @@ -6,7 +6,7 @@ enable false true - $(NoWarn);CS1591 + $(NoWarn);CS1591;RS0041;RS0026;RS0027 @@ -17,10 +17,27 @@ + + + + + + + + + + + + + + + + + diff --git a/src/Core/src/Core/Extensions/VisualTreeElementExtensions.cs b/src/Core/src/Core/Extensions/VisualTreeElementExtensions.cs index 905fbd88901c..23728841e493 100644 --- a/src/Core/src/Core/Extensions/VisualTreeElementExtensions.cs +++ b/src/Core/src/Core/Extensions/VisualTreeElementExtensions.cs @@ -149,7 +149,7 @@ static void Impl(IVisualTreeElement visualElement, Predicate intersectElem { if (visualElement is IView view) { - Rect bounds = view.GetPlatformViewBounds(); + Rect bounds = view.GetBoundingBox(); if (intersectElementBounds(bounds)) elements.Add(visualElement); } diff --git a/src/Core/src/Dispatching/Dispatcher.Tizen.cs b/src/Core/src/Dispatching/Dispatcher.Tizen.cs index 4711b8cc6aff..6c8989b427aa 100644 --- a/src/Core/src/Dispatching/Dispatcher.Tizen.cs +++ b/src/Core/src/Dispatching/Dispatcher.Tizen.cs @@ -73,7 +73,7 @@ public void Stop() { if (!IsRunning) return; - + IsRunning = false; _timer.Change(Timeout.Infinite, Timeout.Infinite); diff --git a/src/Core/src/Dispatching/Dispatcher.iOS.cs b/src/Core/src/Dispatching/Dispatcher.iOS.cs index 4b0c433776fa..0daebcd15540 100644 --- a/src/Core/src/Dispatching/Dispatcher.iOS.cs +++ b/src/Core/src/Dispatching/Dispatcher.iOS.cs @@ -70,6 +70,7 @@ public void Stop() IsRunning = false; _dispatchBlock?.Cancel(); + _dispatchBlock = null; } void OnTimerTick() @@ -79,7 +80,7 @@ void OnTimerTick() Tick?.Invoke(this, EventArgs.Empty); - if (IsRepeating) + if (IsRepeating && _dispatchBlock is not null) _dispatchQueue.DispatchAfter(new DispatchTime(DispatchTime.Now, Interval), _dispatchBlock); } } diff --git a/src/Core/src/Fonts/EmbeddedFontLoader.Tizen.cs b/src/Core/src/Fonts/EmbeddedFontLoader.Tizen.cs index 10b13494cf13..b842830f63d3 100644 --- a/src/Core/src/Fonts/EmbeddedFontLoader.Tizen.cs +++ b/src/Core/src/Fonts/EmbeddedFontLoader.Tizen.cs @@ -17,7 +17,7 @@ public partial class EmbeddedFontLoader : IEmbeddedFontLoader public string? LoadFont(EmbeddedFont font) { if (FontCacheDirectory == null) - { + { FontCacheDirectory = Directory.CreateDirectory(IOPath.Combine(TApplication.Current.DirectoryInfo.Data, _fontCacheFolderName)); Utility.AppendGlobalFontPath(FontCacheDirectory.FullName); } diff --git a/src/Core/src/Fonts/EmbeddedFontLoader.cs b/src/Core/src/Fonts/EmbeddedFontLoader.cs index be3f14be7db2..56a9dd9af797 100644 --- a/src/Core/src/Fonts/EmbeddedFontLoader.cs +++ b/src/Core/src/Fonts/EmbeddedFontLoader.cs @@ -8,8 +8,8 @@ public partial class EmbeddedFontLoader : IEmbeddedFontLoader { readonly IServiceProvider? _serviceProvider; -#if !NET6_0 - // The NET6_0 linker won't need this +#if !NET6_0_OR_GREATER + // The .NET 6+ linker won't need this // Make sure to test with full linking on before removing #if __ANDROID__ [Android.Runtime.Preserve] diff --git a/src/Core/src/Fonts/FontManager.Tizen.cs b/src/Core/src/Fonts/FontManager.Tizen.cs index f256d1c909a3..b91529de3921 100644 --- a/src/Core/src/Fonts/FontManager.Tizen.cs +++ b/src/Core/src/Fonts/FontManager.Tizen.cs @@ -34,7 +34,7 @@ public string GetFontFamily(string? fontFamliy) if (string.IsNullOrEmpty(fontFamliy)) return ""; - var cleansedFont = CleanseFontName(fontFamliy??string.Empty); + var cleansedFont = CleanseFontName(fontFamliy ?? string.Empty); if (cleansedFont == null) return ""; @@ -61,7 +61,7 @@ string GetNativeFontFamily((string? family, float size, FontSlant slant) fontKey if (string.IsNullOrEmpty(fontKey.family)) return ""; - var cleansedFont = CleanseFontName(fontKey.family??string.Empty); + var cleansedFont = CleanseFontName(fontKey.family ?? string.Empty); if (cleansedFont == null) return ""; diff --git a/src/Core/src/Graphics/MauiDrawable.Android.cs b/src/Core/src/Graphics/MauiDrawable.Android.cs index 83591349fb8c..b60188475112 100644 --- a/src/Core/src/Graphics/MauiDrawable.Android.cs +++ b/src/Core/src/Graphics/MauiDrawable.Android.cs @@ -175,7 +175,7 @@ public void SetBorderBrush(GPaint? paint) else if (paint is PatternPaint patternPaint) SetBorderBrush(patternPaint); - + else SetEmptyBorderBrush(); } @@ -221,7 +221,8 @@ public void SetBorderBrush(RadialGradientPaint radialGradientPaint) InvalidateSelf(); } - public void SetEmptyBorderBrush() + // TODO: NET7 make public for net7.0 + internal void SetEmptyBorderBrush() { _invalidatePath = true; @@ -241,7 +242,7 @@ public void SetEmptyBorderBrush() InitializeBorderIfNeeded(); InvalidateSelf(); } - + public void SetBorderBrush(ImagePaint imagePaint) { throw new NotImplementedException(); @@ -413,9 +414,9 @@ protected override void OnDraw(Shape? shape, Canvas? canvas, APaint? paint) if (_shape != null) { - var offset = _strokeThickness / 2 / _density; - var w = (_width - _strokeThickness) / _density; - var h = (_height - _strokeThickness) / _density; + float offset = _strokeThickness / 2; + float w = (float)(_width / _density) - _strokeThickness; + float h = (float)(_height / _density) - _strokeThickness; var bounds = new Graphics.Rect(offset, offset, w, h); var path = _shape.PathForBounds(bounds); diff --git a/src/Core/src/Graphics/PaintExtensions.Windows.cs b/src/Core/src/Graphics/PaintExtensions.Windows.cs index e182d4618e0f..53700f549e5e 100644 --- a/src/Core/src/Graphics/PaintExtensions.Windows.cs +++ b/src/Core/src/Graphics/PaintExtensions.Windows.cs @@ -25,7 +25,7 @@ public static partial class PaintExtensions if (paint is ImagePaint imagePaint) return imagePaint.CreateBrush(); - + if (paint is PatternPaint patternPaint) return patternPaint.CreateBrush(); diff --git a/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.cs b/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.cs index 706f942258ed..586468529a61 100644 --- a/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.cs +++ b/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ProgressRing; #elif TIZEN using PlatformView = ElmSharp.ProgressBar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.iOS.cs b/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.iOS.cs index f918ed40875e..66482a307d0c 100644 --- a/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.iOS.cs +++ b/src/Core/src/Handlers/ActivityIndicator/ActivityIndicatorHandler.iOS.cs @@ -1,4 +1,5 @@ -using CoreGraphics; +using System; +using CoreGraphics; using ObjCRuntime; using UIKit; @@ -6,12 +7,17 @@ namespace Microsoft.Maui.Handlers { public partial class ActivityIndicatorHandler : ViewHandler { - protected override MauiActivityIndicator CreatePlatformView() => new MauiActivityIndicator(CGRect.Empty, VirtualView) + protected override MauiActivityIndicator CreatePlatformView() { -#pragma warning disable CA1416 // TODO: 'UIActivityIndicatorViewStyle.Gray' is unsupported on: 'ios' 13.0 and later - ActivityIndicatorViewStyle = UIActivityIndicatorViewStyle.Gray -#pragma warning restore CA1416 - }; + MauiActivityIndicator platformView; + + if (OperatingSystem.IsIOSVersionAtLeast(13)) + platformView = new MauiActivityIndicator(CGRect.Empty, VirtualView) { ActivityIndicatorViewStyle = UIActivityIndicatorViewStyle.Medium }; + else + platformView = new MauiActivityIndicator(CGRect.Empty, VirtualView) { ActivityIndicatorViewStyle = UIActivityIndicatorViewStyle.Gray }; + + return platformView; + } public static void MapIsRunning(IActivityIndicatorHandler handler, IActivityIndicator activityIndicator) { diff --git a/src/Core/src/Handlers/ActivityIndicator/IActivityIndicatorHandler.cs b/src/Core/src/Handlers/ActivityIndicator/IActivityIndicatorHandler.cs index 2ac758df6345..4ea085a36d09 100644 --- a/src/Core/src/Handlers/ActivityIndicator/IActivityIndicatorHandler.cs +++ b/src/Core/src/Handlers/ActivityIndicator/IActivityIndicatorHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ProgressRing; #elif TIZEN using PlatformView = ElmSharp.ProgressBar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Application/ApplicationHandler.Android.cs b/src/Core/src/Handlers/Application/ApplicationHandler.Android.cs index ca516fa33719..6691c9dd14cc 100644 --- a/src/Core/src/Handlers/Application/ApplicationHandler.Android.cs +++ b/src/Core/src/Handlers/Application/ApplicationHandler.Android.cs @@ -1,7 +1,5 @@ +using System; using Android.App; -using Microsoft.Extensions.Logging; -using Microsoft.Maui.LifecycleEvents; -using Microsoft.Maui.Platform; namespace Microsoft.Maui.Handlers { @@ -9,7 +7,14 @@ public partial class ApplicationHandler : ElementHandler - { - public override void SetVirtualView(IView view) - { - base.SetVirtualView(view); + public partial class ContentViewHandler : ViewHandler + { + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); - _ = PlatformView ?? throw new InvalidOperationException($"{nameof(PlatformView)} should have been set by base class."); - _ = VirtualView ?? throw new InvalidOperationException($"{nameof(VirtualView)} should have been set by base class."); + _ = PlatformView ?? throw new InvalidOperationException($"{nameof(PlatformView)} should have been set by base class."); + _ = VirtualView ?? throw new InvalidOperationException($"{nameof(VirtualView)} should have been set by base class."); - PlatformView.CrossPlatformMeasure = VirtualView.CrossPlatformMeasure; - PlatformView.CrossPlatformArrange = VirtualView.CrossPlatformArrange; - } + PlatformView.CrossPlatformMeasure = VirtualView.CrossPlatformMeasure; + PlatformView.CrossPlatformArrange = VirtualView.CrossPlatformArrange; + } - static void UpdateContent(IContentViewHandler handler) - { - _ = handler.PlatformView ?? throw new InvalidOperationException($"{nameof(PlatformView)} should have been set by base class."); - _ = handler.VirtualView ?? throw new InvalidOperationException($"{nameof(VirtualView)} should have been set by base class."); - _ = handler.MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); + static void UpdateContent(IContentViewHandler handler) + { + _ = handler.PlatformView ?? throw new InvalidOperationException($"{nameof(PlatformView)} should have been set by base class."); + _ = handler.VirtualView ?? throw new InvalidOperationException($"{nameof(VirtualView)} should have been set by base class."); + _ = handler.MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); handler.PlatformView.Children.Clear(); - if (handler.VirtualView.PresentedContent is IView view) + if (handler.VirtualView.PresentedContent is IView view) handler.PlatformView.Children.Add(view.ToPlatform(handler.MauiContext)); - } + } - protected override ContentPanel CreatePlatformView() - { - if (VirtualView == null) - { - throw new InvalidOperationException($"{nameof(VirtualView)} must be set to create a LayoutView"); - } + protected override ContentPanel CreatePlatformView() + { + if (VirtualView == null) + { + throw new InvalidOperationException($"{nameof(VirtualView)} must be set to create a LayoutView"); + } - var view = new ContentPanel + var view = new ContentPanel { - CrossPlatformMeasure = VirtualView.CrossPlatformMeasure, - CrossPlatformArrange = VirtualView.CrossPlatformArrange - }; + CrossPlatformMeasure = VirtualView.CrossPlatformMeasure, + CrossPlatformArrange = VirtualView.CrossPlatformArrange + }; - return view; - } + return view; + } - public static void MapContent(IContentViewHandler handler, IContentView page) - { + public static void MapContent(IContentViewHandler handler, IContentView page) + { UpdateContent(handler); - } - } + } + } } diff --git a/src/Core/src/Handlers/ContentView/ContentViewHandler.cs b/src/Core/src/Handlers/ContentView/ContentViewHandler.cs index 97a8cf4e1fc5..f1d02fad254f 100644 --- a/src/Core/src/Handlers/ContentView/ContentViewHandler.cs +++ b/src/Core/src/Handlers/ContentView/ContentViewHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.Maui.Platform.ContentPanel; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.ContentCanvas; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ContentView/IContentViewHandler.cs b/src/Core/src/Handlers/ContentView/IContentViewHandler.cs index d4ff01c781ee..dc3504e9900b 100644 --- a/src/Core/src/Handlers/ContentView/IContentViewHandler.cs +++ b/src/Core/src/Handlers/ContentView/IContentViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Platform.ContentPanel; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.ContentCanvas; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/DatePicker/DatePickerHandler.cs b/src/Core/src/Handlers/DatePicker/DatePickerHandler.cs index 21986104fd61..dab59d8d0d70 100644 --- a/src/Core/src/Handlers/DatePicker/DatePickerHandler.cs +++ b/src/Core/src/Handlers/DatePicker/DatePickerHandler.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.CalendarDatePicker; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/DatePicker/DatePickerHandler.iOS.cs b/src/Core/src/Handlers/DatePicker/DatePickerHandler.iOS.cs index 78380302303c..35d8fcb8acd8 100644 --- a/src/Core/src/Handlers/DatePicker/DatePickerHandler.iOS.cs +++ b/src/Core/src/Handlers/DatePicker/DatePickerHandler.iOS.cs @@ -5,52 +5,25 @@ namespace Microsoft.Maui.Handlers { -#if IOS && !MACCATALYST +#if !MACCATALYST public partial class DatePickerHandler : ViewHandler { - UIDatePicker? _picker; - protected override MauiDatePicker CreatePlatformView() { MauiDatePicker platformDatePicker = new MauiDatePicker(); - - _picker = new UIDatePicker { Mode = UIDatePickerMode.Date, TimeZone = new NSTimeZone("UTC") }; - - if (OperatingSystem.IsIOSVersionAtLeast(13, 4)) - { - _picker.PreferredDatePickerStyle = UIDatePickerStyle.Wheels; - } - - platformDatePicker.InputView = _picker; - platformDatePicker.InputAccessoryView = new MauiDoneAccessoryView(() => - { - SetVirtualViewDate(); - platformDatePicker.ResignFirstResponder(); - }); - - platformDatePicker.InputView.AutoresizingMask = UIViewAutoresizing.FlexibleHeight; - platformDatePicker.InputAccessoryView.AutoresizingMask = UIViewAutoresizing.FlexibleHeight; - - platformDatePicker.InputAssistantItem.LeadingBarButtonGroups = null; - platformDatePicker.InputAssistantItem.TrailingBarButtonGroups = null; - - platformDatePicker.AccessibilityTraits = UIAccessibilityTrait.Button; - return platformDatePicker; } - internal UIDatePicker? DatePickerDialog { get { return _picker; } } + internal UIDatePicker? DatePickerDialog { get { return PlatformView?.InputView as UIDatePicker; } } internal bool UpdateImmediately { get; set; } protected override void ConnectHandler(MauiDatePicker platformView) { - if (_picker is UIDatePicker picker) - { - picker.EditingDidBegin += OnStarted; - picker.EditingDidEnd += OnEnded; - picker.ValueChanged += OnValueChanged; + platformView.MauiDatePickerDelegate = new DatePickerDelegate(this); + if (DatePickerDialog is UIDatePicker picker) + { var date = VirtualView?.Date; if (date is DateTime dt) { @@ -63,38 +36,32 @@ protected override void ConnectHandler(MauiDatePicker platformView) protected override void DisconnectHandler(MauiDatePicker platformView) { - if (_picker != null) - { - _picker.EditingDidBegin -= OnStarted; - _picker.EditingDidEnd -= OnEnded; - _picker.ValueChanged -= OnValueChanged; - } - + platformView.MauiDatePickerDelegate = null; base.DisconnectHandler(platformView); } public static void MapFormat(IDatePickerHandler handler, IDatePicker datePicker) { - var picker = (handler as DatePickerHandler)?._picker; + var picker = (handler as DatePickerHandler)?.DatePickerDialog; handler.PlatformView?.UpdateFormat(datePicker, picker); } public static void MapDate(IDatePickerHandler handler, IDatePicker datePicker) { - var picker = (handler as DatePickerHandler)?._picker; + var picker = (handler as DatePickerHandler)?.DatePickerDialog; handler.PlatformView?.UpdateDate(datePicker, picker); } public static void MapMinimumDate(IDatePickerHandler handler, IDatePicker datePicker) { if (handler is DatePickerHandler platformHandler) - handler.PlatformView?.UpdateMinimumDate(datePicker, platformHandler._picker); + handler.PlatformView?.UpdateMinimumDate(datePicker, platformHandler.DatePickerDialog); } public static void MapMaximumDate(IDatePickerHandler handler, IDatePicker datePicker) { if (handler is DatePickerHandler platformHandler) - handler.PlatformView?.UpdateMaximumDate(datePicker, platformHandler._picker); + handler.PlatformView?.UpdateMaximumDate(datePicker, platformHandler.DatePickerDialog); } public static void MapCharacterSpacing(IDatePickerHandler handler, IDatePicker datePicker) @@ -120,33 +87,84 @@ public static void MapFlowDirection(DatePickerHandler handler, IDatePicker dateP handler.PlatformView?.UpdateTextAlignment(datePicker); } - void OnValueChanged(object? sender, EventArgs? e) + static void OnValueChanged(object? sender) { - if (UpdateImmediately) // Platform Specific - SetVirtualViewDate(); + if (sender is DatePickerHandler datePickerHandler) + { + if (datePickerHandler.UpdateImmediately) // Platform Specific + datePickerHandler.SetVirtualViewDate(); - if (VirtualView != null) - VirtualView.IsFocused = true; + if (datePickerHandler.VirtualView != null) + datePickerHandler.VirtualView.IsFocused = true; + } } - void OnStarted(object? sender, EventArgs eventArgs) + static void OnStarted(object? sender) { - if (VirtualView != null) - VirtualView.IsFocused = true; + if (sender is IDatePickerHandler datePickerHandler && datePickerHandler.VirtualView != null) + datePickerHandler.VirtualView.IsFocused = true; } - void OnEnded(object? sender, EventArgs eventArgs) + static void OnEnded(object? sender) { - if (VirtualView != null) - VirtualView.IsFocused = false; + if (sender is IDatePickerHandler datePickerHandler && datePickerHandler.VirtualView != null) + datePickerHandler.VirtualView.IsFocused = false; + } + + static void OnDoneClicked(object? sender) + { + if (sender is DatePickerHandler handler) + { + handler.SetVirtualViewDate(); + handler.PlatformView.ResignFirstResponder(); + } } void SetVirtualViewDate() { - if (VirtualView == null || _picker == null) + if (VirtualView == null || DatePickerDialog == null) return; - VirtualView.Date = _picker.Date.ToDateTime().Date; + VirtualView.Date = DatePickerDialog.Date.ToDateTime().Date; + } + + class DatePickerDelegate : MauiDatePickerDelegate + { + WeakReference _handler; + + public DatePickerDelegate(IDatePickerHandler handler) => + _handler = new WeakReference(handler); + + IDatePickerHandler? Handler + { + get + { + if (_handler?.TryGetTarget(out IDatePickerHandler? target) == true) + return target; + + return null; + } + } + + public override void DatePickerEditingDidBegin() + { + DatePickerHandler.OnStarted(Handler); + } + + public override void DatePickerEditingDidEnd() + { + DatePickerHandler.OnEnded(Handler); + } + + public override void DatePickerValueChanged() + { + DatePickerHandler.OnValueChanged(Handler); + } + + public override void DoneClicked() + { + DatePickerHandler.OnDoneClicked(Handler); + } } } #endif diff --git a/src/Core/src/Handlers/DatePicker/IDatePickerHandler.cs b/src/Core/src/Handlers/DatePicker/IDatePickerHandler.cs index d8483ddb4e39..70baf027ac46 100644 --- a/src/Core/src/Handlers/DatePicker/IDatePickerHandler.cs +++ b/src/Core/src/Handlers/DatePicker/IDatePickerHandler.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.CalendarDatePicker; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Editor/EditorHandler.Android.cs b/src/Core/src/Handlers/Editor/EditorHandler.Android.cs index f7a8368c2f7c..f5deb5cc94a4 100644 --- a/src/Core/src/Handlers/Editor/EditorHandler.Android.cs +++ b/src/Core/src/Handlers/Editor/EditorHandler.Android.cs @@ -7,11 +7,16 @@ namespace Microsoft.Maui.Handlers { + // TODO: NET7 issoto - Change the TPlatformView generic type to MauiAppCompatEditText + // This type adds support to the SelectionChanged event public partial class EditorHandler : ViewHandler { + bool _set; + + // TODO: NET7 issoto - Change the return type to MauiAppCompatEditText protected override AppCompatEditText CreatePlatformView() { - var editText = new AppCompatEditText(Context) + var editText = new MauiAppCompatEditText(Context) { ImeOptions = ImeAction.Done, Gravity = GravityFlags.Top, @@ -24,16 +29,35 @@ protected override AppCompatEditText CreatePlatformView() return editText; } + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + + // TODO: NET7 issoto - Remove the casting once we can set the TPlatformView generic type as MauiAppCompatEditText + if (!_set && PlatformView is MauiAppCompatEditText editText) + editText.SelectionChanged += OnSelectionChanged; + + _set = true; + } + + // TODO: NET7 issoto - Change the platformView type to MauiAppCompatEditText protected override void ConnectHandler(AppCompatEditText platformView) { platformView.ViewAttachedToWindow += OnPlatformViewAttachedToWindow; platformView.TextChanged += OnTextChanged; } + // TODO: NET7 issoto - Change the platformView type to MauiAppCompatEditText protected override void DisconnectHandler(AppCompatEditText platformView) { platformView.ViewAttachedToWindow -= OnPlatformViewAttachedToWindow; platformView.TextChanged -= OnTextChanged; + + // TODO: NET7 issoto - Remove the casting once we can set the TPlatformView generic type as MauiAppCompatEditText + if (_set && platformView is MauiAppCompatEditText editText) + editText.SelectionChanged -= OnSelectionChanged; + + _set = false; } public static void MapBackground(IEditorHandler handler, IEditor editor) => @@ -96,5 +120,17 @@ void OnPlatformViewAttachedToWindow(object? sender, ViewAttachedToWindowEventArg void OnTextChanged(object? sender, Android.Text.TextChangedEventArgs e) => VirtualView?.UpdateText(e); + + private void OnSelectionChanged(object? sender, EventArgs e) + { + var cursorPostion = PlatformView.GetCursorPosition(); + var selectedTextLength = PlatformView.GetSelectedTextLength(); + + if (VirtualView.CursorPosition != cursorPostion) + VirtualView.CursorPosition = cursorPostion; + + if (VirtualView.SelectionLength != selectedTextLength) + VirtualView.SelectionLength = selectedTextLength; + } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Editor/EditorHandler.Tizen.cs b/src/Core/src/Handlers/Editor/EditorHandler.Tizen.cs index e6398da88935..3ffcb6365dac 100644 --- a/src/Core/src/Handlers/Editor/EditorHandler.Tizen.cs +++ b/src/Core/src/Handlers/Editor/EditorHandler.Tizen.cs @@ -135,7 +135,7 @@ void OnTextChanged(object? sender, EventArgs e) VirtualView.Text = PlatformView.Text; } - + void OnEntryFocused(object? sender, EventArgs e) { diff --git a/src/Core/src/Handlers/Editor/EditorHandler.Windows.cs b/src/Core/src/Handlers/Editor/EditorHandler.Windows.cs index 021a7017dbe0..59eac5bd253e 100644 --- a/src/Core/src/Handlers/Editor/EditorHandler.Windows.cs +++ b/src/Core/src/Handlers/Editor/EditorHandler.Windows.cs @@ -7,6 +7,8 @@ namespace Microsoft.Maui.Handlers { public partial class EditorHandler : ViewHandler { + bool _set; + protected override TextBox CreatePlatformView() => new TextBox { @@ -14,6 +16,16 @@ protected override TextBox CreatePlatformView() => TextWrapping = TextWrapping.Wrap, }; + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + + if (!_set) + PlatformView.SelectionChanged += OnSelectionChanged; + + _set = true; + } + protected override void ConnectHandler(TextBox platformView) { platformView.TextChanged += OnTextChanged; @@ -26,6 +38,11 @@ protected override void DisconnectHandler(TextBox platformView) platformView.Loaded -= OnPlatformLoaded; platformView.TextChanged -= OnTextChanged; platformView.LostFocus -= OnLostFocus; + + if (_set) + platformView.SelectionChanged -= OnSelectionChanged; + + _set = false; } public static void MapText(IEditorHandler handler, IEditor editor) => @@ -81,5 +98,17 @@ void OnLostFocus(object? sender, RoutedEventArgs e) => void OnPlatformLoaded(object sender, RoutedEventArgs e) => MauiTextBox.InvalidateAttachedProperties(PlatformView); + + private void OnSelectionChanged(object sender, RoutedEventArgs e) + { + var cursorPostion = PlatformView.GetCursorPosition(); + var selectedTextLength = PlatformView.SelectionLength; + + if (VirtualView.CursorPosition != cursorPostion) + VirtualView.CursorPosition = cursorPostion; + + if (VirtualView.SelectionLength != selectedTextLength) + VirtualView.SelectionLength = selectedTextLength; + } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Editor/EditorHandler.cs b/src/Core/src/Handlers/Editor/EditorHandler.cs index ccf67c103260..cf6658077751 100644 --- a/src/Core/src/Handlers/Editor/EditorHandler.cs +++ b/src/Core/src/Handlers/Editor/EditorHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TextBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Editor/EditorHandler.iOS.cs b/src/Core/src/Handlers/Editor/EditorHandler.iOS.cs index 2f8e73fd1ceb..30fa01fd0c64 100644 --- a/src/Core/src/Handlers/Editor/EditorHandler.iOS.cs +++ b/src/Core/src/Handlers/Editor/EditorHandler.iOS.cs @@ -9,21 +9,42 @@ namespace Microsoft.Maui.Handlers { public partial class EditorHandler : ViewHandler { + bool _set; + protected override MauiTextView CreatePlatformView() { var platformEditor = new MauiTextView(); #if !MACCATALYST - platformEditor.InputAccessoryView = new MauiDoneAccessoryView(() => - { - platformEditor.ResignFirstResponder(); - VirtualView?.Completed(); - }); + var accessoryView = new MauiDoneAccessoryView(); + accessoryView.SetDoneClicked(OnDoneClicked); + platformEditor.InputAccessoryView = accessoryView; #endif return platformEditor; } +#if !MACCATALYST + static void OnDoneClicked(object sender) + { + if (sender is IEditorHandler handler) + { + handler.PlatformView.ResignFirstResponder(); + handler.VirtualView.Completed(); + } + } +#endif + + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + + if (!_set) + PlatformView.SelectionChanged += OnSelectionChanged; + + _set = true; + } + protected override void ConnectHandler(MauiTextView platformView) { platformView.ShouldChangeText += OnShouldChangeText; @@ -38,6 +59,11 @@ protected override void DisconnectHandler(MauiTextView platformView) platformView.Started -= OnStarted; platformView.Ended -= OnEnded; platformView.TextSetOrChanged -= OnTextPropertySet; + + if (_set) + platformView.SelectionChanged -= OnSelectionChanged; + + _set = false; } public override Size GetDesiredSize(double widthConstraint, double heightConstraint) @@ -140,5 +166,17 @@ void OnEnded(object? sender, EventArgs eventArgs) void OnTextPropertySet(object? sender, EventArgs e) => VirtualView.UpdateText(PlatformView.Text); + + private void OnSelectionChanged(object? sender, EventArgs e) + { + var cursorPostion = PlatformView.GetCursorPosition(); + var selectedTextLength = PlatformView.GetSelectedTextLength(); + + if (VirtualView.CursorPosition != cursorPostion) + VirtualView.CursorPosition = cursorPostion; + + if (VirtualView.SelectionLength != selectedTextLength) + VirtualView.SelectionLength = selectedTextLength; + } } } diff --git a/src/Core/src/Handlers/Editor/IEditorHandler.cs b/src/Core/src/Handlers/Editor/IEditorHandler.cs index 5fffb168ac7e..c45f9e04bd0a 100644 --- a/src/Core/src/Handlers/Editor/IEditorHandler.cs +++ b/src/Core/src/Handlers/Editor/IEditorHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TextBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Entry/EntryHandler.Android.cs b/src/Core/src/Handlers/Entry/EntryHandler.Android.cs index f3c2701a592a..f23264f40275 100644 --- a/src/Core/src/Handlers/Entry/EntryHandler.Android.cs +++ b/src/Core/src/Handlers/Entry/EntryHandler.Android.cs @@ -1,4 +1,5 @@ -using Android.Content.Res; +using System; +using Android.Content.Res; using Android.Graphics.Drawables; using Android.Runtime; using Android.Text; @@ -7,18 +8,22 @@ using Android.Widget; using AndroidX.AppCompat.Widget; using AndroidX.Core.Content; +using Microsoft.Maui.Platform; using static Android.Views.View; using static Android.Widget.TextView; namespace Microsoft.Maui.Handlers { + // TODO: NET7 issoto - Change the TPlatformView generic type to MauiAppCompatEditText + // This type adds support to the SelectionChanged event public partial class EntryHandler : ViewHandler { Drawable? _clearButtonDrawable; + bool _set; protected override AppCompatEditText CreatePlatformView() { - var nativeEntry = new AppCompatEditText(Context); + var nativeEntry = new MauiAppCompatEditText(Context); return nativeEntry; } @@ -26,6 +31,18 @@ protected override AppCompatEditText CreatePlatformView() protected virtual Drawable GetClearButtonDrawable() => _clearButtonDrawable ??= ContextCompat.GetDrawable(Context, Resource.Drawable.abc_ic_clear_material); + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + + // TODO: NET7 issoto - Remove the casting once we can set the TPlatformView generic type as MauiAppCompatEditText + if (!_set && PlatformView is MauiAppCompatEditText editText) + editText.SelectionChanged += OnSelectionChanged; + + _set = true; + } + + // TODO: NET7 issoto - Change the return type to MauiAppCompatEditText protected override void ConnectHandler(AppCompatEditText platformView) { platformView.TextChanged += OnTextChanged; @@ -34,6 +51,7 @@ protected override void ConnectHandler(AppCompatEditText platformView) platformView.EditorAction += OnEditorAction; } + // TODO: NET7 issoto - Change the return type to MauiAppCompatEditText protected override void DisconnectHandler(AppCompatEditText platformView) { _clearButtonDrawable = null; @@ -41,6 +59,12 @@ protected override void DisconnectHandler(AppCompatEditText platformView) platformView.FocusChange -= OnFocusedChange; platformView.Touch -= OnTouch; platformView.EditorAction -= OnEditorAction; + + // TODO: NET7 issoto - Remove the casting once we can set the TPlatformView generic type as MauiAppCompatEditText + if (_set && platformView is MauiAppCompatEditText editText) + editText.SelectionChanged -= OnSelectionChanged; + + _set = false; } public static void MapBackground(IEntryHandler handler, IEntry entry) => @@ -130,5 +154,17 @@ void OnEditorAction(object? sender, EditorActionEventArgs e) e.Handled = true; } + + private void OnSelectionChanged(object? sender, EventArgs e) + { + var cursorPostion = PlatformView.GetCursorPosition(); + var selectedTextLength = PlatformView.GetSelectedTextLength(); + + if (VirtualView.CursorPosition != cursorPostion) + VirtualView.CursorPosition = cursorPostion; + + if (VirtualView.SelectionLength != selectedTextLength) + VirtualView.SelectionLength = selectedTextLength; + } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Entry/EntryHandler.Windows.cs b/src/Core/src/Handlers/Entry/EntryHandler.Windows.cs index 5c4688455a72..7d8998da19b5 100644 --- a/src/Core/src/Handlers/Entry/EntryHandler.Windows.cs +++ b/src/Core/src/Handlers/Entry/EntryHandler.Windows.cs @@ -12,6 +12,7 @@ namespace Microsoft.Maui.Handlers public partial class EntryHandler : ViewHandler { static readonly bool s_shouldBeDelayed = DeviceInfo.Idiom != DeviceIdiom.Desktop; + bool _set; protected override TextBox CreatePlatformView() => new MauiPasswordTextBox() @@ -19,11 +20,20 @@ protected override TextBox CreatePlatformView() => IsObfuscationDelayed = s_shouldBeDelayed }; + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + + if (!_set) + PlatformView.SelectionChanged += OnPlatformSelectionChanged; + + _set = true; + } + protected override void ConnectHandler(TextBox platformView) { platformView.KeyUp += OnPlatformKeyUp; platformView.TextChanged += OnPlatformTextChanged; - platformView.SelectionChanged += OnPlatformSelectionChanged; platformView.Loaded += OnPlatformLoaded; } @@ -32,7 +42,11 @@ protected override void DisconnectHandler(TextBox platformView) platformView.Loaded -= OnPlatformLoaded; platformView.KeyUp -= OnPlatformKeyUp; platformView.TextChanged -= OnPlatformTextChanged; - platformView.SelectionChanged -= OnPlatformSelectionChanged; + + if (_set) + platformView.SelectionChanged -= OnPlatformSelectionChanged; + + _set = false; } public static void MapText(IEntryHandler handler, IEntry entry) => @@ -116,11 +130,14 @@ void OnPlatformKeyUp(object? sender, KeyRoutedEventArgs args) void OnPlatformSelectionChanged(object sender, RoutedEventArgs e) { - if (VirtualView.CursorPosition != PlatformView.SelectionStart) - VirtualView.CursorPosition = PlatformView.SelectionStart; + var cursorPostion = PlatformView.GetCursorPosition(); + var selectedTextLength = PlatformView.SelectionLength; + + if (VirtualView.CursorPosition != cursorPostion) + VirtualView.CursorPosition = cursorPostion; - if (VirtualView.SelectionLength != PlatformView.SelectionLength) - VirtualView.SelectionLength = PlatformView.SelectionLength; + if (VirtualView.SelectionLength != selectedTextLength) + VirtualView.SelectionLength = selectedTextLength; } void OnPlatformLoaded(object sender, RoutedEventArgs e) => diff --git a/src/Core/src/Handlers/Entry/EntryHandler.cs b/src/Core/src/Handlers/Entry/EntryHandler.cs index 146d2af3aa9e..866d0f333fee 100644 --- a/src/Core/src/Handlers/Entry/EntryHandler.cs +++ b/src/Core/src/Handlers/Entry/EntryHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TextBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Entry/EntryHandler.iOS.cs b/src/Core/src/Handlers/Entry/EntryHandler.iOS.cs index 8b6d1101bd10..6d531b9f60ab 100644 --- a/src/Core/src/Handlers/Entry/EntryHandler.iOS.cs +++ b/src/Core/src/Handlers/Entry/EntryHandler.iOS.cs @@ -8,6 +8,8 @@ namespace Microsoft.Maui.Handlers { public partial class EntryHandler : ViewHandler { + bool _set; + protected override MauiTextField CreatePlatformView() => new MauiTextField { @@ -15,12 +17,21 @@ protected override MauiTextField CreatePlatformView() => ClipsToBounds = true }; + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + + if (!_set) + PlatformView.SelectionChanged += OnSelectionChanged; + + _set = true; + } + protected override void ConnectHandler(MauiTextField platformView) { - platformView.ShouldReturn = OnShouldReturn; + platformView.ShouldReturn += OnShouldReturn; platformView.EditingDidBegin += OnEditingBegan; platformView.EditingChanged += OnEditingChanged; - platformView.EditingDidBegin += OnEditingBegan; platformView.EditingDidEnd += OnEditingEnded; platformView.TextPropertySet += OnTextPropertySet; platformView.ShouldChangeCharacters += OnShouldChangeCharacters; @@ -28,12 +39,17 @@ protected override void ConnectHandler(MauiTextField platformView) protected override void DisconnectHandler(MauiTextField platformView) { + platformView.ShouldReturn -= OnShouldReturn; platformView.EditingDidBegin -= OnEditingBegan; platformView.EditingChanged -= OnEditingChanged; - platformView.EditingDidBegin -= OnEditingBegan; platformView.EditingDidEnd -= OnEditingEnded; platformView.TextPropertySet -= OnTextPropertySet; platformView.ShouldChangeCharacters -= OnShouldChangeCharacters; + + if (_set) + platformView.SelectionChanged -= OnSelectionChanged; + + _set = false; } public static void MapText(IEntryHandler handler, IEntry entry) @@ -142,5 +158,17 @@ void OnTextPropertySet(object? sender, EventArgs e) => bool OnShouldChangeCharacters(UITextField textField, NSRange range, string replacementString) => VirtualView.TextWithinMaxLength(textField.Text, range, replacementString); + + private void OnSelectionChanged(object? sender, EventArgs e) + { + var cursorPostion = PlatformView.GetCursorPosition(); + var selectedTextLength = PlatformView.GetSelectedTextLength(); + + if (VirtualView.CursorPosition != cursorPostion) + VirtualView.CursorPosition = cursorPostion; + + if (VirtualView.SelectionLength != selectedTextLength) + VirtualView.SelectionLength = selectedTextLength; + } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Entry/IEntryHandler.cs b/src/Core/src/Handlers/Entry/IEntryHandler.cs index 7776469766d0..c9ca0163418c 100644 --- a/src/Core/src/Handlers/Entry/IEntryHandler.cs +++ b/src/Core/src/Handlers/Entry/IEntryHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TextBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.Android.cs b/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.Android.cs index ae1112ffb292..5d2fa0ce2535 100644 --- a/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.Android.cs +++ b/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.Android.cs @@ -88,6 +88,16 @@ void UpdateDetail() void UpdateFlyout() { _ = MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); + + // Once this issue has been taken care of + // https://github.com/dotnet/maui/issues/8456 + // we can remove this code + if (VirtualView.Flyout.Handler?.MauiContext != null && + VirtualView.Flyout.Handler.MauiContext != MauiContext) + { + VirtualView.Flyout.Handler.DisconnectHandler(); + } + _ = VirtualView.Flyout.ToPlatform(MauiContext); var newFlyoutView = VirtualView.Flyout.ToPlatform(); diff --git a/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.cs b/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.cs index 444f56f1b2d6..d60e233394be 100644 --- a/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.cs +++ b/src/Core/src/Handlers/FlyoutView/FlyoutViewHandler.cs @@ -4,7 +4,7 @@ using PlatformView = Android.Views.View; #elif WINDOWS using PlatformView = Microsoft.Maui.Platform.RootNavigationView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/FlyoutView/IFlyoutViewHandler.cs b/src/Core/src/Handlers/FlyoutView/IFlyoutViewHandler.cs index 49ff32ac42d5..92644d4cea48 100644 --- a/src/Core/src/Handlers/FlyoutView/IFlyoutViewHandler.cs +++ b/src/Core/src/Handlers/FlyoutView/IFlyoutViewHandler.cs @@ -4,7 +4,7 @@ using PlatformView = Android.Views.View; #elif WINDOWS using PlatformView = Microsoft.Maui.Platform.RootNavigationView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/GraphicsView/GraphicsViewHandler.Tizen.cs b/src/Core/src/Handlers/GraphicsView/GraphicsViewHandler.Tizen.cs index 7032d547381e..792912100de3 100644 --- a/src/Core/src/Handlers/GraphicsView/GraphicsViewHandler.Tizen.cs +++ b/src/Core/src/Handlers/GraphicsView/GraphicsViewHandler.Tizen.cs @@ -1,4 +1,4 @@ -using Microsoft.Maui.Platform; +using Microsoft.Maui.Platform; namespace Microsoft.Maui.Handlers { diff --git a/src/Core/src/Handlers/Image/IImageHandler.cs b/src/Core/src/Handlers/Image/IImageHandler.cs index 0a4a90823e6f..ce73d2324cf4 100644 --- a/src/Core/src/Handlers/Image/IImageHandler.cs +++ b/src/Core/src/Handlers/Image/IImageHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Image; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Image; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Image/ImageHandler.Android.cs b/src/Core/src/Handlers/Image/ImageHandler.Android.cs index e24f1c4c3857..e10e19f3b864 100644 --- a/src/Core/src/Handlers/Image/ImageHandler.Android.cs +++ b/src/Core/src/Handlers/Image/ImageHandler.Android.cs @@ -7,8 +7,8 @@ namespace Microsoft.Maui.Handlers { public partial class ImageHandler : ViewHandler { - protected override ImageView CreatePlatformView() - { + protected override ImageView CreatePlatformView() + { var imageView = new AppCompatImageView(Context); // Enable view bounds adjustment on measure. @@ -47,16 +47,11 @@ public static void MapIsAnimationPlaying(IImageHandler handler, IImage image) => public static void MapSource(IImageHandler handler, IImage image) => MapSourceAsync(handler, image).FireAndForget(handler); - public static Task MapSourceAsync(IImageHandler handler, IImage image) - { - handler.PlatformView.Clear(); - return handler.SourceLoader.UpdateImageSourceAsync(); - } + public static Task MapSourceAsync(IImageHandler handler, IImage image) => + handler.SourceLoader.UpdateImageSourceAsync(); - void OnSetImageSource(Drawable? obj) - { + void OnSetImageSource(Drawable? obj) => PlatformView.SetImageDrawable(obj); - } public override void PlatformArrange(Graphics.Rect frame) { diff --git a/src/Core/src/Handlers/Image/ImageHandler.Standard.cs b/src/Core/src/Handlers/Image/ImageHandler.Standard.cs index 8b36fd3ff87f..aa53e8b303b6 100644 --- a/src/Core/src/Handlers/Image/ImageHandler.Standard.cs +++ b/src/Core/src/Handlers/Image/ImageHandler.Standard.cs @@ -8,10 +8,6 @@ public partial class ImageHandler : ViewHandler public static void MapAspect(IImageHandler handler, IImage image) { } public static void MapIsAnimationPlaying(IImageHandler handler, IImage image) { } public static void MapSource(IImageHandler handler, IImage image) { } - - void OnSetImageSource(object? obj) - { - throw new NotImplementedException(); - } + void OnSetImageSource(object? obj) => throw new NotImplementedException(); } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Image/ImageHandler.Tizen.cs b/src/Core/src/Handlers/Image/ImageHandler.Tizen.cs index c9b2ca87d4ec..f0604f542f4b 100644 --- a/src/Core/src/Handlers/Image/ImageHandler.Tizen.cs +++ b/src/Core/src/Handlers/Image/ImageHandler.Tizen.cs @@ -36,18 +36,12 @@ public static void MapIsAnimationPlaying(IImageHandler handler, IImage image) => public static void MapSource(IImageHandler handler, IImage image) => MapSourceAsync(handler, image).FireAndForget(handler); - public static Task MapSourceAsync(IImageHandler handler, IImage image) - { - if (handler.PlatformView == null) - return Task.CompletedTask; - - handler.PlatformView.Clear(); - return handler.SourceLoader.UpdateImageSourceAsync(); - } + public static Task MapSourceAsync(IImageHandler handler, IImage image) => + handler.SourceLoader.UpdateImageSourceAsync(); void OnSetImageSource(Image? obj) { - //Empty on purpose + // Empty on purpose } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Image/ImageHandler.Windows.cs b/src/Core/src/Handlers/Image/ImageHandler.Windows.cs index d3a9cc3c6c11..3d65a70822a0 100644 --- a/src/Core/src/Handlers/Image/ImageHandler.Windows.cs +++ b/src/Core/src/Handlers/Image/ImageHandler.Windows.cs @@ -35,18 +35,10 @@ public static void MapIsAnimationPlaying(IImageHandler handler, IImage image) => public static void MapSource(IImageHandler handler, IImage image) => MapSourceAsync(handler, image).FireAndForget(handler); - public static Task MapSourceAsync(IImageHandler handler, IImage image) - { - if (handler.PlatformView == null) - return Task.CompletedTask; - - handler.PlatformView.Clear(); - return handler.SourceLoader.UpdateImageSourceAsync(); - } + public static Task MapSourceAsync(IImageHandler handler, IImage image) => + handler.SourceLoader.UpdateImageSourceAsync(); - void OnSetImageSource(ImageSource? obj) - { + void OnSetImageSource(ImageSource? obj) => PlatformView.Source = obj; - } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Image/ImageHandler.cs b/src/Core/src/Handlers/Image/ImageHandler.cs index e0c1b00cfbad..f4b675b784f3 100644 --- a/src/Core/src/Handlers/Image/ImageHandler.cs +++ b/src/Core/src/Handlers/Image/ImageHandler.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Image; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Image; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Image/ImageHandler.iOS.cs b/src/Core/src/Handlers/Image/ImageHandler.iOS.cs index f65ef4fd5ec3..5159b75814fa 100644 --- a/src/Core/src/Handlers/Image/ImageHandler.iOS.cs +++ b/src/Core/src/Handlers/Image/ImageHandler.iOS.cs @@ -23,7 +23,7 @@ protected override void DisconnectHandler(UIImageView platformView) { base.DisconnectHandler(platformView); - if (PlatformView is MauiImageView imageView) + if (platformView is MauiImageView imageView) imageView.WindowChanged -= OnWindowChanged; SourceLoader.Reset(); @@ -49,19 +49,11 @@ public static void MapIsAnimationPlaying(IImageHandler handler, IImage image) => public static void MapSource(IImageHandler handler, IImage image) => MapSourceAsync(handler, image).FireAndForget(handler); - public static Task MapSourceAsync(IImageHandler handler, IImage image) - { - if (handler.PlatformView == null) - return Task.CompletedTask; - - handler.PlatformView.Clear(); - return handler.SourceLoader.UpdateImageSourceAsync(); - } + public static Task MapSourceAsync(IImageHandler handler, IImage image) => + handler.SourceLoader.UpdateImageSourceAsync(); - void OnSetImageSource(UIImage? obj) - { + void OnSetImageSource(UIImage? obj) => PlatformView.Image = obj; - } void OnWindowChanged(object? sender, EventArgs e) { diff --git a/src/Core/src/Handlers/ImageButton/IImageButtonHandler.cs b/src/Core/src/Handlers/ImageButton/IImageButtonHandler.cs index 3c7cb181af53..49bb417a8bde 100644 --- a/src/Core/src/Handlers/ImageButton/IImageButtonHandler.cs +++ b/src/Core/src/Handlers/ImageButton/IImageButtonHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Button; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiImageButton; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Android.cs b/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Android.cs index 7174dc4d1b76..41b639f9db64 100644 --- a/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Android.cs +++ b/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Android.cs @@ -43,6 +43,12 @@ protected override void ConnectHandler(ShapeableImageView platformView) base.ConnectHandler(platformView); } + // TODO: NET7 make this public + internal static void MapBackground(IImageButtonHandler handler, IImageButton imageButton) + { + (handler.PlatformView as ShapeableImageView)?.UpdateBackground(imageButton); + } + public static void MapStrokeColor(IImageButtonHandler handler, IButtonStroke buttonStroke) { (handler.PlatformView as ShapeableImageView)?.UpdateStrokeColor(buttonStroke); diff --git a/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Windows.cs b/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Windows.cs index 0a754c415e21..e67d5af21d57 100644 --- a/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Windows.cs +++ b/src/Core/src/Handlers/ImageButton/ImageButtonHandler.Windows.cs @@ -78,7 +78,7 @@ public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke) { (handler.PlatformView as Button)?.UpdateCornerRadius(buttonStroke); - } + } public static void MapBackground(IImageButtonHandler handler, IImageButton imageButton) { diff --git a/src/Core/src/Handlers/ImageButton/ImageButtonHandler.cs b/src/Core/src/Handlers/ImageButton/ImageButtonHandler.cs index 3e62ef83322f..0533319e3806 100644 --- a/src/Core/src/Handlers/ImageButton/ImageButtonHandler.cs +++ b/src/Core/src/Handlers/ImageButton/ImageButtonHandler.cs @@ -15,7 +15,7 @@ using PlatformImage = Tizen.UIExtensions.ElmSharp.Image; using PlatformImageView = Tizen.UIExtensions.ElmSharp.Image; using PlatformView = Microsoft.Maui.Platform.MauiImageButton; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformImage = System.Object; using PlatformImageView = System.Object; using PlatformView = System.Object; @@ -33,7 +33,7 @@ public partial class ImageButtonHandler : IImageButtonHandler [nameof(IButtonStroke.StrokeColor)] = MapStrokeColor, [nameof(IButtonStroke.CornerRadius)] = MapCornerRadius, [nameof(IImageButton.Padding)] = MapPadding, -#if WINDOWS +#if ANDROID || WINDOWS [nameof(IImageButton.Background)] = MapBackground, #endif }; diff --git a/src/Core/src/Handlers/IndicatorView/IIndicatorViewHandler.cs b/src/Core/src/Handlers/IndicatorView/IIndicatorViewHandler.cs index a3b4d2416dc3..d3f52a1b7eb8 100644 --- a/src/Core/src/Handlers/IndicatorView/IIndicatorViewHandler.cs +++ b/src/Core/src/Handlers/IndicatorView/IIndicatorViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Platform.MauiPageControl; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.IndicatorView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.Tizen.cs b/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.Tizen.cs index d61d08c4377d..d9aee5925037 100644 --- a/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.Tizen.cs +++ b/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.Tizen.cs @@ -35,7 +35,7 @@ public static void MapHideSingle(IIndicatorViewHandler handler, IIndicatorView i [MissingMapper] public static void MapMaximumVisible(IIndicatorViewHandler handler, IIndicatorView indicator) { } - + [MissingMapper] public static void MapIndicatorSize(IIndicatorViewHandler handler, IIndicatorView indicator) { } diff --git a/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.cs b/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.cs index a0c799d08c7a..5932c9763dca 100644 --- a/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.cs +++ b/src/Core/src/Handlers/IndicatorView/IndicatorViewHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.Maui.Platform.MauiPageControl; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.IndicatorView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Label/ILabelHandler.cs b/src/Core/src/Handlers/Label/ILabelHandler.cs index 45402db217a8..fe1c9932900a 100644 --- a/src/Core/src/Handlers/Label/ILabelHandler.cs +++ b/src/Core/src/Handlers/Label/ILabelHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TextBlock; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Label; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Label/LabelHandler.Android.cs b/src/Core/src/Handlers/Label/LabelHandler.Android.cs index 247f8db94c2e..258aa8da3a24 100644 --- a/src/Core/src/Handlers/Label/LabelHandler.Android.cs +++ b/src/Core/src/Handlers/Label/LabelHandler.Android.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Handlers { public partial class LabelHandler : ViewHandler { - protected override AppCompatTextView CreatePlatformView() + protected override AppCompatTextView CreatePlatformView() => new MauiTextView(Context); public override void PlatformArrange(Rect frame) diff --git a/src/Core/src/Handlers/Label/LabelHandler.Tizen.cs b/src/Core/src/Handlers/Label/LabelHandler.Tizen.cs index 80d27783dbb2..f35fdd0e89e9 100644 --- a/src/Core/src/Handlers/Label/LabelHandler.Tizen.cs +++ b/src/Core/src/Handlers/Label/LabelHandler.Tizen.cs @@ -24,7 +24,7 @@ public static void MapBackground(ILabelHandler handler, ILabel label) public static void MapText(ILabelHandler handler, ILabel label) { handler.PlatformView?.UpdateText(label); - + // Any text update requires that we update any attributed string formatting MapFormatting(handler, label); } @@ -65,12 +65,12 @@ public static void MapFormatting(ILabelHandler handler, ILabel label) } [MissingMapper] - public static void MapCharacterSpacing(ILabelHandler handler, ILabel label) {} + public static void MapCharacterSpacing(ILabelHandler handler, ILabel label) { } [MissingMapper] - public static void MapLineHeight(ILabelHandler handler, ILabel label) {} + public static void MapLineHeight(ILabelHandler handler, ILabel label) { } [MissingMapper] - public static void MapPadding(ILabelHandler handler, ILabel label) {} + public static void MapPadding(ILabelHandler handler, ILabel label) { } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Label/LabelHandler.cs b/src/Core/src/Handlers/Label/LabelHandler.cs index 701ed27971d2..13bef46f8849 100644 --- a/src/Core/src/Handlers/Label/LabelHandler.cs +++ b/src/Core/src/Handlers/Label/LabelHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TextBlock; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Label; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Label/LabelHandler.iOS.cs b/src/Core/src/Handlers/Label/LabelHandler.iOS.cs index f01a6d8b02bd..405dc5016577 100644 --- a/src/Core/src/Handlers/Label/LabelHandler.iOS.cs +++ b/src/Core/src/Handlers/Label/LabelHandler.iOS.cs @@ -13,55 +13,6 @@ public partial class LabelHandler : ViewHandler VirtualView?.Background != null || base.NeedsContainer; - - public override void PlatformArrange(Rect rect) - { - base.PlatformArrange(rect); - - if (VirtualView == null) - return; - - SizeF fitSize; - double fitHeight; - var bounds = PlatformView.Bounds; - var offsetFromParent = rect.Y; - - // VerticalTextAlignment currently doesn't work - // if the label is inside a container - // Because the wrapper view resets the frame on the - // wrapped view - if (NeedsContainer) - offsetFromParent = 0; - - switch (VirtualView.VerticalTextAlignment) - { - case Maui.TextAlignment.Start: - fitSize = PlatformView.SizeThatFits(rect.Size.ToCGSize()); - fitHeight = Math.Min(bounds.Height, fitSize.Height); - var startFrame = new RectangleF(rect.X, offsetFromParent, rect.Width, fitHeight); - - if (startFrame != RectangleF.Empty) - PlatformView.Frame = startFrame; - - break; - - case Maui.TextAlignment.Center: - break; - - case Maui.TextAlignment.End: - fitSize = PlatformView.SizeThatFits(rect.Size.ToCGSize()); - fitHeight = Math.Min(bounds.Height, fitSize.Height); - - var yOffset = offsetFromParent + rect.Height - fitHeight; - var endFrame = new RectangleF(rect.X, yOffset, rect.Width, fitHeight); - - if (endFrame != RectangleF.Empty) - PlatformView.Frame = endFrame; - - break; - } - } - public static void MapBackground(ILabelHandler handler, ILabel label) { handler.UpdateValue(nameof(IViewHandler.ContainerView)); diff --git a/src/Core/src/Handlers/Layout/ILayoutHandler.cs b/src/Core/src/Handlers/Layout/ILayoutHandler.cs index abf9e5155bfe..e8e53a58a89b 100644 --- a/src/Core/src/Handlers/Layout/ILayoutHandler.cs +++ b/src/Core/src/Handlers/Layout/ILayoutHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Platform.LayoutPanel; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.LayoutCanvas; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Layout/LayoutExtensions.cs b/src/Core/src/Handlers/Layout/LayoutExtensions.cs index 4bcde8f28730..14d5acff2749 100644 --- a/src/Core/src/Handlers/Layout/LayoutExtensions.cs +++ b/src/Core/src/Handlers/Layout/LayoutExtensions.cs @@ -11,7 +11,7 @@ class ZIndexComparer : IComparer { public int Compare(ViewAndIndex? x, ViewAndIndex? y) { - if(x == null || y == null) + if (x == null || y == null) { return 0; } @@ -31,7 +31,7 @@ public int Compare(ViewAndIndex? x, ViewAndIndex? y) public static IView[] OrderByZIndex(this ILayout layout) { - var count = layout.Count; + var count = layout.Count; var indexedViews = new ViewAndIndex[count]; for (int n = 0; n < count; n++) @@ -40,7 +40,7 @@ public static IView[] OrderByZIndex(this ILayout layout) } Array.Sort(indexedViews, s_comparer); - + var ordered = new IView[count]; for (int n = 0; n < count; n++) diff --git a/src/Core/src/Handlers/Layout/LayoutHandler.Android.cs b/src/Core/src/Handlers/Layout/LayoutHandler.Android.cs index 84f59759f432..8c23875d2d62 100644 --- a/src/Core/src/Handlers/Layout/LayoutHandler.Android.cs +++ b/src/Core/src/Handlers/Layout/LayoutHandler.Android.cs @@ -40,7 +40,7 @@ public override void SetVirtualView(IView view) foreach (var child in VirtualView.OrderByZIndex()) { - PlatformView.SafelyAddView(child.ToPlatform(MauiContext)); + PlatformView.AddView(child.ToPlatform(MauiContext)); } } diff --git a/src/Core/src/Handlers/Layout/LayoutHandler.Tizen.cs b/src/Core/src/Handlers/Layout/LayoutHandler.Tizen.cs index ca99b8bd7d3b..bfa7d07bef03 100644 --- a/src/Core/src/Handlers/Layout/LayoutHandler.Tizen.cs +++ b/src/Core/src/Handlers/Layout/LayoutHandler.Tizen.cs @@ -153,7 +153,7 @@ void EnsureZIndexOrder(IView child) if (targetIndex > currentIndex) { child.ToPlatform(MauiContext!).RaiseTop(); - for (int i = targetIndex+1; i < PlatformView.Children.Count; i++) + for (int i = targetIndex + 1; i < PlatformView.Children.Count; i++) { PlatformView.Children[i].RaiseTop(); } @@ -161,7 +161,7 @@ void EnsureZIndexOrder(IView child) else { child.ToPlatform(MauiContext!).Lower(); - for (int i = targetIndex-1; i >= 0; i--) + for (int i = targetIndex - 1; i >= 0; i--) { PlatformView.Children[i].Lower(); } diff --git a/src/Core/src/Handlers/Layout/LayoutHandler.Windows.cs b/src/Core/src/Handlers/Layout/LayoutHandler.Windows.cs index 8950ad967273..615f81d18cd6 100644 --- a/src/Core/src/Handlers/Layout/LayoutHandler.Windows.cs +++ b/src/Core/src/Handlers/Layout/LayoutHandler.Windows.cs @@ -46,7 +46,7 @@ public void Remove(IView child) } } - public void Clear() + public void Clear() { PlatformView?.Children.Clear(); } @@ -61,7 +61,7 @@ public void Insert(int index, IView child) PlatformView.Children.Insert(targetIndex, child.ToPlatform(MauiContext)); } - public void Update(int index, IView child) + public void Update(int index, IView child) { _ = PlatformView ?? throw new InvalidOperationException($"{nameof(PlatformView)} should have been set by base class."); _ = VirtualView ?? throw new InvalidOperationException($"{nameof(VirtualView)} should have been set by base class."); @@ -71,7 +71,7 @@ public void Update(int index, IView child) EnsureZIndexOrder(child); } - public void UpdateZIndex(IView child) + public void UpdateZIndex(IView child) { _ = PlatformView ?? throw new InvalidOperationException($"{nameof(PlatformView)} should have been set by base class."); _ = VirtualView ?? throw new InvalidOperationException($"{nameof(VirtualView)} should have been set by base class."); @@ -103,7 +103,7 @@ protected override void DisconnectHandler(LayoutPanel platformView) base.DisconnectHandler(platformView); } - void EnsureZIndexOrder(IView child) + void EnsureZIndexOrder(IView child) { if (PlatformView.Children.Count == 0) { @@ -118,7 +118,7 @@ void EnsureZIndexOrder(IView child) } var targetIndex = VirtualView.GetLayoutHandlerIndex(child); - + if (currentIndex != targetIndex) { PlatformView.Children.Move((uint)currentIndex, (uint)targetIndex); diff --git a/src/Core/src/Handlers/MenuBar/IMenuBarHandler.cs b/src/Core/src/Handlers/MenuBar/IMenuBarHandler.cs index 29ca315c5bc9..fc8fa4f50931 100644 --- a/src/Core/src/Handlers/MenuBar/IMenuBarHandler.cs +++ b/src/Core/src/Handlers/MenuBar/IMenuBarHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuBar; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuBar/MenuBarHandler.cs b/src/Core/src/Handlers/MenuBar/MenuBarHandler.cs index 1a73a64056fa..5097878488b6 100644 --- a/src/Core/src/Handlers/MenuBar/MenuBarHandler.cs +++ b/src/Core/src/Handlers/MenuBar/MenuBarHandler.cs @@ -9,7 +9,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuBar; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuBarItem/IMenuBarItemHandler.cs b/src/Core/src/Handlers/MenuBarItem/IMenuBarItemHandler.cs index ce212f46d5b1..a055df6e8c6f 100644 --- a/src/Core/src/Handlers/MenuBarItem/IMenuBarItemHandler.cs +++ b/src/Core/src/Handlers/MenuBarItem/IMenuBarItemHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuBarItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuBarItem/MenuBarItemHandler.cs b/src/Core/src/Handlers/MenuBarItem/MenuBarItemHandler.cs index fe9c543e7c1f..ac934dfc2dcc 100644 --- a/src/Core/src/Handlers/MenuBarItem/MenuBarItemHandler.cs +++ b/src/Core/src/Handlers/MenuBarItem/MenuBarItemHandler.cs @@ -9,7 +9,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuBarItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuFlyoutItem/IMenuFlyoutItemHandler.cs b/src/Core/src/Handlers/MenuFlyoutItem/IMenuFlyoutItemHandler.cs index 47bf7c4afd49..fa8bebc0f704 100644 --- a/src/Core/src/Handlers/MenuFlyoutItem/IMenuFlyoutItemHandler.cs +++ b/src/Core/src/Handlers/MenuFlyoutItem/IMenuFlyoutItemHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuFlyoutItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuFlyoutItem/MenuFlyoutItemHandler.cs b/src/Core/src/Handlers/MenuFlyoutItem/MenuFlyoutItemHandler.cs index 88bcad9fdae5..620a6693d9cd 100644 --- a/src/Core/src/Handlers/MenuFlyoutItem/MenuFlyoutItemHandler.cs +++ b/src/Core/src/Handlers/MenuFlyoutItem/MenuFlyoutItemHandler.cs @@ -9,7 +9,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuFlyoutItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuFlyoutSubItem/IMenuFlyoutSubItemHandler.cs b/src/Core/src/Handlers/MenuFlyoutSubItem/IMenuFlyoutSubItemHandler.cs index ce0736f4bbec..d63c3b06e140 100644 --- a/src/Core/src/Handlers/MenuFlyoutSubItem/IMenuFlyoutSubItemHandler.cs +++ b/src/Core/src/Handlers/MenuFlyoutSubItem/IMenuFlyoutSubItemHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuFlyoutSubItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/MenuFlyoutSubItem/MenuFlyoutSubItemHandler.cs b/src/Core/src/Handlers/MenuFlyoutSubItem/MenuFlyoutSubItemHandler.cs index c400667ba2f7..2fd1e6cece70 100644 --- a/src/Core/src/Handlers/MenuFlyoutSubItem/MenuFlyoutSubItemHandler.cs +++ b/src/Core/src/Handlers/MenuFlyoutSubItem/MenuFlyoutSubItemHandler.cs @@ -9,7 +9,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.MenuFlyoutSubItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/NavigationPage/INavigationViewHandler.cs b/src/Core/src/Handlers/NavigationPage/INavigationViewHandler.cs index 6e381a61b5a7..2b5a8f34990b 100644 --- a/src/Core/src/Handlers/NavigationPage/INavigationViewHandler.cs +++ b/src/Core/src/Handlers/NavigationPage/INavigationViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Frame; #elif TIZEN using PlatformView = ElmSharp.Naviframe; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.Tizen.cs b/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.Tizen.cs index 7504cd099b12..24ec582f6c9f 100644 --- a/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.Tizen.cs +++ b/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.Tizen.cs @@ -286,7 +286,7 @@ string SpanTitle(IView view) { var span = new TSpan { - Text = page.Title??string.Empty, + Text = page.Title ?? string.Empty, HorizontalTextAlignment = TTextAlignment.Center, //ForegroundColor = VirtualView.BarTextColor.ToNative() }; diff --git a/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.cs b/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.cs index a7178093e394..203e286ab6c2 100644 --- a/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.cs +++ b/src/Core/src/Handlers/NavigationPage/NavigationViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Frame; #elif TIZEN using PlatformView = ElmSharp.Naviframe; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Page/PageHandler.Tizen.cs b/src/Core/src/Handlers/Page/PageHandler.Tizen.cs index 457e54dbece0..c43e0f4b73f9 100644 --- a/src/Core/src/Handlers/Page/PageHandler.Tizen.cs +++ b/src/Core/src/Handlers/Page/PageHandler.Tizen.cs @@ -17,7 +17,7 @@ public static void MapBackground(IPageHandler handler, IContentView page) [MissingMapper] public static void MapTitle(IPageHandler handler, IContentView page) { } - + protected override ContentCanvas CreatePlatformView() { var view = base.CreatePlatformView(); diff --git a/src/Core/src/Handlers/Picker/IPickerHandler.cs b/src/Core/src/Handlers/Picker/IPickerHandler.cs index 2e99218d0bb9..4ad631382aeb 100644 --- a/src/Core/src/Handlers/Picker/IPickerHandler.cs +++ b/src/Core/src/Handlers/Picker/IPickerHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ComboBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Picker/PickerHandler.Tizen.cs b/src/Core/src/Handlers/Picker/PickerHandler.Tizen.cs index c0bd8f897c6f..447b268a78e0 100644 --- a/src/Core/src/Handlers/Picker/PickerHandler.Tizen.cs +++ b/src/Core/src/Handlers/Picker/PickerHandler.Tizen.cs @@ -19,12 +19,12 @@ public partial class PickerHandler : ViewHandler protected override TEntry CreatePlatformView() { return new EditfieldEntry(PlatformParent) - { - IsSingleLine = true, - InputPanelShowByOnDemand = true, - IsEditable = false, - HorizontalTextAlignment = TTextAlignment.Center - }; + { + IsSingleLine = true, + InputPanelShowByOnDemand = true, + IsEditable = false, + HorizontalTextAlignment = TTextAlignment.Center + }; } protected override void ConnectHandler(TEntry platformView) diff --git a/src/Core/src/Handlers/Picker/PickerHandler.cs b/src/Core/src/Handlers/Picker/PickerHandler.cs index 58b82bb912df..f64c22ccdd3e 100644 --- a/src/Core/src/Handlers/Picker/PickerHandler.cs +++ b/src/Core/src/Handlers/Picker/PickerHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ComboBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Picker/PickerHandler.iOS.cs b/src/Core/src/Handlers/Picker/PickerHandler.iOS.cs index a0d7313a50a2..4bfde2d78200 100644 --- a/src/Core/src/Handlers/Picker/PickerHandler.iOS.cs +++ b/src/Core/src/Handlers/Picker/PickerHandler.iOS.cs @@ -33,10 +33,10 @@ protected override MauiPicker CreatePlatformView() } #else protected override MauiPicker CreatePlatformView() - { + { var platformPicker = new MauiPicker(null) { BorderStyle = UITextBorderStyle.RoundedRect }; - - platformPicker.ShouldBeginEditing += (textField) => + + platformPicker.ShouldBeginEditing += (textField) => { var alertController = CreateAlert(textField); var platformWindow = MauiContext?.GetPlatformWindow(); @@ -44,44 +44,44 @@ protected override MauiPicker CreatePlatformView() { _ = platformWindow?.RootViewController?.PresentViewControllerAsync(alertController, true); }); - return false; - }; - + return false; + }; + return platformPicker; } - + UIAlertController CreateAlert(UITextField uITextField) { var paddingTitle = 0; - if(!string.IsNullOrEmpty(VirtualView.Title)) - paddingTitle+= 25; - + if (!string.IsNullOrEmpty(VirtualView.Title)) + paddingTitle += 25; + var pickerHeight = 240; var frame = new RectangleF(0, paddingTitle, 269, pickerHeight); var pickerView = new UIPickerView(frame); - pickerView.Model = new PickerSource(this); + pickerView.Model = new PickerSource(this); pickerView?.ReloadAllComponents(); var pickerController = UIAlertController.Create(VirtualView.Title, "", UIAlertControllerStyle.ActionSheet); // needs translation - pickerController.AddAction(UIAlertAction.Create("Done", - UIAlertActionStyle.Default, - action => FinishSelectItem(pickerView,uITextField) + pickerController.AddAction(UIAlertAction.Create("Done", + UIAlertActionStyle.Default, + action => FinishSelectItem(pickerView, uITextField) )); - - if(pickerController.View != null && pickerView != null) + + if (pickerController.View != null && pickerView != null) { pickerController.View.AddSubview(pickerView); var doneButtonHeight = 90; - var height = NSLayoutConstraint.Create(pickerController.View, NSLayoutAttribute.Height, NSLayoutRelation.Equal, null, NSLayoutAttribute.NoAttribute, 1, pickerHeight+doneButtonHeight); + var height = NSLayoutConstraint.Create(pickerController.View, NSLayoutAttribute.Height, NSLayoutRelation.Equal, null, NSLayoutAttribute.NoAttribute, 1, pickerHeight + doneButtonHeight); pickerController.View.AddConstraint(height); } - + var popoverPresentation = pickerController.PopoverPresentationController; - if (popoverPresentation!=null) + if (popoverPresentation != null) { - popoverPresentation.SourceView = uITextField; + popoverPresentation.SourceView = uITextField; popoverPresentation.SourceRect = uITextField.Bounds; } diff --git a/src/Core/src/Handlers/ProgressBar/IProgressBarHandler.cs b/src/Core/src/Handlers/ProgressBar/IProgressBarHandler.cs index 1712fe1e619d..58c7089819e7 100644 --- a/src/Core/src/Handlers/ProgressBar/IProgressBarHandler.cs +++ b/src/Core/src/Handlers/ProgressBar/IProgressBarHandler.cs @@ -4,7 +4,7 @@ using PlatformView = Android.Widget.ProgressBar; #elif WINDOWS using PlatformView = Microsoft.UI.Xaml.Controls.ProgressBar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ProgressBar/ProgressBarHandler.cs b/src/Core/src/Handlers/ProgressBar/ProgressBarHandler.cs index b5757c0d8e61..a44fcebae765 100644 --- a/src/Core/src/Handlers/ProgressBar/ProgressBarHandler.cs +++ b/src/Core/src/Handlers/ProgressBar/ProgressBarHandler.cs @@ -5,7 +5,7 @@ using PlatformView = Android.Widget.ProgressBar; #elif WINDOWS using PlatformView = Microsoft.UI.Xaml.Controls.ProgressBar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/RadioButton/IRadioButtonHandler.cs b/src/Core/src/Handlers/RadioButton/IRadioButtonHandler.cs index fb6dbd17ac3b..b6d467cfa86d 100644 --- a/src/Core/src/Handlers/RadioButton/IRadioButtonHandler.cs +++ b/src/Core/src/Handlers/RadioButton/IRadioButtonHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.RadioButton; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiRadioButton; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/RadioButton/RadioButtonHandler.Android.cs b/src/Core/src/Handlers/RadioButton/RadioButtonHandler.Android.cs index 900efa7ebe2e..425e6b806187 100644 --- a/src/Core/src/Handlers/RadioButton/RadioButtonHandler.Android.cs +++ b/src/Core/src/Handlers/RadioButton/RadioButtonHandler.Android.cs @@ -25,8 +25,7 @@ protected override void ConnectHandler(View platformView) protected override void DisconnectHandler(View platformView) { - AppCompatRadioButton? platformRadioButton = GetPlatformRadioButton(this); - if (platformRadioButton != null) + if (platformView is AppCompatRadioButton platformRadioButton) platformRadioButton.CheckedChange -= OnCheckChanged; } diff --git a/src/Core/src/Handlers/RadioButton/RadioButtonHandler.cs b/src/Core/src/Handlers/RadioButton/RadioButtonHandler.cs index a9bb34f64fea..5bb606d9d183 100644 --- a/src/Core/src/Handlers/RadioButton/RadioButtonHandler.cs +++ b/src/Core/src/Handlers/RadioButton/RadioButtonHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.RadioButton; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiRadioButton; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/RefreshView/IRefreshViewHandler.cs b/src/Core/src/Handlers/RefreshView/IRefreshViewHandler.cs index 46451440c112..b2dee8970dec 100644 --- a/src/Core/src/Handlers/RefreshView/IRefreshViewHandler.cs +++ b/src/Core/src/Handlers/RefreshView/IRefreshViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.RefreshContainer; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/RefreshView/RefreshViewHandler.Windows.cs b/src/Core/src/Handlers/RefreshView/RefreshViewHandler.Windows.cs index 433fc9d829c3..7b44b576e7c3 100644 --- a/src/Core/src/Handlers/RefreshView/RefreshViewHandler.Windows.cs +++ b/src/Core/src/Handlers/RefreshView/RefreshViewHandler.Windows.cs @@ -72,8 +72,8 @@ static void UpdateRefreshColor(IRefreshViewHandler handler) if (handler.VirtualView == null || handler.PlatformView?.Visualizer == null) return; - handler.PlatformView.Visualizer.Foreground = handler.VirtualView.RefreshColor != null - ? handler.VirtualView.RefreshColor.ToPlatform() + handler.PlatformView.Visualizer.Foreground = handler.VirtualView.RefreshColor != null + ? handler.VirtualView.RefreshColor.ToPlatform() : (WBrush)UI.Xaml.Application.Current.Resources["DefaultTextForegroundThemeBrush"]; } diff --git a/src/Core/src/Handlers/RefreshView/RefreshViewHandler.cs b/src/Core/src/Handlers/RefreshView/RefreshViewHandler.cs index 9f072569d98b..e251aa2898d9 100644 --- a/src/Core/src/Handlers/RefreshView/RefreshViewHandler.cs +++ b/src/Core/src/Handlers/RefreshView/RefreshViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.RefreshContainer; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ScrollView/IScrollViewHandler.cs b/src/Core/src/Handlers/ScrollView/IScrollViewHandler.cs index 15c9a5cb2d98..8a912592cebe 100644 --- a/src/Core/src/Handlers/ScrollView/IScrollViewHandler.cs +++ b/src/Core/src/Handlers/ScrollView/IScrollViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ScrollViewer; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.ScrollView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Android.cs b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Android.cs index 79e1eab56e5b..eaa98572422b 100644 --- a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Android.cs +++ b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Android.cs @@ -16,6 +16,7 @@ protected override MauiScrollView CreatePlatformView() Resource.Attribute.scrollViewStyle); scrollView.ClipToOutline = true; + scrollView.FillViewport = true; return scrollView; } @@ -34,14 +35,57 @@ protected override void DisconnectHandler(MauiScrollView platformView) platformView.CrossPlatformArrange = null; } - public override void PlatformArrange(Rect frame) + public override Size GetDesiredSize(double widthConstraint, double heightConstraint) { - base.PlatformArrange(frame); + var Context = MauiContext?.Context; + var platformView = PlatformView; + var virtualView = VirtualView; - if (FindInsetPanel(this) is ContentViewGroup paddingLayer) + if (platformView == null || virtualView == null || Context == null) { - paddingLayer.Layout(0, 0, paddingLayer.MeasuredWidth, paddingLayer.MeasuredHeight); + return Size.Zero; } + + // Create a spec to handle the native measure + var widthSpec = Context.CreateMeasureSpec(widthConstraint, virtualView.Width, virtualView.MaximumWidth); + var heightSpec = Context.CreateMeasureSpec(heightConstraint, virtualView.Height, virtualView.MaximumHeight); + + if (platformView.FillViewport) + { + /* With FillViewport active, the Android ScrollView will measure the content at least once; if it is + smaller than the ScrollView's viewport, it measure a second time at the size of the viewport + so that the content can properly vill the whole viewport. But it will only do this if the measurespec + is set to Exactly. So if we want our ScrollView to Fill the space in the scroll direction, we need to + adjust the MeasureSpec accordingly. If the ScrollView is not set to Fill, we can just leave the spec + alone and the ScrollView will size to its content as usual. */ + + var orientation = virtualView.Orientation; + + if (orientation == ScrollOrientation.Both || orientation == ScrollOrientation.Vertical) + { + heightSpec = AdjustSpecForAlignment(heightSpec, virtualView.VerticalLayoutAlignment); + } + + if (orientation == ScrollOrientation.Both || orientation == ScrollOrientation.Horizontal) + { + widthSpec = AdjustSpecForAlignment(widthSpec, virtualView.HorizontalLayoutAlignment); + } + } + + platformView.Measure(widthSpec, heightSpec); + + // Convert back to xplat sizes for the return value + return Context.FromPixels(platformView.MeasuredWidth, platformView.MeasuredHeight); + } + + static int AdjustSpecForAlignment(int measureSpec, Primitives.LayoutAlignment alignment) + { + if (alignment == Primitives.LayoutAlignment.Fill && measureSpec.GetMode() == MeasureSpecMode.AtMost) + { + return MeasureSpecMode.Exactly.MakeMeasureSpec(measureSpec.GetSize()); + } + + return measureSpec; } void ScrollChange(object? sender, AndroidX.Core.Widget.NestedScrollView.ScrollChangeEventArgs e) @@ -62,14 +106,7 @@ public static void MapContent(IScrollViewHandler handler, IScrollView scrollView if (handler.PlatformView == null || handler.MauiContext == null) return; - if (NeedsInsetView(scrollView)) - { - UpdateInsetView(scrollView, handler); - } - else - { - handler.PlatformView.UpdateContent(scrollView.PresentedContent, handler.MauiContext); - } + UpdateInsetView(scrollView, handler); } public static void MapHorizontalScrollBarVisibility(IScrollViewHandler handler, IScrollView scrollView) @@ -116,35 +153,13 @@ public static void MapRequestScrollTo(IScrollViewHandler handler, IScrollView sc making native Measure calls. The internal content size values recorded by the native ScrollView will not account for the margin, and the control won't scroll all the way to the bottom of the content. - To handle both issues, we detect whether the content has a Margin or the cross-platform ScrollView has a Padding; - if so, we insert a container ContentViewGroup which always lays out at the origin but provides both the Padding - and the Margin for the content. The extra layer is only inserted if necessary, and is removed if the Padding - and Margin are set to zero. The extra layer uses the native ContentViewGroup control (the same one we already - use as the backing for ContentView, Page, etc.). + To handle both issues, we insert a container ContentViewGroup which always lays out at the origin but provides + both the Padding and the Margin for the content. The extra layer also provides cross-platform measurement and layout. + The extra layer uses the native ContentViewGroup control (the same one we already use as the backing for ContentView, Page, etc.). The methods below exist to support inserting/updating the extra padding/margin layer. */ - static bool NeedsInsetView(IScrollView scrollView) - { - if (scrollView.PresentedContent == null) - { - return false; - } - - if (scrollView.Padding != Thickness.Zero) - { - return true; - } - - if (scrollView.PresentedContent.Margin != Thickness.Zero) - { - return true; - } - - return false; - } - static ContentViewGroup? FindInsetPanel(IScrollViewHandler handler) { return handler.PlatformView.FindViewWithTag(InsetPanelTag) as ContentViewGroup; @@ -182,7 +197,7 @@ static void InsertInsetView(IScrollViewHandler handler, IScrollView scrollView, var paddingShim = new ContentViewGroup(handler.MauiContext.Context) { - CrossPlatformMeasure = IncludeScrollViewInsets(scrollView.CrossPlatformMeasure, scrollView), + CrossPlatformMeasure = IncludeScrollViewInsets(scrollView.PresentedContent.Measure, scrollView), Tag = InsetPanelTag }; diff --git a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Tizen.cs b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Tizen.cs index 3ff1a76edb2f..da8ce2bf7ea3 100644 --- a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Tizen.cs +++ b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Tizen.cs @@ -11,7 +11,7 @@ public partial class ScrollViewHandler : ViewHandler { EContainer? _scrollCanvas; - Box? Canvas => (Box?)_scrollCanvas; + LayoutCanvas? Canvas => (LayoutCanvas?)_scrollCanvas; protected override ScrollView CreatePlatformView() { @@ -22,12 +22,14 @@ protected override ScrollView CreatePlatformView() WeightX = 1, WeightY = 1 }; - _scrollCanvas = new Box(scrollView) + _scrollCanvas = new LayoutCanvas(scrollView, VirtualView) { AlignmentX = -1, AlignmentY = -1, WeightX = 1, - WeightY = 1 + WeightY = 1, + CrossPlatformArrange = VirtualView.CrossPlatformArrange, + CrossPlatformMeasure = VirtualView.CrossPlatformMeasure }; scrollView.SetContent(_scrollCanvas); return scrollView; @@ -92,8 +94,8 @@ void UpdateContentSize() _ = Canvas ?? throw new InvalidOperationException($"{nameof(Canvas)} cannot be null"); if (VirtualView == null || VirtualView.PresentedContent == null) - return; - + return; + Canvas.MinimumWidth = (VirtualView.PresentedContent.Margin.HorizontalThickness + VirtualView.PresentedContent.Frame.Width + VirtualView.Padding.HorizontalThickness).ToScaledPixel(); Canvas.MinimumHeight = (VirtualView.PresentedContent.Margin.VerticalThickness + VirtualView.PresentedContent.Frame.Height + VirtualView.Padding.VerticalThickness).ToScaledPixel(); diff --git a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Windows.cs b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Windows.cs index 936edad8f62b..84bae4379d01 100644 --- a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Windows.cs +++ b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.Windows.cs @@ -31,16 +31,6 @@ protected override void DisconnectHandler(ScrollViewer platformView) platformView.ViewChanged -= ViewChanged; } - public override Size GetDesiredSize(double widthConstraint, double heightConstraint) - { - widthConstraint = Math.Max(widthConstraint, 0); - heightConstraint = Math.Max(heightConstraint, 0); - - var result = base.GetDesiredSize(widthConstraint, heightConstraint); - - return result; - } - public static void MapContent(IScrollViewHandler handler, IScrollView scrollView) { if (handler.PlatformView == null || handler.MauiContext == null) @@ -100,7 +90,7 @@ to arrange it at an offset. This defeats our content's Margin properties. The methods below exist to support inserting/updating the padding/margin panel. */ - static ContentPanel? GetContentPanel(ScrollViewer scrollViewer) + static ContentPanel? GetContentPanel(ScrollViewer scrollViewer) { if (scrollViewer.Content is ContentPanel contentPanel) { @@ -129,6 +119,7 @@ static void UpdateContentPanel(IScrollView scrollView, IScrollViewHandler handle { currentPaddingLayer.Children.Clear(); currentPaddingLayer.Children.Add(nativeContent); + } } else @@ -164,7 +155,7 @@ static Func IncludeScrollViewInsets(Func internalMeasure, IScrollView scrollView) + static Size InsetScrollView(double widthConstraint, double heightConstraint, Func internalMeasure, IScrollView scrollView) { var padding = scrollView.Padding; var presentedContent = scrollView.PresentedContent; diff --git a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.cs b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.cs index d26e7d7b6eab..1aea52f62b02 100644 --- a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.cs +++ b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ScrollViewer; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.ScrollView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif @@ -23,7 +23,6 @@ public partial class ScrollViewHandler : IScrollViewHandler [nameof(IScrollView.VerticalScrollBarVisibility)] = MapVerticalScrollBarVisibility, [nameof(IScrollView.Orientation)] = MapOrientation, #if __IOS__ - [nameof(IScrollView.ContentSize)] = MapContentSize, [nameof(IScrollView.IsEnabled)] = MapIsEnabled, #endif }; diff --git a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs index 5b3618371c74..dde9f8fc56ae 100644 --- a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs +++ b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs @@ -1,15 +1,20 @@ using System; using System.Collections.Generic; +using System.Drawing; using System.Text; using CoreGraphics; using Microsoft.Maui.Graphics; +using Microsoft.Maui.Layouts; using ObjCRuntime; using UIKit; +using Size = Microsoft.Maui.Graphics.Size; namespace Microsoft.Maui.Handlers { public partial class ScrollViewHandler : ViewHandler { + const nint ContentPanelTag = 0x845fed; + protected override UIScrollView CreatePlatformView() { return new UIScrollView(); @@ -31,32 +36,6 @@ protected override void DisconnectHandler(UIScrollView platformView) platformView.ScrollAnimationEnded -= ScrollAnimationEnded; } - public override Size GetDesiredSize(double widthConstraint, double heightConstraint) - { - var platformView = this.ToPlatform(); - - if (platformView == null || VirtualView == null) - { - return new Size(widthConstraint, heightConstraint); - } - - VirtualView.CrossPlatformMeasure(widthConstraint, heightConstraint); - - var explicitWidth = VirtualView.Width; - var explicitHeight = VirtualView.Height; - var hasExplicitWidth = explicitWidth >= 0; - var hasExplicitHeight = explicitHeight >= 0; - - var sizeThatFits = platformView.SizeThatFits(new CGSize((float)widthConstraint, (float)heightConstraint)); - - var size = new Size( - sizeThatFits.Width > 0 ? sizeThatFits.Width : PlatformView.ContentSize.Width, - sizeThatFits.Height > 0 ? sizeThatFits.Height : PlatformView.ContentSize.Height); - - return new Size(hasExplicitWidth ? explicitWidth : size.Width, - hasExplicitHeight ? explicitHeight : size.Height); - } - void ScrollAnimationEnded(object? sender, EventArgs e) { VirtualView.ScrollFinished(); @@ -73,9 +52,10 @@ public static void MapContent(IScrollViewHandler handler, IScrollView scrollView if (handler.PlatformView == null || handler.MauiContext == null) return; - handler.PlatformView.UpdateContent(scrollView.PresentedContent, handler.MauiContext); + UpdateContentView(scrollView, handler); } + // We don't actually have this mapped because we don't need it, but we can't remove it because it's public public static void MapContentSize(IScrollViewHandler handler, IScrollView scrollView) { handler.PlatformView.UpdateContentSize(scrollView.ContentSize); @@ -113,5 +93,191 @@ public static void MapRequestScrollTo(IScrollViewHandler handler, IScrollView sc } } } + + // Find the internal ContentView; it may not be Subviews[0] because of the scrollbars + static ContentView? GetContentView(UIScrollView scrollView) + { + for (int n = 0; n < scrollView.Subviews.Length; n++) + { + if (scrollView.Subviews[n] is ContentView contentView) + { + if (contentView.Tag is nint tag && tag == ContentPanelTag) + { + return contentView; + } + } + } + + return null; + } + + static void UpdateContentView(IScrollView scrollView, IScrollViewHandler handler) + { + if (scrollView.PresentedContent == null || handler.MauiContext == null) + { + return; + } + + var platformScrollView = handler.PlatformView; + var nativeContent = scrollView.PresentedContent.ToPlatform(handler.MauiContext); + + if (GetContentView(platformScrollView) is ContentView currentContentContainer) + { + if (currentContentContainer.Subviews.Length == 0 || currentContentContainer.Subviews[0] != nativeContent) + { + currentContentContainer.ClearSubviews(); + currentContentContainer.AddSubview(nativeContent); + currentContentContainer.View = scrollView.PresentedContent; + } + } + else + { + InsertContentView(platformScrollView, scrollView, nativeContent); + } + } + + static void InsertContentView(UIScrollView platformScrollView, IScrollView scrollView, UIView platformContent) + { + if (scrollView.PresentedContent == null) + { + return; + } + + var contentContainer = new ContentView() + { + View = scrollView.PresentedContent, + CrossPlatformMeasure = ConstrainToScrollView(scrollView.CrossPlatformMeasure, platformScrollView, scrollView), + Tag = ContentPanelTag + }; + + contentContainer.CrossPlatformArrange = ArrangeScrollViewContent(scrollView.CrossPlatformArrange, contentContainer); + + platformScrollView.ClearSubviews(); + contentContainer.AddSubview(platformContent); + platformScrollView.AddSubview(contentContainer); + } + + static Func ArrangeScrollViewContent(Func internalArrange, ContentView container) + { + return (rect) => + { + if (container.Superview is UIScrollView scrollView) + { + // Ensure the container is at least the size of the UIScrollView itself, so that the + // cross-platform layout logic makes sense and the contents don't arrange out side the + // container. (Everything will look correct if they do, but hit testing won't work properly.) + + var scrollViewBounds = scrollView.Bounds; + var containerBounds = container.Bounds; + + container.Bounds = new CGRect(0, 0, + Math.Max(containerBounds.Width, scrollViewBounds.Width), + Math.Max(containerBounds.Height, scrollViewBounds.Height)); + container.Center = new CGPoint(container.Bounds.GetMidX(), container.Bounds.GetMidY()); + } + + return internalArrange(rect); + }; + } + + static Func ConstrainToScrollView(Func internalMeasure, UIScrollView platformScrollView, IScrollView scrollView) + { + return (widthConstraint, heightConstraint) => + { + return MeasureScrollViewContent(widthConstraint, heightConstraint, internalMeasure, platformScrollView, scrollView); + }; + } + + static Size MeasureScrollViewContent(double widthConstraint, double heightConstraint, Func internalMeasure, UIScrollView platformScrollView, IScrollView scrollView) + { + var presentedContent = scrollView.PresentedContent; + if (presentedContent == null) + { + return Size.Zero; + } + + var scrollViewBounds = platformScrollView.Bounds; + var padding = scrollView.Padding; + + if (widthConstraint == 0) + { + widthConstraint = scrollViewBounds.Width; + } + + if (heightConstraint == 0) + { + heightConstraint = scrollViewBounds.Height; + } + + // Account for the ScrollView Padding before measuring the content + widthConstraint = AccountForPadding(widthConstraint, padding.HorizontalThickness); + heightConstraint = AccountForPadding(heightConstraint, padding.VerticalThickness); + + var result = internalMeasure.Invoke(widthConstraint, heightConstraint); + + return result.AdjustForFill(new Rect(0, 0, widthConstraint, heightConstraint), presentedContent); + } + + public override Size GetDesiredSize(double widthConstraint, double heightConstraint) + { + var virtualView = VirtualView; + var platformView = PlatformView; + + if (platformView == null || virtualView == null || virtualView.PresentedContent == null) + { + return new Size(widthConstraint, heightConstraint); + } + + var padding = virtualView.Padding; + + // Account for the ScrollView Padding before measuring the content + widthConstraint = AccountForPadding(widthConstraint, padding.HorizontalThickness); + heightConstraint = AccountForPadding(heightConstraint, padding.VerticalThickness); + + var size = virtualView.CrossPlatformMeasure(widthConstraint, heightConstraint); + + // Add the padding back in for the final size + size.Width += padding.HorizontalThickness; + size.Height += padding.VerticalThickness; + + platformView.ContentSize = size; + + var finalWidth = ViewHandlerExtensions.ResolveConstraints(size.Width, virtualView.Width, virtualView.MinimumWidth, virtualView.MaximumWidth); + var finalHeight = ViewHandlerExtensions.ResolveConstraints(size.Height, virtualView.Height, virtualView.MinimumHeight, virtualView.MaximumHeight); + + return new Size(finalWidth, finalHeight); + } + + public override void PlatformArrange(Rect rect) + { + base.PlatformArrange(rect); + + // Ensure that the content container for the ScrollView gets arranged, and is large enough + // to contain the ScrollView's content + + var contentView = GetContentView(PlatformView); + + if (contentView == null) + { + return; + } + + var desiredSize = VirtualView.PresentedContent?.DesiredSize ?? Size.Zero; + var scrollViewPadding = VirtualView.Padding; + var platformViewBounds = PlatformView.Bounds; + + var contentBounds = new CGRect(0, 0, + Math.Max(desiredSize.Width + scrollViewPadding.HorizontalThickness, platformViewBounds.Width), + Math.Max(desiredSize.Height + scrollViewPadding.VerticalThickness, platformViewBounds.Height)); + + contentView.Bounds = contentBounds; + contentView.Center = new CGPoint(contentBounds.GetMidX(), contentBounds.GetMidY()); + } + + static double AccountForPadding(double constraint, double padding) + { + // Remove the padding from the constraint, but don't allow it to go negative + return Math.Max(0, constraint - padding); + } } } diff --git a/src/Core/src/Handlers/SearchBar/ISearchBarHandler.cs b/src/Core/src/Handlers/SearchBar/ISearchBarHandler.cs index 755dd6560e69..a7a51fecc79f 100644 --- a/src/Core/src/Handlers/SearchBar/ISearchBarHandler.cs +++ b/src/Core/src/Handlers/SearchBar/ISearchBarHandler.cs @@ -11,7 +11,7 @@ #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.SearchBar; using QueryEditor = Tizen.UIExtensions.ElmSharp.EditfieldEntry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; using QueryEditor = System.Object; #endif diff --git a/src/Core/src/Handlers/SearchBar/SearchBarHandler.Android.cs b/src/Core/src/Handlers/SearchBar/SearchBarHandler.Android.cs index e8ac33319ff8..518f5a97a382 100644 --- a/src/Core/src/Handlers/SearchBar/SearchBarHandler.Android.cs +++ b/src/Core/src/Handlers/SearchBar/SearchBarHandler.Android.cs @@ -1,4 +1,4 @@ -using Android.Content.Res; +using Android.Content.Res; using Android.Graphics.Drawables; using Android.Widget; using static AndroidX.AppCompat.Widget.SearchView; @@ -36,7 +36,6 @@ protected override void DisconnectHandler(SearchView platformView) platformView.QueryTextSubmit -= OnQueryTextSubmit; } - // This is a Android-specific mapping public static void MapBackground(ISearchBarHandler handler, ISearchBar searchBar) { handler.PlatformView?.UpdateBackground(searchBar); diff --git a/src/Core/src/Handlers/SearchBar/SearchBarHandler.Tizen.cs b/src/Core/src/Handlers/SearchBar/SearchBarHandler.Tizen.cs index 162a60348e5f..50dfb7f23a35 100644 --- a/src/Core/src/Handlers/SearchBar/SearchBarHandler.Tizen.cs +++ b/src/Core/src/Handlers/SearchBar/SearchBarHandler.Tizen.cs @@ -41,6 +41,12 @@ protected override void DisconnectHandler(SearchBar platformView) platformView.EntryLayoutUnfocused -= OnUnfocused; } + // TODO: NET7 make this public + internal static void MapBackground(ISearchBarHandler handler, ISearchBar searchBar) + { + handler.PlatformView?.UpdateBackground(searchBar); + } + public static void MapText(ISearchBarHandler handler, ISearchBar searchBar) { handler.PlatformView?.UpdateText(searchBar); diff --git a/src/Core/src/Handlers/SearchBar/SearchBarHandler.Windows.cs b/src/Core/src/Handlers/SearchBar/SearchBarHandler.Windows.cs index b2eb3b8e6411..fd73e0a6c4d8 100644 --- a/src/Core/src/Handlers/SearchBar/SearchBarHandler.Windows.cs +++ b/src/Core/src/Handlers/SearchBar/SearchBarHandler.Windows.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Handlers { public partial class SearchBarHandler : ViewHandler - { + { public AutoSuggestBox? QueryEditor => null; protected override AutoSuggestBox CreatePlatformView() => new AutoSuggestBox @@ -47,7 +47,7 @@ public static void MapPlaceholder(ISearchBarHandler handler, ISearchBar searchBa { handler.PlatformView?.UpdatePlaceholder(searchBar); } - + public static void MapVerticalTextAlignment(ISearchBarHandler handler, ISearchBar searchBar) { handler.PlatformView?.UpdateVerticalTextAlignment(searchBar); @@ -80,7 +80,7 @@ public static void MapTextColor(ISearchBarHandler handler, ISearchBar searchBar) handler?.PlatformView?.UpdateTextColor(searchBar); } - public static void MapIsTextPredictionEnabled(ISearchBarHandler handler, ISearchBar searchBar) + public static void MapIsTextPredictionEnabled(ISearchBarHandler handler, ISearchBar searchBar) { handler.PlatformView?.UpdateIsTextPredictionEnabled(searchBar); } diff --git a/src/Core/src/Handlers/SearchBar/SearchBarHandler.cs b/src/Core/src/Handlers/SearchBar/SearchBarHandler.cs index e857373d47ad..ee2d22438dbf 100644 --- a/src/Core/src/Handlers/SearchBar/SearchBarHandler.cs +++ b/src/Core/src/Handlers/SearchBar/SearchBarHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.AutoSuggestBox; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.SearchBar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif @@ -17,11 +17,10 @@ public partial class SearchBarHandler : ISearchBarHandler { public static IPropertyMapper Mapper = new PropertyMapper(ViewHandler.ViewMapper) { -#if __ANDROID__ || __WINDOWS__ - [nameof(ISearchBar.Background)] = MapBackground, -#elif __IOS__ +#if __IOS__ [nameof(ISearchBar.IsEnabled)] = MapIsEnabled, #endif + [nameof(ISearchBar.Background)] = MapBackground, [nameof(ISearchBar.CharacterSpacing)] = MapCharacterSpacing, [nameof(ISearchBar.Font)] = MapFont, [nameof(ITextAlignment.HorizontalTextAlignment)] = MapHorizontalTextAlignment, diff --git a/src/Core/src/Handlers/SearchBar/SearchBarHandler.iOS.cs b/src/Core/src/Handlers/SearchBar/SearchBarHandler.iOS.cs index 8076e21eb697..ae5747f49b78 100644 --- a/src/Core/src/Handlers/SearchBar/SearchBarHandler.iOS.cs +++ b/src/Core/src/Handlers/SearchBar/SearchBarHandler.iOS.cs @@ -1,4 +1,4 @@ -using System; +using System; using Foundation; using Microsoft.Maui.Graphics; using UIKit; @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Handlers public partial class SearchBarHandler : ViewHandler { UITextField? _editor; - + public UITextField? QueryEditor => _editor; protected override MauiSearchBar CreatePlatformView() @@ -66,6 +66,12 @@ public override Size GetDesiredSize(double widthConstraint, double heightConstra return base.GetDesiredSize(widthConstraint, heightConstraint); } + // TODO: NET7 make this public + internal static void MapBackground(ISearchBarHandler handler, ISearchBar searchBar) + { + handler.PlatformView?.UpdateBackground(searchBar); + } + public static void MapIsEnabled(ISearchBarHandler handler, ISearchBar searchBar) { handler.PlatformView?.UpdateIsEnabled(searchBar); diff --git a/src/Core/src/Handlers/ShapeView/IShapeViewHandler.cs b/src/Core/src/Handlers/ShapeView/IShapeViewHandler.cs index 5dc709baa977..938e220189fc 100644 --- a/src/Core/src/Handlers/ShapeView/IShapeViewHandler.cs +++ b/src/Core/src/Handlers/ShapeView/IShapeViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Graphics.Win2D.W2DGraphicsView; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiShapeView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Android.cs b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Android.cs index 3b8e63a8ce38..4436fefcc636 100644 --- a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Android.cs +++ b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Android.cs @@ -2,7 +2,7 @@ { public partial class ShapeViewHandler : ViewHandler { - protected override MauiShapeView CreatePlatformView() + protected override MauiShapeView CreatePlatformView() => new MauiShapeView(Context); public override bool NeedsContainer => diff --git a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Tizen.cs b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Tizen.cs index e444e401cd79..03dd339b8758 100644 --- a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Tizen.cs +++ b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.Tizen.cs @@ -27,7 +27,7 @@ public static void MapShape(IShapeViewHandler handler, IShapeView shapeView) if (handler.ContainerView is WrapperView wrapperView) wrapperView.UpdateShape(shapeView.Shape); } - + public static void MapAspect(IShapeViewHandler handler, IShapeView shapeView) { handler.PlatformView?.InvalidateShape(shapeView); diff --git a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.cs b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.cs index 3f8d666e2da3..9dee9345c3e5 100644 --- a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.cs +++ b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Graphics.Win2D.W2DGraphicsView; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiShapeView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.iOS.cs b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.iOS.cs index 417ae42ff1b2..45c47db79090 100644 --- a/src/Core/src/Handlers/ShapeView/ShapeViewHandler.iOS.cs +++ b/src/Core/src/Handlers/ShapeView/ShapeViewHandler.iOS.cs @@ -4,7 +4,7 @@ namespace Microsoft.Maui.Handlers { public partial class ShapeViewHandler : ViewHandler { - protected override MauiShapeView CreatePlatformView() + protected override MauiShapeView CreatePlatformView() => new MauiShapeView(); public override bool NeedsContainer => diff --git a/src/Core/src/Handlers/Slider/ISliderHandler.cs b/src/Core/src/Handlers/Slider/ISliderHandler.cs index 7ae01a8ff75d..a2ee0decfd7d 100644 --- a/src/Core/src/Handlers/Slider/ISliderHandler.cs +++ b/src/Core/src/Handlers/Slider/ISliderHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Slider; #elif TIZEN using PlatformView = ElmSharp.Slider; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Slider/SliderHandler.cs b/src/Core/src/Handlers/Slider/SliderHandler.cs index 4296c33d4fbb..1ec9bb25a0b5 100644 --- a/src/Core/src/Handlers/Slider/SliderHandler.cs +++ b/src/Core/src/Handlers/Slider/SliderHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.Slider; #elif TIZEN using PlatformView = ElmSharp.Slider; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Stepper/IStepperHandler.cs b/src/Core/src/Handlers/Stepper/IStepperHandler.cs index 49bc2b711c43..5564d1d81b3d 100644 --- a/src/Core/src/Handlers/Stepper/IStepperHandler.cs +++ b/src/Core/src/Handlers/Stepper/IStepperHandler.cs @@ -4,7 +4,7 @@ using PlatformView = Microsoft.Maui.Platform.MauiStepper; #elif WINDOWS using PlatformView = Microsoft.Maui.Platform.MauiStepper; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Stepper/StepperHandler.Windows.cs b/src/Core/src/Handlers/Stepper/StepperHandler.Windows.cs index 209d27986df3..35fd4d0aede0 100644 --- a/src/Core/src/Handlers/Stepper/StepperHandler.Windows.cs +++ b/src/Core/src/Handlers/Stepper/StepperHandler.Windows.cs @@ -21,24 +21,24 @@ protected override void DisconnectHandler(MauiStepper platformView) base.DisconnectHandler(platformView); } - public static void MapMinimum(IStepperHandler handler, IStepper stepper) - { - handler.PlatformView?.UpdateMinimum(stepper); + public static void MapMinimum(IStepperHandler handler, IStepper stepper) + { + handler.PlatformView?.UpdateMinimum(stepper); } - public static void MapMaximum(IStepperHandler handler, IStepper stepper) - { - handler.PlatformView?.UpdateMaximum(stepper); + public static void MapMaximum(IStepperHandler handler, IStepper stepper) + { + handler.PlatformView?.UpdateMaximum(stepper); } - public static void MapIncrement(IStepperHandler handler, IStepper stepper) - { - handler.PlatformView?.UpdateInterval(stepper); + public static void MapIncrement(IStepperHandler handler, IStepper stepper) + { + handler.PlatformView?.UpdateInterval(stepper); } - public static void MapValue(IStepperHandler handler, IStepper stepper) - { - handler.PlatformView?.UpdateValue(stepper); + public static void MapValue(IStepperHandler handler, IStepper stepper) + { + handler.PlatformView?.UpdateValue(stepper); } // This is a Windows-specific mapping diff --git a/src/Core/src/Handlers/Stepper/StepperHandler.cs b/src/Core/src/Handlers/Stepper/StepperHandler.cs index 54894bb7758b..4b371f9785a3 100644 --- a/src/Core/src/Handlers/Stepper/StepperHandler.cs +++ b/src/Core/src/Handlers/Stepper/StepperHandler.cs @@ -4,7 +4,7 @@ using PlatformView = Microsoft.Maui.Platform.MauiStepper; #elif WINDOWS using PlatformView = Microsoft.Maui.Platform.MauiStepper; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/SwipeItemMenuItem/ISwipeItemMenuItemHandler.cs b/src/Core/src/Handlers/SwipeItemMenuItem/ISwipeItemMenuItemHandler.cs index 39b27aaab002..3c959d14fe08 100644 --- a/src/Core/src/Handlers/SwipeItemMenuItem/ISwipeItemMenuItemHandler.cs +++ b/src/Core/src/Handlers/SwipeItemMenuItem/ISwipeItemMenuItemHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.SwipeItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.Windows.cs b/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.Windows.cs index 796b982dc621..346b3926dfdf 100644 --- a/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.Windows.cs +++ b/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.Windows.cs @@ -16,7 +16,7 @@ public static void MapCharacterSpacing(ISwipeItemMenuItemHandler handler, ITextS public static void MapFont(ISwipeItemMenuItemHandler handler, ITextStyle view) { } - public static void MapText(ISwipeItemMenuItemHandler handler, ISwipeItemMenuItem view) + public static void MapText(ISwipeItemMenuItemHandler handler, ISwipeItemMenuItem view) { handler.PlatformView.Text = view.Text; } diff --git a/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.cs b/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.cs index c65aeee27310..a69ea4d77a25 100644 --- a/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.cs +++ b/src/Core/src/Handlers/SwipeItemMenuItem/SwipeItemMenuItemHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.SwipeItem; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/SwipeItemView/ISwipeItemViewHandler.cs b/src/Core/src/Handlers/SwipeItemView/ISwipeItemViewHandler.cs index 3c5c14b32a05..7f720d1f94a0 100644 --- a/src/Core/src/Handlers/SwipeItemView/ISwipeItemViewHandler.cs +++ b/src/Core/src/Handlers/SwipeItemView/ISwipeItemViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.FrameworkElement; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.ContentCanvas; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/SwipeItemView/SwipeItemViewHandler.cs b/src/Core/src/Handlers/SwipeItemView/SwipeItemViewHandler.cs index e90a2ee8c431..b69d582d008b 100644 --- a/src/Core/src/Handlers/SwipeItemView/SwipeItemViewHandler.cs +++ b/src/Core/src/Handlers/SwipeItemView/SwipeItemViewHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.FrameworkElement; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.ContentCanvas; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/SwipeView/ISwipeViewHandler.cs b/src/Core/src/Handlers/SwipeView/ISwipeViewHandler.cs index 9180110007dc..4d6e67797523 100644 --- a/src/Core/src/Handlers/SwipeView/ISwipeViewHandler.cs +++ b/src/Core/src/Handlers/SwipeView/ISwipeViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.SwipeControl; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/SwipeView/SwipeViewHandler.Windows.cs b/src/Core/src/Handlers/SwipeView/SwipeViewHandler.Windows.cs index 5367a71e8d99..3256ae87d2a1 100644 --- a/src/Core/src/Handlers/SwipeView/SwipeViewHandler.Windows.cs +++ b/src/Core/src/Handlers/SwipeView/SwipeViewHandler.Windows.cs @@ -65,7 +65,7 @@ void OnLoaded(object sender, UI.Xaml.RoutedEventArgs e) { if (!PlatformView.IsLoaded) return; - + // Setting the Left/Right Items before the view has loaded causes the Swipe Control // to crash on the first layout pass. So we wait until the control has been loaded // before propagating our Left/Right Items @@ -112,7 +112,7 @@ static void UpdateSwipeItems( try { - if(wSwipeItems != null || items.Count > 0) + if (wSwipeItems != null || items.Count > 0) setSwipeItems(items); } catch diff --git a/src/Core/src/Handlers/SwipeView/SwipeViewHandler.cs b/src/Core/src/Handlers/SwipeView/SwipeViewHandler.cs index 29718be83fca..d8ae7e7ee6f7 100644 --- a/src/Core/src/Handlers/SwipeView/SwipeViewHandler.cs +++ b/src/Core/src/Handlers/SwipeView/SwipeViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.SwipeControl; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Switch/ISwitchHandler.cs b/src/Core/src/Handlers/Switch/ISwitchHandler.cs index a4c46b427760..bafc8bb48532 100644 --- a/src/Core/src/Handlers/Switch/ISwitchHandler.cs +++ b/src/Core/src/Handlers/Switch/ISwitchHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ToggleSwitch; #elif TIZEN using PlatformView = ElmSharp.Check; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Switch/SwitchHandler.cs b/src/Core/src/Handlers/Switch/SwitchHandler.cs index 02d98d7f6a9d..7b386186c6be 100644 --- a/src/Core/src/Handlers/Switch/SwitchHandler.cs +++ b/src/Core/src/Handlers/Switch/SwitchHandler.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.ToggleSwitch; #elif TIZEN using PlatformView = ElmSharp.Check; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/TabbedView/TabbedViewHandler.cs b/src/Core/src/Handlers/TabbedView/TabbedViewHandler.cs index 528622384500..4e8eeb0e7ca6 100644 --- a/src/Core/src/Handlers/TabbedView/TabbedViewHandler.cs +++ b/src/Core/src/Handlers/TabbedView/TabbedViewHandler.cs @@ -9,7 +9,7 @@ using PlatformView = Microsoft.UI.Xaml.FrameworkElement; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/TimePicker/ITimePickerHandler.cs b/src/Core/src/Handlers/TimePicker/ITimePickerHandler.cs index 488ff9dfde8f..9e4c8cabdbda 100644 --- a/src/Core/src/Handlers/TimePicker/ITimePickerHandler.cs +++ b/src/Core/src/Handlers/TimePicker/ITimePickerHandler.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TimePicker; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/TimePicker/TimePickerHandler.Tizen.cs b/src/Core/src/Handlers/TimePicker/TimePickerHandler.Tizen.cs index d216ea5b10e1..1039e7d3957d 100644 --- a/src/Core/src/Handlers/TimePicker/TimePickerHandler.Tizen.cs +++ b/src/Core/src/Handlers/TimePicker/TimePickerHandler.Tizen.cs @@ -109,7 +109,7 @@ void OnTextBlockFocused(object? sender, EventArgs e) var dialog = _lazyDialog.Value; dialog.DateTime -= dialog.DateTime.TimeOfDay; dialog.DateTime += VirtualView.Time; - + // You need to call Show() after ui thread occupation because of EFL problem. // Otherwise, the content of the popup will not receive focus. EcoreMainloop.Post(() => dialog.Show()); diff --git a/src/Core/src/Handlers/TimePicker/TimePickerHandler.cs b/src/Core/src/Handlers/TimePicker/TimePickerHandler.cs index 9d39b25653da..1a5bcf462176 100644 --- a/src/Core/src/Handlers/TimePicker/TimePickerHandler.cs +++ b/src/Core/src/Handlers/TimePicker/TimePickerHandler.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.TimePicker; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Entry; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Toolbar/IToolbarHandler.cs b/src/Core/src/Handlers/Toolbar/IToolbarHandler.cs index d02bae7ddf30..0ebe73b80733 100644 --- a/src/Core/src/Handlers/Toolbar/IToolbarHandler.cs +++ b/src/Core/src/Handlers/Toolbar/IToolbarHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Platform.MauiToolbar; #elif TIZEN using PlatformView =ElmSharp.Toolbar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Toolbar/ToolbarHandler.cs b/src/Core/src/Handlers/Toolbar/ToolbarHandler.cs index 2f06242a82e9..29b23477bc7b 100644 --- a/src/Core/src/Handlers/Toolbar/ToolbarHandler.cs +++ b/src/Core/src/Handlers/Toolbar/ToolbarHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.Maui.Platform.MauiToolbar; #elif TIZEN using PlatformView =ElmSharp.Toolbar; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/View/ViewHandler.Tizen.cs b/src/Core/src/Handlers/View/ViewHandler.Tizen.cs index 7032b427d410..ac452ade2109 100644 --- a/src/Core/src/Handlers/View/ViewHandler.Tizen.cs +++ b/src/Core/src/Handlers/View/ViewHandler.Tizen.cs @@ -115,7 +115,7 @@ public virtual bool NeedsContainer { get { - if(VirtualView is IBorderView border) + if (VirtualView is IBorderView border) return border?.Shape != null || border?.Stroke != null; return false; diff --git a/src/Core/src/Handlers/View/ViewHandlerOfT.cs b/src/Core/src/Handlers/View/ViewHandlerOfT.cs index 72ebcd655d5d..f4ba7349776c 100644 --- a/src/Core/src/Handlers/View/ViewHandlerOfT.cs +++ b/src/Core/src/Handlers/View/ViewHandlerOfT.cs @@ -7,7 +7,7 @@ using PlatformView = Microsoft.UI.Xaml.FrameworkElement; #elif TIZEN using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/ViewHandlerExtensions.Android.cs b/src/Core/src/Handlers/ViewHandlerExtensions.Android.cs index 4cb9238c05f4..d31d08895820 100644 --- a/src/Core/src/Handlers/ViewHandlerExtensions.Android.cs +++ b/src/Core/src/Handlers/ViewHandlerExtensions.Android.cs @@ -1,9 +1,9 @@ -using Android.Views; +using System; +using Android.Views; using Microsoft.Maui.Graphics; -using PlatformView = Android.Views.View; using Microsoft.Maui.Platform; -using System; using static Android.Views.View; +using PlatformView = Android.Views.View; namespace Microsoft.Maui { @@ -38,7 +38,7 @@ internal static Size MeasureVirtualView( this IPlatformViewHandler viewHandler, int platformWidthConstraint, int platformHeightConstraint, - Func? measureFunc = null) + Func? measureFunc = null) { var context = viewHandler.MauiContext?.Context; var virtualView = viewHandler.VirtualView; @@ -77,16 +77,16 @@ internal static Size GetDesiredSizeFromHandler(this IViewHandler viewHandler, do { var Context = viewHandler.MauiContext?.Context; var platformView = viewHandler.ToPlatform(); - var VirtualView = viewHandler.VirtualView; + var virtualView = viewHandler.VirtualView; - if (platformView == null || VirtualView == null || Context == null) + if (platformView == null || virtualView == null || Context == null) { return Size.Zero; } // Create a spec to handle the native measure - var widthSpec = Context.CreateMeasureSpec(widthConstraint, VirtualView.Width, VirtualView.MaximumWidth); - var heightSpec = Context.CreateMeasureSpec(heightConstraint, VirtualView.Height, VirtualView.MaximumHeight); + var widthSpec = Context.CreateMeasureSpec(widthConstraint, virtualView.Width, virtualView.MaximumWidth); + var heightSpec = Context.CreateMeasureSpec(heightConstraint, virtualView.Height, virtualView.MaximumHeight); platformView.Measure(widthSpec, heightSpec); diff --git a/src/Core/src/Handlers/ViewHandlerExtensions.iOS.cs b/src/Core/src/Handlers/ViewHandlerExtensions.iOS.cs index 8ef16f165a6f..270d067021dc 100644 --- a/src/Core/src/Handlers/ViewHandlerExtensions.iOS.cs +++ b/src/Core/src/Handlers/ViewHandlerExtensions.iOS.cs @@ -1,7 +1,7 @@ -using Microsoft.Maui.Graphics; +using CoreGraphics; +using Microsoft.Maui.Graphics; using UIKit; using static Microsoft.Maui.Primitives.Dimension; -using CoreGraphics; namespace Microsoft.Maui { @@ -101,7 +101,7 @@ internal static void PlatformArrangeHandler(this IViewHandler viewHandler, Rect viewHandler.Invoke(nameof(IView.Frame), rect); } - static double ResolveConstraints(double measured, double exact, double min, double max) + internal static double ResolveConstraints(double measured, double exact, double min, double max) { var resolved = measured; diff --git a/src/Core/src/Handlers/WebView/IWebViewHandler.cs b/src/Core/src/Handlers/WebView/IWebViewHandler.cs index 44df7fc5089a..2be1cb754902 100644 --- a/src/Core/src/Handlers/WebView/IWebViewHandler.cs +++ b/src/Core/src/Handlers/WebView/IWebViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.WebView2; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiWebView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/WebView/WebViewHandler.Windows.cs b/src/Core/src/Handlers/WebView/WebViewHandler.Windows.cs index 22f5c065b01b..b1e88c09effc 100644 --- a/src/Core/src/Handlers/WebView/WebViewHandler.Windows.cs +++ b/src/Core/src/Handlers/WebView/WebViewHandler.Windows.cs @@ -24,7 +24,7 @@ internal WebNavigationEvent CurrentNavigationEvent protected override void ConnectHandler(WebView2 platformView) { platformView.CoreWebView2Initialized += OnCoreWebView2Initialized; - + base.ConnectHandler(platformView); } @@ -153,7 +153,7 @@ void SendNavigated(string url, WebNavigationEvent evnt, WebNavigationResult resu void SyncPlatformCookiesToVirtualView(string url) { var myCookieJar = VirtualView.Cookies; - + if (myCookieJar == null) return; @@ -185,25 +185,25 @@ void SyncPlatformCookiesToVirtualView(string url) void SyncPlatformCookies(string url) { var uri = CreateUriForCookies(url); - + if (uri == null) return; var myCookieJar = VirtualView.Cookies; - + if (myCookieJar == null) return; InitialCookiePreloadIfNecessary(url); var cookies = myCookieJar.GetCookies(uri); - + if (cookies == null) return; var retrieveCurrentWebCookies = GetCookiesFromPlatformStore(url); var filter = new global::Windows.Web.Http.Filters.HttpBaseProtocolFilter(); - + foreach (Cookie cookie in cookies) { HttpCookie httpCookie = new HttpCookie(cookie.Name, cookie.Domain, cookie.Path) @@ -252,7 +252,7 @@ HttpCookieCollection GetCookiesFromPlatformStore(string url) var uri = CreateUriForCookies(url); var filter = new global::Windows.Web.Http.Filters.HttpBaseProtocolFilter(); var platformCookies = filter.CookieManager.GetCookies(uri); - + return platformCookies; } @@ -277,14 +277,14 @@ HttpCookieCollection GetCookiesFromPlatformStore(string url) return null; } - - public static void MapEvaluateJavaScriptAsync(IWebViewHandler handler, IWebView webView, object? arg) + + public static void MapEvaluateJavaScriptAsync(IWebViewHandler handler, IWebView webView, object? arg) { if (arg is EvaluateJavaScriptAsyncRequest request) { if (handler.PlatformView == null) - { + { request.SetCanceled(); return; } diff --git a/src/Core/src/Handlers/WebView/WebViewHandler.cs b/src/Core/src/Handlers/WebView/WebViewHandler.cs index 29e93949e03e..6e769cea6492 100644 --- a/src/Core/src/Handlers/WebView/WebViewHandler.cs +++ b/src/Core/src/Handlers/WebView/WebViewHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Controls.WebView2; #elif TIZEN using PlatformView = Microsoft.Maui.Platform.MauiWebView; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Window/IWindowHandler.cs b/src/Core/src/Handlers/Window/IWindowHandler.cs index 79990384c2bd..e86376db3ae6 100644 --- a/src/Core/src/Handlers/Window/IWindowHandler.cs +++ b/src/Core/src/Handlers/Window/IWindowHandler.cs @@ -6,7 +6,7 @@ using PlatformView = Microsoft.UI.Xaml.Window; #elif TIZEN using PlatformView = ElmSharp.Window; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/Handlers/Window/WindowHandler.Android.cs b/src/Core/src/Handlers/Window/WindowHandler.Android.cs index a8f9fce36be8..3d25babb8768 100644 --- a/src/Core/src/Handlers/Window/WindowHandler.Android.cs +++ b/src/Core/src/Handlers/Window/WindowHandler.Android.cs @@ -13,10 +13,9 @@ public static void MapContent(IWindowHandler handler, IWindow window) { _ = handler.MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); - var rootManager = handler.MauiContext.GetNavigationRootManager(); - rootManager.Connect(window.Content); - handler.PlatformView.SetContentView(rootManager.RootView); - if (window.VisualDiagnosticsOverlay != null && rootManager.RootView is ViewGroup group) + var rootView = CreateRootViewFromContent(handler, window); + handler.PlatformView.SetContentView(rootView); + if (window.VisualDiagnosticsOverlay != null && rootView is ViewGroup group) window.VisualDiagnosticsOverlay.Initialize(); } @@ -31,5 +30,13 @@ public static void MapRequestDisplayDensity(IWindowHandler handler, IWindow wind if (args is DisplayDensityRequest request) request.SetResult(handler.PlatformView.GetDisplayDensity()); } + + internal static View? CreateRootViewFromContent(IWindowHandler handler, IWindow window) + { + _ = handler.MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); + var rootManager = handler.MauiContext.GetNavigationRootManager(); + rootManager.Connect(window.Content); + return rootManager.RootView; + } } } \ No newline at end of file diff --git a/src/Core/src/Handlers/Window/WindowHandler.Windows.cs b/src/Core/src/Handlers/Window/WindowHandler.Windows.cs index 0ae8c1234c50..e40a69397e17 100644 --- a/src/Core/src/Handlers/Window/WindowHandler.Windows.cs +++ b/src/Core/src/Handlers/Window/WindowHandler.Windows.cs @@ -5,14 +5,25 @@ namespace Microsoft.Maui.Handlers { public partial class WindowHandler : ElementHandler { + protected override void ConnectHandler(UI.Xaml.Window platformView) + { + base.ConnectHandler(platformView); + + if (platformView.Content is null) + platformView.Content = new WindowRootViewContainer(); + } + protected override void DisconnectHandler(UI.Xaml.Window platformView) { MauiContext ?.GetNavigationRootManager() ?.Disconnect(); - if (platformView.Dispatcher != null) + if (platformView.Content is WindowRootViewContainer container) + { + container.Children.Clear(); platformView.Content = null; + } base.DisconnectHandler(platformView); } @@ -23,11 +34,20 @@ public static void MapTitle(IWindowHandler handler, IWindow window) => public static void MapContent(IWindowHandler handler, IWindow window) { _ = handler.MauiContext ?? throw new InvalidOperationException($"{nameof(MauiContext)} should have been set by base class."); + var windowManager = handler.MauiContext.GetNavigationRootManager(); + var previousRootView = windowManager.RootView; + windowManager.Disconnect(); windowManager.Connect(handler.VirtualView.Content.ToPlatform(handler.MauiContext)); - handler.PlatformView.Content = windowManager.RootView; + if (handler.PlatformView.Content is WindowRootViewContainer container) + { + if (previousRootView != null && previousRootView != windowManager.RootView) + container.RemovePage(previousRootView); + + container.AddPage(windowManager.RootView); + } if (window.VisualDiagnosticsOverlay != null) window.VisualDiagnosticsOverlay.Initialize(); diff --git a/src/Core/src/Hosting/LifecycleEvents/AppHostBuilderExtensions.Tizen.cs b/src/Core/src/Hosting/LifecycleEvents/AppHostBuilderExtensions.Tizen.cs index 42c2ba653d59..c0a46489c116 100644 --- a/src/Core/src/Hosting/LifecycleEvents/AppHostBuilderExtensions.Tizen.cs +++ b/src/Core/src/Hosting/LifecycleEvents/AppHostBuilderExtensions.Tizen.cs @@ -3,7 +3,7 @@ using Microsoft.Maui.LifecycleEvents; namespace Microsoft.Maui.LifecycleEvents -{ +{ public static partial class AppHostBuilderExtensions { internal static MauiAppBuilder ConfigureCrossPlatformLifecycleEvents(this MauiAppBuilder builder) => diff --git a/src/Core/src/ImageSources/FileImageSourceService/FileImageSourceService.Tizen.cs b/src/Core/src/ImageSources/FileImageSourceService/FileImageSourceService.Tizen.cs index 62bb1539a38e..c8cbdaf3aa8f 100644 --- a/src/Core/src/ImageSources/FileImageSourceService/FileImageSourceService.Tizen.cs +++ b/src/Core/src/ImageSources/FileImageSourceService/FileImageSourceService.Tizen.cs @@ -73,7 +73,7 @@ static string GetPath(string res) { string resPath = app.DirectoryInfo.Resource + res; - foreach (var file in new []{ resPath, resPath + ".jpg", resPath + ".png", resPath + ".gif" }) + foreach (var file in new[] { resPath, resPath + ".jpg", resPath + ".png", resPath + ".gif" }) { if (File.Exists(file)) { diff --git a/src/Core/src/ImageSources/ImageSourceExtensions.cs b/src/Core/src/ImageSources/ImageSourceExtensions.cs index ef8244028dd1..853474151e13 100644 --- a/src/Core/src/ImageSources/ImageSourceExtensions.cs +++ b/src/Core/src/ImageSources/ImageSourceExtensions.cs @@ -12,7 +12,7 @@ using PlatformImage = Microsoft.UI.Xaml.Media.ImageSource; #elif TIZEN using PlatformImage = Tizen.UIExtensions.ElmSharp.Image; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformImage = System.Object; #endif diff --git a/src/Core/src/ImageSources/ImageSourceServiceResult.cs b/src/Core/src/ImageSources/ImageSourceServiceResult.cs index 34a1e7a5ddd6..0033b780c2b1 100644 --- a/src/Core/src/ImageSources/ImageSourceServiceResult.cs +++ b/src/Core/src/ImageSources/ImageSourceServiceResult.cs @@ -8,7 +8,7 @@ using PlatformView = Microsoft.UI.Xaml.Media.ImageSource; #elif TIZEN using PlatformView = Tizen.UIExtensions.ElmSharp.Image; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; #endif diff --git a/src/Core/src/ImageSources/StreamImageSourceService/StreamImageSourceService.Tizen.cs b/src/Core/src/ImageSources/StreamImageSourceService/StreamImageSourceService.Tizen.cs index d6d9844ca2b6..18e9170c1b79 100644 --- a/src/Core/src/ImageSources/StreamImageSourceService/StreamImageSourceService.Tizen.cs +++ b/src/Core/src/ImageSources/StreamImageSourceService/StreamImageSourceService.Tizen.cs @@ -25,7 +25,7 @@ public partial class StreamImageSourceService throw new InvalidOperationException("Unable to load image stream."); var isLoadComplated = await image.LoadAsync(stream, cancellationToken); - + if (!isLoadComplated) throw new InvalidOperationException("Unable to decode image from stream."); diff --git a/src/Core/src/ImageSources/UriImageSourceService/UriImageSourceService.Tizen.cs b/src/Core/src/ImageSources/UriImageSourceService/UriImageSourceService.Tizen.cs index d28fa31bd2d3..a42381d5900f 100644 --- a/src/Core/src/ImageSources/UriImageSourceService/UriImageSourceService.Tizen.cs +++ b/src/Core/src/ImageSources/UriImageSourceService/UriImageSourceService.Tizen.cs @@ -22,7 +22,7 @@ public partial class UriImageSourceService try { var isLoadComplated = await image.LoadAsync(uri, cancellationToken); - + if (!isLoadComplated) throw new InvalidOperationException($"Unable to load image URI '{uri}'."); diff --git a/src/Core/src/Layouts/GridLayoutManager.cs b/src/Core/src/Layouts/GridLayoutManager.cs index 974e063740c9..534943baaaee 100644 --- a/src/Core/src/Layouts/GridLayoutManager.cs +++ b/src/Core/src/Layouts/GridLayoutManager.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using Microsoft.Maui.Graphics; +using Microsoft.Maui.Primitives; namespace Microsoft.Maui.Layouts { @@ -28,7 +29,12 @@ public override Size Measure(double widthConstraint, double heightConstraint) public override Size ArrangeChildren(Rect bounds) { - var structure = _gridStructure ?? new GridStructure(Grid, bounds.Width, bounds.Height); + if (_gridStructure == null) + { + _gridStructure = new GridStructure(Grid, bounds.Width, bounds.Height); + } + + _gridStructure.AdjustStarsForArrange(bounds.Size); var reverseColumns = Grid.ColumnDefinitions.Count > 1 && !Grid.ShouldArrangeLeftToRight(); @@ -39,7 +45,7 @@ public override Size ArrangeChildren(Rect bounds) continue; } - var cell = structure.GetCellBoundsFor(view, bounds.Left, bounds.Top); + var cell = _gridStructure.GetCellBoundsFor(view, bounds.Left, bounds.Top); if (reverseColumns) { @@ -50,16 +56,20 @@ public override Size ArrangeChildren(Rect bounds) view.Arrange(cell); } - var actual = new Size(structure.MeasuredGridWidth(), structure.MeasuredGridHeight()); + var actual = new Size(_gridStructure.MeasuredGridWidth(), _gridStructure.MeasuredGridHeight()); return actual.AdjustForFill(bounds, Grid); } class GridStructure { + public double HeightConstraint => _gridHeightConstraint; + public double WidthConstraint => _gridWidthConstraint; + readonly IGridLayout _grid; readonly double _gridWidthConstraint; readonly double _gridHeightConstraint; + readonly double _explicitGridHeight; readonly double _explicitGridWidth; readonly double _gridMaxHeight; @@ -84,11 +94,12 @@ public GridStructure(IGridLayout grid, double widthConstraint, double heightCons { _grid = grid; - _gridWidthConstraint = widthConstraint; - _gridHeightConstraint = heightConstraint; - _explicitGridHeight = _grid.Height; _explicitGridWidth = _grid.Width; + + _gridWidthConstraint = Dimension.IsExplicitSet(_explicitGridWidth) ? _explicitGridWidth : widthConstraint; + _gridHeightConstraint = Dimension.IsExplicitSet(_explicitGridHeight) ? _explicitGridHeight : heightConstraint; + _gridMaxHeight = _grid.MaximumHeight; _gridMinHeight = _grid.MinimumHeight; _gridMaxWidth = _grid.MaximumWidth; @@ -102,11 +113,9 @@ public GridStructure(IGridLayout grid, double widthConstraint, double heightCons _rowDefinitions = grid.RowDefinitions; _columnDefinitions = grid.ColumnDefinitions; - // If the width/height constraints are infinity, then Star rows/columns won't really make any sense. - // And if the Grid's layout alignment is not Fill, they also don't really make sense. - // When that happens, we need to convert them to Auto rows/columns instead. - bool treatStarRowsAsAuto = double.IsInfinity(_gridHeightConstraint) || _grid.VerticalLayoutAlignment != Primitives.LayoutAlignment.Fill; - bool treatStarColumnsAsAuto = double.IsInfinity(_gridWidthConstraint) || _grid.HorizontalLayoutAlignment != Primitives.LayoutAlignment.Fill; + // Determine whether "*" values make sense in each dimension, given our constraints + bool treatStarRowsAsAuto = ShouldTreatStarsAsAuto(_gridHeightConstraint, _explicitGridHeight, _grid.VerticalLayoutAlignment); + bool treatStarColumnsAsAuto = ShouldTreatStarsAsAuto(_gridWidthConstraint, _explicitGridWidth, _grid.HorizontalLayoutAlignment); _rows = InitializeRows(treatStarRowsAsAuto); _columns = InitializeColumns(treatStarColumnsAsAuto); @@ -140,15 +149,15 @@ public GridStructure(IGridLayout grid, double widthConstraint, double heightCons MeasureCells(); } - static Definition[] Implied(bool treatStarAsAuto) + static Definition[] Implied(bool treatStarAsAuto) { return new Definition[] { - new Definition(treatStarAsAuto ? GridLength.Auto : GridLength.Star) + new Definition(treatStarAsAuto ? GridLength.Auto : GridLength.Star, treatStarAsAuto) }; } - Definition[] InitializeRows(bool treatStarAsAuto) + Definition[] InitializeRows(bool treatStarAsAuto) { int count = _rowDefinitions.Count; @@ -157,7 +166,7 @@ Definition[] InitializeRows(bool treatStarAsAuto) // Since no rows are specified, we'll create an implied row 0 return Implied(treatStarAsAuto); } - + var rows = new Definition[count]; for (int n = 0; n < count; n++) @@ -166,7 +175,7 @@ Definition[] InitializeRows(bool treatStarAsAuto) if (definition.Height.GridUnitType == GridUnitType.Star && treatStarAsAuto) { - rows[n] = new Definition(GridLength.Auto); + rows[n] = new Definition(GridLength.Auto, treatStarAsAuto); } else { @@ -176,7 +185,7 @@ Definition[] InitializeRows(bool treatStarAsAuto) return rows; } - + Definition[] InitializeColumns(bool treatStarAsAuto) { int count = _columnDefinitions.Count; @@ -186,7 +195,7 @@ Definition[] InitializeColumns(bool treatStarAsAuto) // Since no columns are specified, we'll create an implied column 0 return Implied(treatStarAsAuto); } - + var definitions = new Definition[count]; for (int n = 0; n < count; n++) @@ -195,7 +204,7 @@ Definition[] InitializeColumns(bool treatStarAsAuto) if (definition.Width.GridUnitType == GridUnitType.Star && treatStarAsAuto) { - definitions[n] = new Definition(GridLength.Auto); + definitions[n] = new Definition(GridLength.Auto, treatStarAsAuto); } else { @@ -286,7 +295,7 @@ public double GridWidth() public double MeasuredGridHeight() { - var height = _explicitGridHeight > -1 ? _explicitGridHeight : GridHeight(); + var height = Dimension.IsExplicitSet(_explicitGridHeight) ? _explicitGridHeight : GridHeight(); if (_gridMaxHeight >= 0 && height > _gridMaxHeight) { @@ -303,7 +312,7 @@ public double MeasuredGridHeight() public double MeasuredGridWidth() { - var width = _explicitGridWidth > -1 ? _explicitGridWidth : GridWidth(); + var width = Dimension.IsExplicitSet(_explicitGridWidth) ? _explicitGridWidth : GridWidth(); if (_gridMaxWidth >= 0 && width > _gridMaxWidth) { @@ -391,8 +400,8 @@ void MeasureCells() ResolveSpans(); - ResolveStarColumns(); - ResolveStarRows(); + ResolveStarColumns(_gridWidthConstraint); + ResolveStarRows(_gridHeightConstraint); EnsureFinalMeasure(); } @@ -559,18 +568,18 @@ void ResolveStars(Definition[] defs, double availableSpace, Func cel } } - void ResolveStarColumns() + void ResolveStarColumns(double widthConstraint) { - var availableSpace = _gridWidthConstraint - GridWidth(); + var availableSpace = widthConstraint - GridWidth(); static bool cellCheck(Cell cell) => cell.IsColumnSpanStar; static double getDimension(Size size) => size.Width; ResolveStars(_columns, availableSpace, cellCheck, getDimension); } - void ResolveStarRows() + void ResolveStarRows(double heightConstraint) { - var availableSpace = _gridHeightConstraint - GridHeight(); + var availableSpace = heightConstraint - GridHeight(); static bool cellCheck(Cell cell) => cell.IsRowSpanStar; static double getDimension(Size size) => size.Height; @@ -603,7 +612,7 @@ void EnsureFinalMeasure() { continue; } - + _childrenToLayOut[cell.ViewIndex].Measure(width, height); } } @@ -683,6 +692,92 @@ double AvailableHeight(Cell cell) return available + cellRowsHeight; } + + public void AdjustStarsForArrange(Size targetSize) + { + if (_grid.VerticalLayoutAlignment == Primitives.LayoutAlignment.Fill) + { + if (_grid.DesiredSize.Height < targetSize.Height) + { + // Reset the size on all star rows + for (int n = 0; n < _rows.Length; n++) + { + var definition = _rows[n]; + if (definition.IsStar) + { + definition.Size = 0; + } + } + + // Reset the size on all "star as auto" rows + for (int n = 0; n < _rows.Length; n++) + { + var definition = _rows[n]; + if (definition.IsStarAsAuto) + { + _rows[n] = new Definition(GridLength.Star); + } + } + + ResolveStarRows(targetSize.Height); + } + } + + if (_grid.HorizontalLayoutAlignment == Primitives.LayoutAlignment.Fill) + { + if (_grid.DesiredSize.Width < targetSize.Width) + { + // Reset the size on all star rows + for (int n = 0; n < _columns.Length; n++) + { + var definition = _columns[n]; + if (definition.IsStar) + { + definition.Size = 0; + } + } + + // Reset the size on all "star as auto" rows + for (int n = 0; n < _columns.Length; n++) + { + var definition = _columns[n]; + if (definition.IsStarAsAuto) + { + _columns[n] = new Definition(GridLength.Star); + } + } + + ResolveStarColumns(targetSize.Width); + } + } + } + + static bool ShouldTreatStarsAsAuto(double constraint, double explicitDimension, LayoutAlignment layoutAlignment) + { + if (double.IsInfinity(constraint)) + { + // If the constraint is infinite, then "*" doesn't really make any sense; we'll treat the + // measurement as "Auto" instead + return true; + } + + if (layoutAlignment == LayoutAlignment.Fill) + { + // If the constraint is not infinite and our Grid is supposed to Fill this dimension, then + // we can definitely come up with a meaningful value for "*", so don't treat this as "Auto" + return false; + } + + if (Dimension.IsExplicitSet(explicitDimension)) + { + // If we're not filling the dimension but our size in this dimension is fixed, then we + // can definitely get a meaningful value for "*", so don't treat this as "Auto" + return false; + } + + // We don't have the info to make "*" meaningful, so treat it as "Auto" instead + return true; + } } // Dictionary key for tracking a Span @@ -790,10 +885,11 @@ public void Update(double size) public bool IsAuto => _gridLength.IsAuto; public bool IsStar => _gridLength.IsStar; public bool IsAbsolute => _gridLength.IsAbsolute; + public bool IsStarAsAuto { get; } public GridLength GridLength => _gridLength; - public Definition(GridLength gridLength) + public Definition(GridLength gridLength, bool treatStarAsAuto = false) { if (gridLength.IsAbsolute) { @@ -801,6 +897,8 @@ public Definition(GridLength gridLength) } _gridLength = gridLength; + + IsStarAsAuto = gridLength.IsAuto && treatStarAsAuto; } } } diff --git a/src/Core/src/Platform/Android/BorderDrawable.cs b/src/Core/src/Platform/Android/BorderDrawable.cs index 6e2794607818..afcd0e1899ee 100644 --- a/src/Core/src/Platform/Android/BorderDrawable.cs +++ b/src/Core/src/Platform/Android/BorderDrawable.cs @@ -506,10 +506,10 @@ PathF GetPath(float width, float height, CornerRadius cornerRadius, float stroke float w = (float)(width - strokeThickness); float h = (float)(height - strokeThickness); - float topLeftCornerRadius = (float)cornerRadius.TopLeft; - float topRightCornerRadius = (float)cornerRadius.TopRight; - float bottomLeftCornerRadius = (float)cornerRadius.BottomLeft; - float bottomRightCornerRadius = (float)cornerRadius.BottomRight; + float topLeftCornerRadius = _context.ToPixels(cornerRadius.TopLeft); + float topRightCornerRadius = _context.ToPixels(cornerRadius.TopRight); + float bottomLeftCornerRadius = _context.ToPixels(cornerRadius.BottomLeft); + float bottomRightCornerRadius = _context.ToPixels(cornerRadius.BottomRight); path.AppendRoundedRectangle(x, y, w, h, topLeftCornerRadius, topRightCornerRadius, bottomLeftCornerRadius, bottomRightCornerRadius); diff --git a/src/Core/src/Platform/Android/ButtonExtensions.cs b/src/Core/src/Platform/Android/ButtonExtensions.cs index c99ee867f32e..00c474f4dd93 100644 --- a/src/Core/src/Platform/Android/ButtonExtensions.cs +++ b/src/Core/src/Platform/Android/ButtonExtensions.cs @@ -105,7 +105,7 @@ internal static void UpdateBorderDrawable(this MaterialButton platformView, IBut mauiDrawable.SetCornerRadius(button.CornerRadius); else { - const int defaultCornerRadius = 2; // Default value for Android material button. + const int defaultCornerRadius = 2; // Default value for Android material button. mauiDrawable.SetCornerRadius(platformView.Context.ToPixels(defaultCornerRadius)); } } diff --git a/src/Core/src/Platform/Android/CheckBoxExtensions.cs b/src/Core/src/Platform/Android/CheckBoxExtensions.cs index c0ed56c43a09..a7e9c8717586 100644 --- a/src/Core/src/Platform/Android/CheckBoxExtensions.cs +++ b/src/Core/src/Platform/Android/CheckBoxExtensions.cs @@ -26,25 +26,29 @@ public static void UpdateIsChecked(this AppCompatCheckBox platformCheckBox, IChe public static void UpdateForeground(this AppCompatCheckBox platformCheckBox, ICheckBox check) { - // TODO: Delete when implementing the logic to set the system accent color. - Graphics.Color accent = Graphics.Color.FromArgb("#ff33b5e5"); + var mode = PorterDuff.Mode.SrcIn; - var targetColor = accent; + CompoundButtonCompat.SetButtonTintList(platformCheckBox, platformCheckBox.GetColorStateList(check)); + CompoundButtonCompat.SetButtonTintMode(platformCheckBox, mode); + } + + internal static ColorStateList GetColorStateList(this AppCompatCheckBox platformCheckBox, ICheckBox check) + { + AColor tintColor; // For the moment, we're only supporting solid color Paint for the Android Checkbox if (check.Foreground is SolidPaint solid) { - targetColor = solid.Color; + var color = solid.Color; + tintColor = color.ToPlatform(); + } + else + { + Graphics.Color accent = platformCheckBox.Context?.GetAccentColor() ?? Graphics.Color.FromArgb("#ff33b5e5"); + tintColor = accent.ToPlatform(); } - var tintColor = targetColor.ToPlatform(); - - var tintList = ColorStateListExtensions.CreateCheckBox(tintColor); - - var tintMode = PorterDuff.Mode.SrcIn; - - CompoundButtonCompat.SetButtonTintList(platformCheckBox, tintList); - CompoundButtonCompat.SetButtonTintMode(platformCheckBox, tintMode); + return ColorStateListExtensions.CreateCheckBox(tintColor); } } } \ No newline at end of file diff --git a/src/Core/src/Platform/Android/ColorStateListExtensions.cs b/src/Core/src/Platform/Android/ColorStateListExtensions.cs index 09cc6402e21d..d7de5de05b85 100644 --- a/src/Core/src/Platform/Android/ColorStateListExtensions.cs +++ b/src/Core/src/Platform/Android/ColorStateListExtensions.cs @@ -36,18 +36,18 @@ public static ColorStateList CreateCheckBox(int all) => CreateCheckBox(all, all, all, all); public static ColorStateList CreateCheckBox(int enabledChecked, int enabledUnchecked, int disabledChecked, int disabledUnchecked) => - new ColorStateList(ColorStates.EditText, new[] { enabledChecked, enabledUnchecked, disabledChecked, disabledUnchecked }); + new ColorStateList(ColorStates.CheckBox, new[] { enabledChecked, enabledUnchecked, disabledChecked, disabledUnchecked }); public static ColorStateList CreateSwitch(int all) => CreateSwitch(all, all, all); public static ColorStateList CreateSwitch(int disabled, int on, int normal) => - new ColorStateList(ColorStates.EditText, new[] { disabled, on, normal }); + new ColorStateList(ColorStates.Switch, new[] { disabled, on, normal }); public static ColorStateList CreateButton(int all) => CreateButton(all, all, all, all); public static ColorStateList CreateButton(int enabled, int disabled, int off, int pressed) => - new ColorStateList(ColorStates.EditText, new[] { enabled, disabled, off, pressed }); + new ColorStateList(ColorStates.Button, new[] { enabled, disabled, off, pressed }); } } \ No newline at end of file diff --git a/src/Core/src/Platform/Android/ContentViewGroup.cs b/src/Core/src/Platform/Android/ContentViewGroup.cs index 2df7ee77e6ab..a08e816bf755 100644 --- a/src/Core/src/Platform/Android/ContentViewGroup.cs +++ b/src/Core/src/Platform/Android/ContentViewGroup.cs @@ -109,7 +109,7 @@ void ClipChild(Canvas? canvas) float density = Context.GetDisplayDensity(); - float strokeThickness = (float)Clip.StrokeThickness; + float strokeThickness = (float)(Clip.StrokeThickness * density); float offset = strokeThickness / 2; float w = (canvas.Width / density) - strokeThickness; float h = (canvas.Height / density) - strokeThickness; diff --git a/src/Core/src/Platform/Android/EditTextExtensions.cs b/src/Core/src/Platform/Android/EditTextExtensions.cs index 80b089d7c406..b35d59d5d44b 100644 --- a/src/Core/src/Platform/Android/EditTextExtensions.cs +++ b/src/Core/src/Platform/Android/EditTextExtensions.cs @@ -19,8 +19,8 @@ public static void UpdateText(this EditText editText, IEntry entry) // Therefore if: // User Types => VirtualView Updated => Triggers Native Update // Then it will cause the cursor to reset to position zero as the user typed - if (entry.Text != editText.Text) - editText.Text = entry.Text; + editText.Text = entry.Text; + editText.SetSelection(editText.Text?.Length ?? 0); // TODO ezhart The renderer sets the text to selected and shows the keyboard if the EditText is focused } @@ -28,7 +28,6 @@ public static void UpdateText(this EditText editText, IEntry entry) public static void UpdateText(this EditText editText, IEditor editor) { editText.Text = editor.Text; - editText.SetSelection(editText.Text?.Length ?? 0); } @@ -220,6 +219,13 @@ public static void UpdateReturnType(this EditText editText, IEntry entry) editText.ImeOptions = entry.ReturnType.ToPlatform(); } + // TODO: NET7 issoto - Revisit this, marking this method as `internal` to avoid breaking public API changes + internal static int GetCursorPosition(this EditText editText, int cursorOffset = 0) + { + var newCursorPosition = editText.SelectionStart + cursorOffset; + return Math.Max(0, newCursorPosition); + } + public static void UpdateCursorPosition(this EditText editText, ITextInput entry) { if (editText.SelectionStart != entry.CursorPosition) @@ -237,9 +243,6 @@ static void UpdateCursorSelection(EditText editText, ITextInput entry) { if (!entry.IsReadOnly)// && editText.HasFocus)// || editText.RequestFocus()))//&& editText.RequestFocus()) { - if (!editText.HasFocus) - editText.RequestFocus(); - int start = GetSelectionStart(editText, entry); int end = GetSelectionEnd(editText, entry, start); @@ -279,14 +282,24 @@ static int GetSelectionEnd(EditText editText, ITextInput entry, int start) return end; } + // TODO: NET7 issoto - Revisit this, marking this method as `internal` to avoid breaking public API changes + internal static int GetSelectedTextLength(this EditText editText) + { + var selectedLength = editText.SelectionEnd - editText.SelectionStart; + return Math.Max(0, selectedLength); + } + internal static void SetInputType(this EditText editText, ITextInput textInput) { + var previousCursorPosition = editText.SelectionStart; + if (textInput.IsReadOnly) { editText.InputType = InputTypes.Null; } else { + var keyboard = textInput.Keyboard; var nativeInputTypeToUpdate = keyboard.ToInputType(); @@ -320,6 +333,10 @@ internal static void SetInputType(this EditText editText, ITextInput textInput) if (textInput is IEditor) editText.InputType |= InputTypes.TextFlagMultiLine; + + // If we implement the OnSelectionChanged method, this method is called after a keyboard layout change with SelectionStart = 0, + // Let's restore the cursor position to its previous location. + editText.SetSelection(previousCursorPosition); } internal static bool IsCompletedAction(this EditorActionEventArgs e) diff --git a/src/Core/src/Platform/Android/ImageButtonExtensions.cs b/src/Core/src/Platform/Android/ImageButtonExtensions.cs index 2402fb4392e6..597b54e85d89 100644 --- a/src/Core/src/Platform/Android/ImageButtonExtensions.cs +++ b/src/Core/src/Platform/Android/ImageButtonExtensions.cs @@ -6,6 +6,14 @@ namespace Microsoft.Maui.Platform { public static class ImageButtonExtensions { + // TODO: NET7 should this be public? + internal static void UpdateBackground(this ShapeableImageView platformButton, IImageButton imageButton) + { + Paint? paint = imageButton.Background; + + platformButton.Background = paint?.ToDrawable(platformButton.Context); + } + public static void UpdateStrokeColor(this ShapeableImageView platformButton, IButtonStroke buttonStroke) { if (buttonStroke.StrokeColor is Color stroke) diff --git a/src/Core/src/Platform/Android/MauiAppCompatEditText.cs b/src/Core/src/Platform/Android/MauiAppCompatEditText.cs new file mode 100644 index 000000000000..625d51122793 --- /dev/null +++ b/src/Core/src/Platform/Android/MauiAppCompatEditText.cs @@ -0,0 +1,22 @@ +using System; +using Android.Content; +using AndroidX.AppCompat.Widget; + +namespace Microsoft.Maui.Platform +{ + internal class MauiAppCompatEditText : AppCompatEditText + { + public event EventHandler? SelectionChanged; + + public MauiAppCompatEditText(Context context) : base(context) + { + } + + protected override void OnSelectionChanged(int selStart, int selEnd) + { + base.OnSelectionChanged(selStart, selEnd); + + SelectionChanged?.Invoke(this, EventArgs.Empty); + } + } +} diff --git a/src/Core/src/Platform/Android/MauiScrollView.cs b/src/Core/src/Platform/Android/MauiScrollView.cs index d827619cbab7..034bf12073aa 100644 --- a/src/Core/src/Platform/Android/MauiScrollView.cs +++ b/src/Core/src/Platform/Android/MauiScrollView.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Platform { - public class MauiScrollView : NestedScrollView, IScrollBarView + public class MauiScrollView : NestedScrollView, IScrollBarView, NestedScrollView.IOnScrollChangeListener { View? _content; @@ -277,6 +277,11 @@ void SmoothScrollTo(int x, int y, Action finished) animator.Start(); } + void IOnScrollChangeListener.OnScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) + { + OnScrollChanged(scrollX, scrollY, oldScrollX, oldScrollY); + } + internal Func? CrossPlatformArrange { get; set; } } @@ -396,6 +401,16 @@ void IScrollBarView.AwakenScrollBars() } bool IScrollBarView.ScrollBarsInitialized { get; set; } = false; + + protected override void OnScrollChanged(int l, int t, int oldl, int oldt) + { + base.OnScrollChanged(l, t, oldl, oldt); + + if (_parentScrollView is NestedScrollView.IOnScrollChangeListener scrollChangeListener) + { + scrollChangeListener.OnScrollChange(_parentScrollView, l, t, oldl, oldt); + } + } } internal interface IScrollBarView diff --git a/src/Core/src/Platform/Android/Navigation/NavigationRootManager.cs b/src/Core/src/Platform/Android/Navigation/NavigationRootManager.cs index 3d10ef5c7459..2b014c2b5514 100644 --- a/src/Core/src/Platform/Android/Navigation/NavigationRootManager.cs +++ b/src/Core/src/Platform/Android/Navigation/NavigationRootManager.cs @@ -45,6 +45,8 @@ internal void SetToolbarElement(IToolbarElement toolbarElement) internal void Connect(IView view, IMauiContext? mauiContext = null) { + ClearPlatformParts(); + mauiContext = mauiContext ?? _mauiContext; var containerView = view.ToContainerView(mauiContext); var navigationLayout = containerView.FindViewById(Resource.Id.navigation_layout); @@ -97,9 +99,17 @@ internal void Connect(IView view, IMauiContext? mauiContext = null) public virtual void Disconnect() { + ClearPlatformParts(); SetContentView(null); } + void ClearPlatformParts() + { + DrawerLayout = null; + _rootView = null; + _toolbarElement = null; + } + void SetContentView(AView? view) { if (view == null) diff --git a/src/Core/src/Platform/Android/Resources/values/styles.xml b/src/Core/src/Platform/Android/Resources/values/styles.xml index 2af39ec0c53d..c33b209fdd7e 100644 --- a/src/Core/src/Platform/Android/Resources/values/styles.xml +++ b/src/Core/src/Platform/Android/Resources/values/styles.xml @@ -29,6 +29,12 @@ diff --git a/src/Core/src/Platform/Android/ScrollViewExtensions.cs b/src/Core/src/Platform/Android/ScrollViewExtensions.cs index 9c27a90225e1..fffd69a5d382 100644 --- a/src/Core/src/Platform/Android/ScrollViewExtensions.cs +++ b/src/Core/src/Platform/Android/ScrollViewExtensions.cs @@ -40,7 +40,6 @@ public static void UpdateContent(this MauiScrollView scrollView, IView? content, if (nativeContent != null) { scrollView.SetContent(nativeContent); - } } } diff --git a/src/Core/src/Platform/Android/ViewExtensions.cs b/src/Core/src/Platform/Android/ViewExtensions.cs index e614c4f24cd9..cda683b1d731 100644 --- a/src/Core/src/Platform/Android/ViewExtensions.cs +++ b/src/Core/src/Platform/Android/ViewExtensions.cs @@ -195,6 +195,10 @@ public static void UpdateBackground(this AView platformView, Paint? background) platformView.Background = drawable; } } + else if (platformView is LayoutViewGroup) + { + platformView.Background = null; + } } public static void UpdateOpacity(this AView platformView, IView view) @@ -328,7 +332,7 @@ public static void RemoveFromParent(this AView view) internal static Rect GetPlatformViewBounds(this IView view) { var platformView = view?.ToPlatform(); - + if (platformView?.Context == null) { return new Rect(); @@ -406,12 +410,18 @@ internal static Graphics.Rect GetBoundingBox(this IView view) internal static Graphics.Rect GetBoundingBox(this View? platformView) { - if (platformView == null) + if (platformView?.Context == null) return new Rect(); + var context = platformView.Context; var rect = new Android.Graphics.Rect(); platformView.GetGlobalVisibleRect(rect); - return new Rect(rect.ExactCenterX() - (rect.Width() / 2), rect.ExactCenterY() - (rect.Height() / 2), (float)rect.Width(), (float)rect.Height()); + + return new Rect( + context.FromPixels(rect.ExactCenterX() - (rect.Width() / 2)), + context.FromPixels(rect.ExactCenterY() - (rect.Height() / 2)), + context.FromPixels((float)rect.Width()), + context.FromPixels((float)rect.Height())); } internal static bool IsLoaded(this View frameworkElement) => @@ -557,6 +567,25 @@ internal static void Arrange(this IView view, View platformView) return null; } + internal static Rect GetFrameRelativeTo(this View view, View relativeTo) + { + var viewWindowLocation = view.GetLocationOnScreen(); + var relativeToLocation = relativeTo.GetLocationOnScreen(); + + return + new Rect( + new Point(viewWindowLocation.X - relativeToLocation.X, viewWindowLocation.Y - relativeToLocation.Y), + new Graphics.Size(view.Context.FromPixels(view.MeasuredWidth), view.Context.FromPixels(view.MeasuredHeight)) + ); + } + + internal static Rect GetFrameRelativeToWindow(this View view) + { + return + new Rect(view.GetLocationOnScreen(), + new(view.Context.FromPixels(view.MeasuredHeight), view.Context.FromPixels(view.MeasuredWidth))); + } + internal static Point GetLocationOnScreen(this View view) { int[] location = new int[2]; diff --git a/src/Core/src/Platform/Android/ViewGroupExtensions.cs b/src/Core/src/Platform/Android/ViewGroupExtensions.cs index b8bc13aef2df..8940e5585173 100644 --- a/src/Core/src/Platform/Android/ViewGroupExtensions.cs +++ b/src/Core/src/Platform/Android/ViewGroupExtensions.cs @@ -6,14 +6,6 @@ namespace Microsoft.Maui.Platform { public static class ViewGroupExtensions { - public static void SafelyAddView(this AViewGroup viewGroup, AView child) - { - if (child.Parent != null) - child.RemoveFromParent(); - - viewGroup.AddView(child); - } - public static IEnumerable GetChildrenOfType(this AViewGroup viewGroup) where T : AView { for (var i = 0; i < viewGroup.ChildCount; i++) diff --git a/src/Core/src/Platform/ElementExtensions.cs b/src/Core/src/Platform/ElementExtensions.cs index cb9d280a2248..75223488036d 100644 --- a/src/Core/src/Platform/ElementExtensions.cs +++ b/src/Core/src/Platform/ElementExtensions.cs @@ -20,7 +20,7 @@ using BasePlatformType = System.Object; using PlatformWindow = ElmSharp.Window; using PlatformApplication = Tizen.Applications.CoreUIApplication; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformView = System.Object; using BasePlatformType = System.Object; using IPlatformViewHandler = Microsoft.Maui.IViewHandler; @@ -89,29 +89,14 @@ public static IElementHandler ToHandler(this IElement view, IMauiContext context } if (handler == null) - throw new HandlerNotFoundException($"Handler not found for view {view}."); + throw new HandlerNotFoundException(view); handler.SetMauiContext(context); - try - { - view.Handler = handler; + view.Handler = handler; - if (handler.VirtualView != view) - handler.SetVirtualView(view); - } - catch (ToPlatformException) - { - throw; - } - catch (HandlerNotFoundException) - { - throw; - } - catch (Exception exc) - { - throw new ToPlatformException($"{handler} found for {view} is incompatible", exc); - } + if (handler.VirtualView != view) + handler.SetVirtualView(view); return handler; } diff --git a/src/Core/src/Platform/HandlerNotFoundException.cs b/src/Core/src/Platform/HandlerNotFoundException.cs index ca130ce600fe..8b9e52f7cf26 100644 --- a/src/Core/src/Platform/HandlerNotFoundException.cs +++ b/src/Core/src/Platform/HandlerNotFoundException.cs @@ -11,6 +11,12 @@ public HandlerNotFoundException() { } + public HandlerNotFoundException(IElement element) : + this($"Handler not found for view {element}.") + { + + } + public HandlerNotFoundException(string message) : base(message) { } diff --git a/src/Core/src/Platform/ImageSourcePartLoader.cs b/src/Core/src/Platform/ImageSourcePartLoader.cs index befcd05904f6..fbd2c1d7bff6 100644 --- a/src/Core/src/Platform/ImageSourcePartLoader.cs +++ b/src/Core/src/Platform/ImageSourcePartLoader.cs @@ -14,7 +14,7 @@ #elif TIZEN using PlatformImage = Tizen.UIExtensions.ElmSharp.Image; using PlatformView = ElmSharp.EvasObject; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using PlatformImage = System.Object; using PlatformView = System.Object; #endif diff --git a/src/Core/src/Platform/Tizen/LabelExtensions.cs b/src/Core/src/Platform/Tizen/LabelExtensions.cs index 37946a2423c3..c317f46cba00 100644 --- a/src/Core/src/Platform/Tizen/LabelExtensions.cs +++ b/src/Core/src/Platform/Tizen/LabelExtensions.cs @@ -22,7 +22,7 @@ public static void UpdateFont(this Label platformLabel, ILabel label, IFontManag platformLabel.BatchBegin(); platformLabel.FontSize = label.Font.Size > 0 ? label.Font.Size : 25.ToDPFont(); platformLabel.FontAttributes = label.Font.GetFontAttributes(); - platformLabel.FontFamily = fontManager.GetFontFamily(label.Font.Family)??""; + platformLabel.FontFamily = fontManager.GetFontFamily(label.Font.Family) ?? ""; platformLabel.BatchCommit(); } @@ -83,6 +83,6 @@ public static TTextDecorationse ToPlatform(this TextDecorations td) else return TTextDecorationse.None; } - + } } diff --git a/src/Core/src/Platform/Tizen/PlatformTouchGraphicsView.cs b/src/Core/src/Platform/Tizen/PlatformTouchGraphicsView.cs index 6ef97a39fe09..f674906a1edb 100644 --- a/src/Core/src/Platform/Tizen/PlatformTouchGraphicsView.cs +++ b/src/Core/src/Platform/Tizen/PlatformTouchGraphicsView.cs @@ -29,19 +29,22 @@ public void Connect(IGraphicsView graphicsView) _gestureLayer.SetLineCallback(GestureLayer.GestureState.Start, (_) => { OnGestureStarted(); }); - _gestureLayer.SetLineCallback(GestureLayer.GestureState.Move, (_) => { + _gestureLayer.SetLineCallback(GestureLayer.GestureState.Move, (_) => + { _graphicsView?.DragInteraction(new[] { _gestureLayer.EvasCanvas.Pointer.ToPointF() }); }); - _gestureLayer.SetLineCallback(GestureLayer.GestureState.End, (_) => { + _gestureLayer.SetLineCallback(GestureLayer.GestureState.End, (_) => + { OnGestureEnded(Geometry.ToDP().Contains(_gestureLayer.EvasCanvas.Pointer.ToPoint())); }); - _gestureLayer.SetLineCallback(GestureLayer.GestureState.Abort, (_) => { + _gestureLayer.SetLineCallback(GestureLayer.GestureState.Abort, (_) => + { _graphicsView?.CancelInteraction(); }); } - + public void Disconnect() { _gestureLayer?.Unrealize(); diff --git a/src/Core/src/Platform/Tizen/ShapeViewExtensions.cs b/src/Core/src/Platform/Tizen/ShapeViewExtensions.cs index e8dca6fe0c56..ae197705291b 100644 --- a/src/Core/src/Platform/Tizen/ShapeViewExtensions.cs +++ b/src/Core/src/Platform/Tizen/ShapeViewExtensions.cs @@ -12,6 +12,6 @@ public static void UpdateShape(this MauiShapeView platformView, IShapeView shape public static void InvalidateShape(this MauiShapeView platformView, IShapeView shapeView) { platformView.Invalidate(); - } + } } } \ No newline at end of file diff --git a/src/Core/src/Platform/Tizen/WindowExtensions.cs b/src/Core/src/Platform/Tizen/WindowExtensions.cs index 1bcb11b225c7..1f6845b523b4 100644 --- a/src/Core/src/Platform/Tizen/WindowExtensions.cs +++ b/src/Core/src/Platform/Tizen/WindowExtensions.cs @@ -47,7 +47,7 @@ public static void Initialize(this Window platformWindow) platformWindow.Active(); platformWindow.Show(); platformWindow.AvailableRotations = DisplayRotation.Degree_0 | DisplayRotation.Degree_90 | DisplayRotation.Degree_180 | DisplayRotation.Degree_270; - + platformWindow.RotationChanged += (sender, e) => { // TODO : should update later diff --git a/src/Core/src/Platform/ToPlatformException.cs b/src/Core/src/Platform/ToPlatformException.cs deleted file mode 100644 index 225741994bc4..000000000000 --- a/src/Core/src/Platform/ToPlatformException.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; -using System.Text; - -namespace Microsoft.Maui.Platform -{ - class ToPlatformException : System.Exception - { - public ToPlatformException() - { - } - - public ToPlatformException(string message) : base(message) - { - } - - public ToPlatformException(string message, Exception innerException) : base(message, innerException) - { - } - - protected ToPlatformException(SerializationInfo info, StreamingContext context) : base(info, context) - { - } - } -} diff --git a/src/Core/src/Platform/ViewExtensions.cs b/src/Core/src/Platform/ViewExtensions.cs index f57f5400dfdb..46dcb04697f6 100644 --- a/src/Core/src/Platform/ViewExtensions.cs +++ b/src/Core/src/Platform/ViewExtensions.cs @@ -5,7 +5,7 @@ using Microsoft.Maui.Media; using System.IO; -#if (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#if (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using IPlatformViewHandler = Microsoft.Maui.IViewHandler; #endif #if IOS || MACCATALYST diff --git a/src/Core/src/Platform/Windows/ButtonExtensions.cs b/src/Core/src/Platform/Windows/ButtonExtensions.cs index 10e477f72a9c..5b856a4f9c9f 100644 --- a/src/Core/src/Platform/Windows/ButtonExtensions.cs +++ b/src/Core/src/Platform/Windows/ButtonExtensions.cs @@ -16,55 +16,61 @@ public static void UpdateStrokeColor(this Button platformButton, IButtonStroke b var brush = buttonStroke.StrokeColor?.ToPlatform(); if (brush is null) - { - platformButton.Resources.Remove("ButtonBorderBrush"); - platformButton.Resources.Remove("ButtonBorderBrushPointerOver"); - platformButton.Resources.Remove("ButtonBorderBrushPressed"); - platformButton.Resources.Remove("ButtonBorderBrushDisabled"); - - platformButton.ClearValue(Button.BorderBrushProperty); - } + platformButton.Resources.RemoveKeys(StrokeColorResourceKeys); else - { - platformButton.Resources["ButtonBorderBrush"] = brush; - platformButton.Resources["ButtonBorderBrushPointerOver"] = brush; - platformButton.Resources["ButtonBorderBrushPressed"] = brush; - platformButton.Resources["ButtonBorderBrushDisabled"] = brush; + platformButton.Resources.SetValueForAllKey(StrokeColorResourceKeys, brush); - platformButton.BorderBrush = brush; - } + platformButton.RefreshThemeResources(); } + static readonly string[] StrokeColorResourceKeys = + { + "ButtonBorderBrush", + "ButtonBorderBrushPointerOver", + "ButtonBorderBrushPressed", + "ButtonBorderBrushDisabled", + }; + public static void UpdateStrokeThickness(this Button platformButton, IButtonStroke buttonStroke) { - if (buttonStroke.StrokeThickness >= 0) - { - platformButton.Resources["ButtonBorderThemeThickness"] = WinUIHelpers.CreateThickness(buttonStroke.StrokeThickness); - } + var thickness = buttonStroke.StrokeThickness; + + if (thickness >= 0) + platformButton.Resources.SetValueForAllKey(StrokeThicknessResourceKeys, WinUIHelpers.CreateThickness(buttonStroke.StrokeThickness)); else - { - platformButton.Resources.Remove("ButtonBorderThemeThickness"); - } + platformButton.Resources.RemoveKeys(StrokeThicknessResourceKeys); + + platformButton.RefreshThemeResources(); } + static readonly string[] StrokeThicknessResourceKeys = + { + "ButtonBorderThemeThickness", + }; + public static void UpdateCornerRadius(this Button platformButton, IButtonStroke buttonStroke) { - if (buttonStroke.CornerRadius >= 0) - { - platformButton.Resources["ControlCornerRadius"] = WinUIHelpers.CreateCornerRadius(buttonStroke.CornerRadius); - } + var radius = buttonStroke.CornerRadius; + + if (radius >= 0) + platformButton.Resources.SetValueForAllKey(CornerRadiusResourceKeys, WinUIHelpers.CreateCornerRadius(buttonStroke.CornerRadius)); else - { - platformButton.Resources.Remove("ControlCornerRadius"); - } + platformButton.Resources.RemoveKeys(CornerRadiusResourceKeys); + + platformButton.RefreshThemeResources(); } + static readonly string[] CornerRadiusResourceKeys = + { + "ControlCornerRadius", + }; + public static void UpdateText(this Button platformButton, IText text) { platformButton.UpdateText(text.Text); } - public static void UpdateText(this Button platformButton, string text) + public static void UpdateText(this Button platformButton, string text) { if (platformButton.GetContent() is TextBlock textBlock) { @@ -80,25 +86,21 @@ public static void UpdateBackground(this Button platformButton, IButton button) var brush = button.Background?.ToPlatform(); if (brush is null) - { - platformButton.Resources.Remove("ButtonBackground"); - platformButton.Resources.Remove("ButtonBackgroundPointerOver"); - platformButton.Resources.Remove("ButtonBackgroundPressed"); - platformButton.Resources.Remove("ButtonBackgroundDisabled"); - - platformButton.ClearValue(Button.BackgroundProperty); - } + platformButton.Resources.RemoveKeys(BackgroundResourceKeys); else - { - platformButton.Resources["ButtonBackground"] = brush; - platformButton.Resources["ButtonBackgroundPointerOver"] = brush; - platformButton.Resources["ButtonBackgroundPressed"] = brush; - platformButton.Resources["ButtonBackgroundDisabled"] = brush; + platformButton.Resources.SetValueForAllKey(BackgroundResourceKeys, brush); - platformButton.Background = brush; - } + platformButton.RefreshThemeResources(); } + static readonly string[] BackgroundResourceKeys = + { + "ButtonBackground", + "ButtonBackgroundPointerOver", + "ButtonBackgroundPressed", + "ButtonBackgroundDisabled", + }; + public static void UpdateTextColor(this ButtonBase platformButton, ITextStyle button) { UpdateTextColor(platformButton, button.TextColor); @@ -107,30 +109,33 @@ public static void UpdateTextColor(this ButtonBase platformButton, ITextStyle bu public static void UpdateTextColor(this ButtonBase platformButton, Color textColor) { var brush = textColor?.ToPlatform(); + if (brush is null) { // Windows.Foundation.UniversalApiContract < 5 - platformButton.Resources.Remove("ButtonForeground"); - platformButton.Resources.Remove("ButtonForegroundPointerOver"); - platformButton.Resources.Remove("ButtonForegroundPressed"); - platformButton.Resources.Remove("ButtonForegroundDisabled"); - + platformButton.Resources.RemoveKeys(TextColorResourceKeys); // Windows.Foundation.UniversalApiContract >= 5 platformButton.ClearValue(Button.ForegroundProperty); } else { // Windows.Foundation.UniversalApiContract < 5 - platformButton.Resources["ButtonForeground"] = brush; - platformButton.Resources["ButtonForegroundPointerOver"] = brush; - platformButton.Resources["ButtonForegroundPressed"] = brush; - platformButton.Resources["ButtonForegroundDisabled"] = brush; - + platformButton.Resources.SetValueForAllKey(TextColorResourceKeys, brush); // Windows.Foundation.UniversalApiContract >= 5 platformButton.Foreground = brush; } + + platformButton.RefreshThemeResources(); } + static readonly string[] TextColorResourceKeys = + { + "ButtonForeground", + "ButtonForegroundPointerOver", + "ButtonForegroundPressed", + "ButtonForegroundDisabled", + }; + public static void UpdatePadding(this Button platformButton, IPadding padding) => platformButton.UpdatePadding(padding, platformButton.GetResource("ButtonPadding")); @@ -174,7 +179,7 @@ void OnImageOpened(object sender, RoutedEventArgs e) if (actualImageSource is not null && nativeImage.Source == actualImageSource) nativeImage.Height = nativeImage.Width = Primitives.Dimension.Unset; - + if (platformButton.Parent is FrameworkElement frameworkElement) frameworkElement.InvalidateMeasure(); }; diff --git a/src/Core/src/Platform/Windows/CheckBoxExtensions.cs b/src/Core/src/Platform/Windows/CheckBoxExtensions.cs index 9d09d46e520a..d7f9a7dfcbaa 100644 --- a/src/Core/src/Platform/Windows/CheckBoxExtensions.cs +++ b/src/Core/src/Platform/Windows/CheckBoxExtensions.cs @@ -11,7 +11,7 @@ public static void UpdateIsChecked(this CheckBox platformCheckBox, ICheckBox che platformCheckBox.IsChecked = check.IsChecked; } - public static void UpdateForeground(this CheckBox platformCheckBox, ICheckBox check) + public static void UpdateForeground(this CheckBox platformCheckBox, ICheckBox check) { var tintBrush = check.Foreground?.ToPlatform(); diff --git a/src/Core/src/Platform/Windows/ColorConverter.cs b/src/Core/src/Platform/Windows/ColorConverter.cs index 2ccab0d0def5..4ef57acc9451 100644 --- a/src/Core/src/Platform/Windows/ColorConverter.cs +++ b/src/Core/src/Platform/Windows/ColorConverter.cs @@ -12,8 +12,8 @@ public object Convert(object value, Type targetType, object parameter, string la var color = (Graphics.Color)value; var defaultColorKey = (string)parameter; - WBrush defaultBrush = defaultColorKey != null ? - (WBrush)UI.Xaml.Application.Current.Resources[defaultColorKey] : + WBrush defaultBrush = defaultColorKey != null ? + (WBrush)UI.Xaml.Application.Current.Resources[defaultColorKey] : new WSolidColorBrush(Colors.Transparent); return color.IsDefault() ? defaultBrush : color.ToPlatform(); diff --git a/src/Core/src/Platform/Windows/ColorExtensions.cs b/src/Core/src/Platform/Windows/ColorExtensions.cs index a12940becba4..b60713027efe 100644 --- a/src/Core/src/Platform/Windows/ColorExtensions.cs +++ b/src/Core/src/Platform/Windows/ColorExtensions.cs @@ -28,7 +28,7 @@ public static Graphics.Color ToColor(this WSolidColorBrush solidColorBrush) return solidColorBrush.Color.ToColor(); } - public static bool IsDefault(this Graphics.Color? color) + public static bool IsDefault(this Graphics.Color? color) { return color == null; } diff --git a/src/Core/src/Platform/Windows/CompositionImageBrush.cs b/src/Core/src/Platform/Windows/CompositionImageBrush.cs index 75c59ad7969e..440c38d8b62e 100644 --- a/src/Core/src/Platform/Windows/CompositionImageBrush.cs +++ b/src/Core/src/Platform/Windows/CompositionImageBrush.cs @@ -10,68 +10,68 @@ namespace Microsoft.Maui.Platform { - class CompositionImageBrush : IDisposable - { - CompositionGraphicsDevice _graphicsDevice; - CompositionDrawingSurface _drawingSurface; - CompositionSurfaceBrush _drawingBrush; + class CompositionImageBrush : IDisposable + { + CompositionGraphicsDevice _graphicsDevice; + CompositionDrawingSurface _drawingSurface; + CompositionSurfaceBrush _drawingBrush; - public CompositionBrush Brush => _drawingBrush; + public CompositionBrush Brush => _drawingBrush; - public CompositionImageBrush() - { - } + public CompositionImageBrush() + { + } - void CreateDevice(Compositor compositor) - { - _graphicsDevice = CanvasComposition.CreateCompositionGraphicsDevice( - compositor, CanvasDevice.GetSharedDevice()); - } + void CreateDevice(Compositor compositor) + { + _graphicsDevice = CanvasComposition.CreateCompositionGraphicsDevice( + compositor, CanvasDevice.GetSharedDevice()); + } - void CreateDrawingSurface(global::Windows.Foundation.Size drawSize) - { - _drawingSurface = _graphicsDevice.CreateDrawingSurface( - drawSize, - DirectXPixelFormat.B8G8R8A8UIntNormalized, - DirectXAlphaMode.Premultiplied); - } + void CreateDrawingSurface(global::Windows.Foundation.Size drawSize) + { + _drawingSurface = _graphicsDevice.CreateDrawingSurface( + drawSize, + DirectXPixelFormat.B8G8R8A8UIntNormalized, + DirectXAlphaMode.Premultiplied); + } - void CreateSurfaceBrush(Compositor compositor) - { - _drawingBrush = compositor.CreateSurfaceBrush(_drawingSurface); - } + void CreateSurfaceBrush(Compositor compositor) + { + _drawingBrush = compositor.CreateSurfaceBrush(_drawingSurface); + } - public static CompositionImageBrush FromBGRASoftwareBitmap( - Compositor compositor, - SoftwareBitmap bitmap, - Size outputSize) - { - CompositionImageBrush brush = new CompositionImageBrush(); + public static CompositionImageBrush FromBGRASoftwareBitmap( + Compositor compositor, + SoftwareBitmap bitmap, + Size outputSize) + { + CompositionImageBrush brush = new CompositionImageBrush(); - brush.CreateDevice(compositor); + brush.CreateDevice(compositor); - brush.CreateDrawingSurface(outputSize); - brush.DrawSoftwareBitmap(bitmap, outputSize); - brush.CreateSurfaceBrush(compositor); + brush.CreateDrawingSurface(outputSize); + brush.DrawSoftwareBitmap(bitmap, outputSize); + brush.CreateSurfaceBrush(compositor); - return (brush); - } + return (brush); + } - void DrawSoftwareBitmap(SoftwareBitmap softwareBitmap, Size renderSize) - { - using (var drawingSession = CanvasComposition.CreateDrawingSession(_drawingSurface)) - using (var bitmap = CanvasBitmap.CreateFromSoftwareBitmap(drawingSession.Device, softwareBitmap)) - { - drawingSession.DrawImage(bitmap, - new Rect(0, 0, renderSize.Width, renderSize.Height)); - } - } + void DrawSoftwareBitmap(SoftwareBitmap softwareBitmap, Size renderSize) + { + using (var drawingSession = CanvasComposition.CreateDrawingSession(_drawingSurface)) + using (var bitmap = CanvasBitmap.CreateFromSoftwareBitmap(drawingSession.Device, softwareBitmap)) + { + drawingSession.DrawImage(bitmap, + new Rect(0, 0, renderSize.Width, renderSize.Height)); + } + } - public void Dispose() - { - _drawingBrush.Dispose(); - _drawingSurface.Dispose(); - _graphicsDevice.Dispose(); - } - } + public void Dispose() + { + _drawingBrush.Dispose(); + _drawingSurface.Dispose(); + _graphicsDevice.Dispose(); + } + } } diff --git a/src/Core/src/Platform/Windows/ContentPanel.cs b/src/Core/src/Platform/Windows/ContentPanel.cs index a3e9e9e1283b..8e8c06e6dba6 100644 --- a/src/Core/src/Platform/Windows/ContentPanel.cs +++ b/src/Core/src/Platform/Windows/ContentPanel.cs @@ -59,7 +59,7 @@ internal FrameworkElement? Content _borderPath?.Arrange(new global::Windows.Foundation.Rect(0, 0, finalSize.Width, finalSize.Height)); - return new global::Windows.Foundation.Size(actual.Width, actual.Height); + return new global::Windows.Foundation.Size(Math.Max(0, actual.Width), Math.Max(0, actual.Height)); } public ContentPanel() diff --git a/src/Core/src/Platform/Windows/FrameworkElementExtensions.cs b/src/Core/src/Platform/Windows/FrameworkElementExtensions.cs index 259598662218..c8a404211db1 100644 --- a/src/Core/src/Platform/Windows/FrameworkElementExtensions.cs +++ b/src/Core/src/Platform/Windows/FrameworkElementExtensions.cs @@ -324,5 +324,19 @@ internal static void SetApplicationResource(this FrameworkElement frameworkEleme .ToPlatform() .GetLocationRelativeTo(relativeTo.ToPlatform()); } + + internal static void RefreshThemeResources(this FrameworkElement nativeView) + { + var previous = nativeView.RequestedTheme; + + // Workaround for https://github.com/dotnet/maui/issues/7820 + nativeView.RequestedTheme = nativeView.ActualTheme switch + { + ElementTheme.Dark => ElementTheme.Light, + _ => ElementTheme.Dark + }; + + nativeView.RequestedTheme = previous; + } } } diff --git a/src/Core/src/Platform/Windows/LayoutPanel.cs b/src/Core/src/Platform/Windows/LayoutPanel.cs index 79e465af8074..f7f2d9de2b25 100644 --- a/src/Core/src/Platform/Windows/LayoutPanel.cs +++ b/src/Core/src/Platform/Windows/LayoutPanel.cs @@ -71,7 +71,7 @@ public void UpdateInputTransparent(bool inputTransparent, Brush? background) } } - void MakeInputTransparent(Brush? background) + void MakeInputTransparent(Brush? background) { Background = null; @@ -88,7 +88,7 @@ void MakeInputTransparent(Brush? background) } } - void MakeInputVisible(Brush? background) + void MakeInputVisible(Brush? background) { // If we aren't input transparent, we don't need the background layer hack RemoveBackgroundLayer(); diff --git a/src/Core/src/Platform/Windows/LayoutPanelExtensions.cs b/src/Core/src/Platform/Windows/LayoutPanelExtensions.cs index afe6dab4edc9..cefe973061f9 100644 --- a/src/Core/src/Platform/Windows/LayoutPanelExtensions.cs +++ b/src/Core/src/Platform/Windows/LayoutPanelExtensions.cs @@ -2,9 +2,9 @@ namespace Microsoft.Maui.Platform { - public static class LayoutPanelExtensions + public static class LayoutPanelExtensions { - public static void UpdateClipsToBounds(this LayoutPanel layoutPanel, ILayout layout) + public static void UpdateClipsToBounds(this LayoutPanel layoutPanel, ILayout layout) { layoutPanel.ClipsToBounds = layout.ClipsToBounds; layoutPanel.InvalidateArrange(); diff --git a/src/Core/src/Platform/Windows/MauiPageControl.cs b/src/Core/src/Platform/Windows/MauiPageControl.cs index 72b5eca30cbd..7d537d085e62 100644 --- a/src/Core/src/Platform/Windows/MauiPageControl.cs +++ b/src/Core/src/Platform/Windows/MauiPageControl.cs @@ -66,7 +66,7 @@ internal void CreateIndicators() for (int i = 0; i < indicatorCount; i++) { var shape = CreateIndicator(i, position); - + if (shape != null) { indicators.Add(shape); @@ -117,7 +117,7 @@ ItemsPanelTemplate GetItemsPanelTemplate() }; } shape.Tag = i; - shape.PointerPressed += (s,e) => + shape.PointerPressed += (s, e) => { if (_indicatorView == null) return; diff --git a/src/Core/src/Platform/Windows/MauiPasswordTextBox.cs b/src/Core/src/Platform/Windows/MauiPasswordTextBox.cs index 7322fb3d7c3b..f737e121b801 100644 --- a/src/Core/src/Platform/Windows/MauiPasswordTextBox.cs +++ b/src/Core/src/Platform/Windows/MauiPasswordTextBox.cs @@ -136,11 +136,17 @@ protected override void OnKeyDown(KeyRoutedEventArgs e) } private void OnNativeTextChanging(TextBox sender, TextBoxTextChangingEventArgs args) - { - // As we are obfuscating the text by ourselves, transforming the text, or a user could be using a custom Converter; - // we are setting the Text property directly on code many times. - // This causes that we invoke the SelectionChanged event many times with SelectionStart = 0, setting the cursor to - // the beginning of the TextBox. + { + // We are handling the CursorPosition issue at Platform.TextBoxExtensions.UpdateText method + // but when IsPassword=true, it is too late to handle it at that moment, as we have already + // obfuscated the text and have lost the real CursorPosition value. So, let's handle that + // issue here when IsPassword is enabled. + if (!IsPassword) + return; + + // As we are obfuscating the text by ourselves we are setting the Text property directly on code many times. + // This causes that we invoke the SelectionChanged event many times with SelectionStart = 0, setting the cursor + // to the beginning of the TextBox. // To avoid this behavior let's save the current cursor position of the first time the Text is updated by the user // and keep the same cursor position after each Text update until a new Text update by the user happens. var updatedPassword = DetermineTextFromPassword(Password, SelectionStart, Text); @@ -154,7 +160,7 @@ private void OnNativeTextChanging(TextBox sender, TextBoxTextChangingEventArgs a { // Recalculate the cursor position, as the Text could be modified by a user Converter _cachedCursorPosition += (updatedPassword.Length - _cachedTextLength); - SelectionStart = _cachedCursorPosition; + SelectionStart = this.GetCursorPosition(_cachedCursorPosition); } } diff --git a/src/Core/src/Platform/Windows/MauiWebView.cs b/src/Core/src/Platform/Windows/MauiWebView.cs index 2880166c15d9..a4028f258c39 100644 --- a/src/Core/src/Platform/Windows/MauiWebView.cs +++ b/src/Core/src/Platform/Windows/MauiWebView.cs @@ -1,15 +1,39 @@ using System; using System.Diagnostics; using System.Text.RegularExpressions; +using Microsoft.Maui.ApplicationModel; using Microsoft.UI.Xaml.Controls; +using Windows.ApplicationModel; namespace Microsoft.Maui.Platform { public class MauiWebView : WebView2, IWebViewDelegate { + public MauiWebView() + { + NavigationStarting += (sender, args) => + { + // Auto map local virtual app dir host, e.g. if navigating back to local site from a link to an external site + if (args?.Uri?.ToLowerInvariant().StartsWith(LocalScheme.TrimEnd('/').ToLowerInvariant()) == true) + { + CoreWebView2.SetVirtualHostNameToFolderMapping( + LocalHostName, + ApplicationPath, + Web.WebView2.Core.CoreWebView2HostResourceAccessKind.Allow); + } + // Auto unmap local virtual app dir host if navigating to any other potentially unsafe domain + else + { + CoreWebView2.ClearVirtualHostNameToFolderMapping(LocalHostName); + } + }; + } + WebView2? _internalWebView; - const string LocalScheme = "ms-appx-web:///"; + // Arbitrary local host name for virtual folder mapping + const string LocalHostName = "appdir"; + const string LocalScheme = $"https://{LocalHostName}/"; // Script to insert a tag into an HTML document const string BaseInsertionScript = @" @@ -19,11 +43,19 @@ public class MauiWebView : WebView2, IWebViewDelegate head.innerHTML = 'baseTag' + head.innerHTML; }"; + // Allow for packaged/unpackaged app support + string ApplicationPath => AppInfoUtils.IsPackagedApp + ? Package.Current.InstalledLocation.Path + : AppContext.BaseDirectory; + public async void LoadHtml(string? html, string? baseUrl) { + var mapBaseDirectory = false; + if (string.IsNullOrEmpty(baseUrl)) { baseUrl = LocalScheme; + mapBaseDirectory = true; } // Generate a base tag for the document @@ -36,7 +68,7 @@ public async void LoadHtml(string? html, string? baseUrl) _internalWebView = new WebView2(); // TODO: For now, the CoreWebView2 won't be created without either setting Source or - // calling EnsureCoreWebView2Async(). + // calling EnsureCoreWebView2Async(). await _internalWebView.EnsureCoreWebView2Async(); // When the 'navigation' to the original HTML string is done, we can modify it to include our tag @@ -55,6 +87,14 @@ public async void LoadHtml(string? html, string? baseUrl) await EnsureCoreWebView2Async(); + if (mapBaseDirectory) + { + CoreWebView2.SetVirtualHostNameToFolderMapping( + LocalHostName, + ApplicationPath, + Web.WebView2.Core.CoreWebView2HostResourceAccessKind.Allow); + } + // Set the HTML for the 'real' WebView to the updated HTML NavigateToString(!string.IsNullOrEmpty(htmlWithBaseTag) ? htmlWithBaseTag : html); @@ -66,12 +106,19 @@ public async void LoadHtml(string? html, string? baseUrl) _internalWebView.NavigateToString(html); } - public void LoadUrl(string? url) + public async void LoadUrl(string? url) { Uri uri = new Uri(url ?? string.Empty, UriKind.RelativeOrAbsolute); if (!uri.IsAbsoluteUri) { + await EnsureCoreWebView2Async(); + + CoreWebView2.SetVirtualHostNameToFolderMapping( + LocalHostName, + ApplicationPath, + Web.WebView2.Core.CoreWebView2HostResourceAccessKind.Allow); + uri = new Uri(LocalScheme + url, UriKind.RelativeOrAbsolute); } diff --git a/src/Core/src/Platform/Windows/MauiWinUIWindow.cs b/src/Core/src/Platform/Windows/MauiWinUIWindow.cs index 039ee4d5ead2..aa4ec68c2b08 100644 --- a/src/Core/src/Platform/Windows/MauiWinUIWindow.cs +++ b/src/Core/src/Platform/Windows/MauiWinUIWindow.cs @@ -4,6 +4,7 @@ using Microsoft.Maui.LifecycleEvents; using Microsoft.UI; using Microsoft.UI.Windowing; +using Microsoft.UI.Xaml.Controls; namespace Microsoft.Maui { @@ -61,7 +62,7 @@ protected virtual void OnVisibilityChanged(object sender, UI.Xaml.WindowVisibili MauiWinUIApplication.Current.Services?.InvokeLifecycleEvents(del => del(this, args)); } - #region Native Window + #region Platform Window IntPtr _hwnd = IntPtr.Zero; @@ -137,6 +138,28 @@ void SetIcon() } } + UI.Xaml.UIElement? _customTitleBar; + internal UI.Xaml.UIElement? MauiCustomTitleBar + { + get => _customTitleBar; + set + { + _customTitleBar = value; + SetTitleBar(_customTitleBar); + UpdateTitleOnCustomTitleBar(); + } + } + + internal void UpdateTitleOnCustomTitleBar() + { + if (_customTitleBar is UI.Xaml.FrameworkElement fe && + fe.GetDescendantByName("AppTitle") is TextBlock tb) + { + tb.Text = Title; + } + } + + [DllImport("shell32.dll", CharSet = CharSet.Auto)] static extern IntPtr ExtractAssociatedIcon(IntPtr hInst, string iconPath, ref IntPtr index); diff --git a/src/Core/src/Platform/Windows/NavigationRootManager.cs b/src/Core/src/Platform/Windows/NavigationRootManager.cs index 64d09da6d77f..d5a658e39f63 100644 --- a/src/Core/src/Platform/Windows/NavigationRootManager.cs +++ b/src/Core/src/Platform/Windows/NavigationRootManager.cs @@ -9,8 +9,8 @@ public partial class NavigationRootManager { Window _platformWindow; WindowRootView _rootView; - bool _firstConnect; - bool _disconnected; + bool _disconnected = true; + bool _isActiveRootManager; public NavigationRootManager(Window platformWindow) { @@ -28,6 +28,7 @@ void OnBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs .BackButtonClicked(); } + internal ContentControl? AppTitleBarContentControl => _rootView.AppTitleBarContentControl; internal FrameworkElement? AppTitleBar => _rootView.AppTitleBar; internal MauiToolbar? Toolbar => _rootView.Toolbar; @@ -55,9 +56,7 @@ void OnAppTitleBarChanged(object? sender, EventArgs e) public virtual void Connect(UIElement platformView) { - bool firstConnect = _firstConnect; - - if (!firstConnect) + if (_rootView.Content != null) { // We need to make sure to clear out the root view content // before creating the new view. @@ -66,8 +65,6 @@ public virtual void Connect(UIElement platformView) _rootView.Content = null; } - _firstConnect = false; - NavigationView rootNavigationView; if (platformView is NavigationView nv) { @@ -91,17 +88,10 @@ public virtual void Connect(UIElement platformView) if (_disconnected) { + _isActiveRootManager = true; _platformWindow.Activated += OnWindowActivated; } - if (firstConnect) - { - if (_rootView.AppTitleBarContentControl != null && _platformWindow.ExtendsContentIntoTitleBar) - UpdateAppTitleBar(true); - - SetWindowTitle(_platformWindow.GetWindow()?.Title); - } - _disconnected = false; } @@ -120,7 +110,9 @@ internal void UpdateAppTitleBar(bool isActive) if (isActive) { _rootView.Visibility = UI.Xaml.Visibility.Visible; - _platformWindow.SetTitleBar(_rootView.AppTitleBarContentControl); + SetTitleBar(_rootView.AppTitleBarContentControl); + + SetWindowTitle(_platformWindow.GetWindow()?.Title); } else { @@ -129,8 +121,27 @@ internal void UpdateAppTitleBar(bool isActive) } else { - _platformWindow.SetTitleBar(null); + SetTitleBar(null); + } + + if (!_isActiveRootManager && isActive) + { + _platformWindow.Activated += OnWindowActivated; + } + else if (!isActive) + { + _platformWindow.Activated -= OnWindowActivated; } + + _isActiveRootManager = isActive; + } + + void SetTitleBar(UIElement? titleBar) + { + if (_platformWindow is MauiWinUIWindow mauiWindow) + mauiWindow.MauiCustomTitleBar = titleBar; + else + _platformWindow.SetTitleBar(titleBar); } internal void SetWindowTitle(string? title) @@ -150,6 +161,11 @@ internal void SetToolbar(FrameworkElement? toolBar) void OnWindowActivated(object sender, WindowActivatedEventArgs e) { + if (!_isActiveRootManager) + { + _platformWindow.Activated -= OnWindowActivated; + } + if (_rootView.AppTitle == null) return; diff --git a/src/Core/src/Platform/Windows/PickerExtensions.cs b/src/Core/src/Platform/Windows/PickerExtensions.cs index 501eaf51c859..9d7bdb6c3c20 100644 --- a/src/Core/src/Platform/Windows/PickerExtensions.cs +++ b/src/Core/src/Platform/Windows/PickerExtensions.cs @@ -11,7 +11,7 @@ public static void UpdateTitle(this ComboBox nativeComboBox, IPicker picker) { nativeComboBox.Header = null; - nativeComboBox.HeaderTemplate = string.IsNullOrEmpty(picker.Title) ? null : + nativeComboBox.HeaderTemplate = string.IsNullOrEmpty(picker.Title) ? null : (UI.Xaml.DataTemplate)UI.Xaml.Application.Current.Resources["ComboBoxHeader"]; nativeComboBox.DataContext = picker; @@ -74,8 +74,8 @@ public static void UpdateCharacterSpacing(this ComboBox nativeComboBox, IPicker } public static void UpdateFont(this ComboBox nativeComboBox, IPicker picker, IFontManager fontManager) => - nativeComboBox.UpdateFont(picker.Font, fontManager); - + nativeComboBox.UpdateFont(picker.Font, fontManager); + public static void UpdateHorizontalTextAlignment(this ComboBox nativeComboBox, IPicker picker) { nativeComboBox.HorizontalContentAlignment = picker.HorizontalTextAlignment.ToPlatformHorizontalAlignment(); diff --git a/src/Core/src/Platform/Windows/PlatformMethods.cs b/src/Core/src/Platform/Windows/PlatformMethods.cs index a9eb52e7af2b..c65d7043a9ce 100644 --- a/src/Core/src/Platform/Windows/PlatformMethods.cs +++ b/src/Core/src/Platform/Windows/PlatformMethods.cs @@ -72,9 +72,9 @@ public static Maui.Graphics.Rect GetCaptionButtonsBound(IntPtr hWnd) DwmGetWindowAttribute(hWnd, DwmWindowAttribute.DWMWA_CAPTION_BUTTON_BOUNDS, out RECT value, Marshal.SizeOf(typeof(RECT))); var density = GetDpiForWindow(hWnd) / 96f; return new Graphics.Rect( - value.Left / density, - value.Top / density, - value.Right / density, + value.Left / density, + value.Top / density, + value.Right / density, value.Bottom / density); } diff --git a/src/Core/src/Platform/Windows/RadioButtonExtensions.cs b/src/Core/src/Platform/Windows/RadioButtonExtensions.cs index 587905d69ae4..5fc59b84df1b 100644 --- a/src/Core/src/Platform/Windows/RadioButtonExtensions.cs +++ b/src/Core/src/Platform/Windows/RadioButtonExtensions.cs @@ -52,7 +52,7 @@ public static void UpdateContent(this RadioButton platformRadioButton, IRadioBut else platformRadioButton.Content = $"{radioButton.Content}"; } - + private static readonly string[] _borderColorKeys = { "RadioButtonBorderBrush", diff --git a/src/Core/src/Platform/Windows/RootNavigationView.cs b/src/Core/src/Platform/Windows/RootNavigationView.cs index 6200ba401fc5..a1568ff090ce 100644 --- a/src/Core/src/Platform/Windows/RootNavigationView.cs +++ b/src/Core/src/Platform/Windows/RootNavigationView.cs @@ -45,7 +45,7 @@ public RootNavigationView() return; base.Toolbar = value; - + if (value != null) { value.NavigationViewBackButton = NavigationViewBackButton; diff --git a/src/Core/src/Platform/Windows/RootPanel.cs b/src/Core/src/Platform/Windows/RootPanel.cs new file mode 100644 index 000000000000..6de77550f023 --- /dev/null +++ b/src/Core/src/Platform/Windows/RootPanel.cs @@ -0,0 +1,50 @@ +#nullable enable +using System; +using Microsoft.Maui.Graphics; +using Microsoft.UI.Xaml.Controls; + +namespace Microsoft.Maui.Platform +{ + [Obsolete("Use Microsoft.Maui.Platform.ContentPanel")] + public class RootPanel : Panel + { + internal Func? CrossPlatformMeasure { get; set; } + internal Func? CrossPlatformArrange { get; set; } + + protected override global::Windows.Foundation.Size MeasureOverride(global::Windows.Foundation.Size availableSize) + { + var width = availableSize.Width; + var height = availableSize.Height; + + if (double.IsInfinity(width)) + { + width = XamlRoot.Size.Width; + } + + if (double.IsInfinity(height)) + { + height = XamlRoot.Size.Height; + } + + var size = new global::Windows.Foundation.Size(width, height); + + // Measure the children (should only be one, the Page) + foreach (var child in Children) + { + child.Measure(size); + } + + return size; + } + + protected override global::Windows.Foundation.Size ArrangeOverride(global::Windows.Foundation.Size finalSize) + { + foreach (var child in Children) + { + child.Arrange(new global::Windows.Foundation.Rect(new global::Windows.Foundation.Point(0, 0), finalSize)); + } + + return finalSize; + } + } +} \ No newline at end of file diff --git a/src/Core/src/Platform/Windows/ShadowExtensions.cs b/src/Core/src/Platform/Windows/ShadowExtensions.cs index ac0f7934b5ef..4017ca65907c 100644 --- a/src/Core/src/Platform/Windows/ShadowExtensions.cs +++ b/src/Core/src/Platform/Windows/ShadowExtensions.cs @@ -25,7 +25,7 @@ public static async Task GetAlphaMaskAsync(this UIElement elem try { //For some reason, using TextBlock and getting the AlphaMask - //generates a shadow with a size more smaller than the control size. + //generates a shadow with a size more smaller than the control size. if (element is TextBlock textElement) { return textElement.GetAlphaMask(); @@ -64,12 +64,12 @@ await bitmap.RenderAsync( bitmap.PixelHeight, BitmapAlphaMode.Premultiplied)) { - var brush = CompositionImageBrush.FromBGRASoftwareBitmap( - visual.Compositor, - softwareBitmap, - new Size(bitmap.PixelWidth, bitmap.PixelHeight)); - mask = brush.Brush; - } + var brush = CompositionImageBrush.FromBGRASoftwareBitmap( + visual.Compositor, + softwareBitmap, + new Size(bitmap.PixelWidth, bitmap.PixelHeight)); + mask = brush.Brush; + } } } } diff --git a/src/Core/src/Platform/Windows/SizeExtensions.cs b/src/Core/src/Platform/Windows/SizeExtensions.cs index a2a8db5bc1ee..8bbc2f9a09c0 100644 --- a/src/Core/src/Platform/Windows/SizeExtensions.cs +++ b/src/Core/src/Platform/Windows/SizeExtensions.cs @@ -2,8 +2,8 @@ namespace Microsoft.Maui.Platform { - public static class SizeExtensions - { + public static class SizeExtensions + { public static global::Windows.Foundation.Size ToPlatform(this Size size) => new global::Windows.Foundation.Size(size.Width, size.Height); } } \ No newline at end of file diff --git a/src/Core/src/Platform/Windows/SliderExtensions.cs b/src/Core/src/Platform/Windows/SliderExtensions.cs index aa887d2e24da..b97b6f5c3d18 100644 --- a/src/Core/src/Platform/Windows/SliderExtensions.cs +++ b/src/Core/src/Platform/Windows/SliderExtensions.cs @@ -36,14 +36,12 @@ public static void UpdateMinimumTrackColor(this Slider platformSlider, ISlider s { var brush = slider.MinimumTrackColor?.ToPlatform(); - if (brush == null) - { + if (brush is null) platformSlider.Resources.RemoveKeys(MinimumTrackColorResourceKeys); - } else - { platformSlider.Resources.SetValueForAllKey(MinimumTrackColorResourceKeys, brush); - } + + platformSlider.RefreshThemeResources(); } static readonly string[] MinimumTrackColorResourceKeys = @@ -59,13 +57,11 @@ public static void UpdateMaximumTrackColor(this Slider platformSlider, ISlider s var brush = slider.MaximumTrackColor?.ToPlatform(); if (brush == null) - { platformSlider.Resources.RemoveKeys(MaximumTrackColorResourceKeys); - } else - { platformSlider.Resources.SetValueForAllKey(MaximumTrackColorResourceKeys, brush); - } + + platformSlider.RefreshThemeResources(); } static readonly string[] MaximumTrackColorResourceKeys = @@ -80,14 +76,12 @@ public static void UpdateThumbColor(this Slider platformSlider, ISlider slider) { var brush = slider.ThumbColor?.ToPlatform(); - if (brush == null) - { + if (brush is null) platformSlider.Resources.RemoveKeys(ThumbColorResourceKeys); - } else - { platformSlider.Resources.SetValueForAllKey(ThumbColorResourceKeys, brush); - } + + platformSlider.RefreshThemeResources(); } static readonly string[] ThumbColorResourceKeys = diff --git a/src/Core/src/Platform/Windows/StrokeExtensions.cs b/src/Core/src/Platform/Windows/StrokeExtensions.cs index b9a512e070cb..affe121cdfb6 100644 --- a/src/Core/src/Platform/Windows/StrokeExtensions.cs +++ b/src/Core/src/Platform/Windows/StrokeExtensions.cs @@ -65,7 +65,7 @@ public static void UpdateStrokeMiterLimit(this ContentPanel platformView, IBorde platformView.BorderPath?.UpdateStrokeMiterLimit(strokeMiterLimit); } - public static void UpdateStrokeLineCap(this ContentPanel platformView, IBorderStroke border) + public static void UpdateStrokeLineCap(this ContentPanel platformView, IBorderStroke border) { bool hasBorder = border.Shape != null && border.Stroke != null; diff --git a/src/Core/src/Platform/Windows/TextAlignmentToHorizontalAlignmentConverter.cs b/src/Core/src/Platform/Windows/TextAlignmentToHorizontalAlignmentConverter.cs index a848baa3c82c..21813e9565c0 100644 --- a/src/Core/src/Platform/Windows/TextAlignmentToHorizontalAlignmentConverter.cs +++ b/src/Core/src/Platform/Windows/TextAlignmentToHorizontalAlignmentConverter.cs @@ -12,7 +12,7 @@ public object Convert(object value, Type targetType, object parameter, string la switch (alignment) { case Microsoft.UI.Xaml.TextAlignment.Center: - return HorizontalAlignment.Center; + return HorizontalAlignment.Center; case Microsoft.UI.Xaml.TextAlignment.Left: return HorizontalAlignment.Left; case Microsoft.UI.Xaml.TextAlignment.Right: diff --git a/src/Core/src/Platform/Windows/TextBoxExtensions.cs b/src/Core/src/Platform/Windows/TextBoxExtensions.cs index b58415f5a404..15e8f4f885b7 100644 --- a/src/Core/src/Platform/Windows/TextBoxExtensions.cs +++ b/src/Core/src/Platform/Windows/TextBoxExtensions.cs @@ -1,6 +1,8 @@ #nullable enable +using System; using Microsoft.Maui.Graphics; using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Input; namespace Microsoft.Maui.Platform { @@ -24,52 +26,49 @@ public static void UpdateText(this TextBox platformControl, ITextInput textInput platformControl.Text = newText ?? string.Empty; if (!string.IsNullOrEmpty(platformControl.Text)) - platformControl.SelectionStart = platformControl.Text.Length; + platformControl.Select(platformControl.Text.Length, 0); } public static void UpdateBackground(this TextBox textBox, IView view) { var brush = view.Background?.ToPlatform(); + if (brush is null) - { - textBox.Resources.Remove("TextControlBackground"); - textBox.Resources.Remove("TextControlBackgroundPointerOver"); - textBox.Resources.Remove("TextControlBackgroundFocused"); - textBox.Resources.Remove("TextControlBackgroundDisabled"); - } + textBox.Resources.RemoveKeys(BackgroundResourceKeys); else - { - textBox.Resources["TextControlBackground"] = brush; - textBox.Resources["TextControlBackgroundPointerOver"] = brush; - textBox.Resources["TextControlBackgroundFocused"] = brush; - textBox.Resources["TextControlBackgroundDisabled"] = brush; - } + textBox.Resources.SetValueForAllKey(BackgroundResourceKeys, brush); + + textBox.RefreshThemeResources(); } + static readonly string[] BackgroundResourceKeys = + { + "TextControlBackground", + "TextControlBackgroundPointerOver", + "TextControlBackgroundFocused", + "TextControlBackgroundDisabled", + }; + public static void UpdateTextColor(this TextBox textBox, ITextStyle textStyle) { var brush = textStyle.TextColor?.ToPlatform(); if (brush is null) - { - textBox.Resources.Remove("TextControlForeground"); - textBox.Resources.Remove("TextControlForegroundPointerOver"); - textBox.Resources.Remove("TextControlForegroundFocused"); - textBox.Resources.Remove("TextControlForegroundDisabled"); - - textBox.ClearValue(TextBox.ForegroundProperty); - } + textBox.Resources.RemoveKeys(TextColorResourceKeys); else - { - textBox.Resources["TextControlForeground"] = brush; - textBox.Resources["TextControlForegroundPointerOver"] = brush; - textBox.Resources["TextControlForegroundFocused"] = brush; - textBox.Resources["TextControlForegroundDisabled"] = brush; + textBox.Resources.SetValueForAllKey(TextColorResourceKeys, brush); - textBox.Foreground = brush; - } + textBox.RefreshThemeResources(); } + static readonly string[] TextColorResourceKeys = + { + "TextControlForeground", + "TextControlForegroundPointerOver", + "TextControlForegroundFocused", + "TextControlForegroundDisabled", + }; + public static void UpdateCharacterSpacing(this TextBox textBox, ITextStyle textStyle) { textBox.CharacterSpacing = textStyle.CharacterSpacing.ToEm(); @@ -80,6 +79,9 @@ public static void UpdateReturnType(this TextBox textBox, ITextInput textInput) textBox.UpdateInputScope(textInput); } + internal static bool GetClearButtonVisibility(this TextBox textBox) => + MauiTextBox.GetIsDeleteButtonEnabled(textBox); + public static void UpdateClearButtonVisibility(this TextBox textBox, IEntry entry) => MauiTextBox.SetIsDeleteButtonEnabled(textBox, entry.ClearButtonVisibility == ClearButtonVisibility.WhileEditing); @@ -95,27 +97,29 @@ public static void UpdatePlaceholderColor(this TextBox textBox, IPlaceholder pla if (brush is null) { // Windows.Foundation.UniversalApiContract < 5 - textBox.Resources.Remove("TextControlPlaceholderForeground"); - textBox.Resources.Remove("TextControlPlaceholderForegroundPointerOver"); - textBox.Resources.Remove("TextControlPlaceholderForegroundFocused"); - textBox.Resources.Remove("TextControlPlaceholderForegroundDisabled"); - + textBox.Resources.RemoveKeys(PlaceholderColorResourceKeys); // Windows.Foundation.UniversalApiContract >= 5 textBox.ClearValue(TextBox.PlaceholderForegroundProperty); } else { // Windows.Foundation.UniversalApiContract < 5 - textBox.Resources["TextControlPlaceholderForeground"] = brush; - textBox.Resources["TextControlPlaceholderForegroundPointerOver"] = brush; - textBox.Resources["TextControlPlaceholderForegroundFocused"] = brush; - textBox.Resources["TextControlPlaceholderForegroundDisabled"] = brush; - + textBox.Resources.SetValueForAllKey(PlaceholderColorResourceKeys, brush); // Windows.Foundation.UniversalApiContract >= 5 textBox.PlaceholderForeground = brush; } + + textBox.RefreshThemeResources(); } + static readonly string[] PlaceholderColorResourceKeys = + { + "TextControlPlaceholderForeground", + "TextControlPlaceholderForegroundPointerOver", + "TextControlPlaceholderForegroundFocused", + "TextControlPlaceholderForegroundDisabled", + }; + public static void UpdateFont(this TextBox platformControl, IText text, IFontManager fontManager) => platformControl.UpdateFont(text.Font, fontManager); @@ -167,12 +171,12 @@ internal static void UpdateInputScope(this TextBox textBox, ITextInput textInput textBox.IsSpellCheckEnabled = textInput.IsTextPredictionEnabled; } - var inputScope = new UI.Xaml.Input.InputScope(); + var inputScope = new InputScope(); if (textInput is IEntry entry && entry.ReturnType == ReturnType.Search) - inputScope.Names.Add(new UI.Xaml.Input.InputScopeName(UI.Xaml.Input.InputScopeNameValue.Search)); + inputScope.Names.Add(new InputScopeName(InputScopeNameValue.Search)); - inputScope.Names.Add(textInput.Keyboard.ToInputScopeName()); + inputScope.Names.Add(textInput.Keyboard?.ToInputScopeName() ?? new InputScopeName(InputScopeNameValue.Default)); textBox.InputScope = inputScope; } @@ -190,14 +194,27 @@ public static void UpdateVerticalTextAlignment(this TextBox textBox, ITextAlignm public static void UpdateCursorPosition(this TextBox textBox, ITextInput entry) { + // It seems that the TextBox does not limit the CursorPosition to the Text.Length natively + entry.CursorPosition = Math.Min(entry.CursorPosition, textBox.Text.Length); + if (textBox.SelectionStart != entry.CursorPosition) textBox.SelectionStart = entry.CursorPosition; } public static void UpdateSelectionLength(this TextBox textBox, ITextInput entry) { + // It seems that the TextBox does not limit the SelectionLength to the Text.Length natively + entry.SelectionLength = Math.Min(entry.SelectionLength, textBox.Text.Length - textBox.SelectionStart); + if (textBox.SelectionLength != entry.SelectionLength) textBox.SelectionLength = entry.SelectionLength; } + + // TODO: NET7 issoto - Revisit this, marking this method as `internal` to avoid breaking public API changes + internal static int GetCursorPosition(this TextBox textBox, int cursorOffset = 0) + { + var newCursorPosition = textBox.SelectionStart + cursorOffset; + return Math.Max(0, newCursorPosition); + } } } \ No newline at end of file diff --git a/src/Core/src/Platform/Windows/TimePickerExtensions.cs b/src/Core/src/Platform/Windows/TimePickerExtensions.cs index 59a011bd0764..742482bb7793 100644 --- a/src/Core/src/Platform/Windows/TimePickerExtensions.cs +++ b/src/Core/src/Platform/Windows/TimePickerExtensions.cs @@ -30,28 +30,24 @@ public static void UpdateFont(this TimePicker platformTimePicker, ITimePicker ti public static void UpdateTextColor(this TimePicker platformTimePicker, ITimePicker timePicker) { - Color textColor = timePicker.TextColor; - - UI.Xaml.Media.Brush? brush = textColor?.ToPlatform(); + var brush = timePicker.TextColor?.ToPlatform(); if (brush is null) - { - platformTimePicker.Resources.Remove("TimePickerButtonForeground"); - platformTimePicker.Resources.Remove("TimePickerButtonForegroundPointerOver"); - platformTimePicker.Resources.Remove("TimePickerButtonForegroundPressed"); - platformTimePicker.Resources.Remove("TimePickerButtonForegroundDisabled"); - - platformTimePicker.ClearValue(TimePicker.ForegroundProperty); - } + platformTimePicker.Resources.RemoveKeys(TextColorResourceKeys); else - { - platformTimePicker.Resources["TimePickerButtonForeground"] = brush; - platformTimePicker.Resources["TimePickerButtonForegroundPointerOver"] = brush; - platformTimePicker.Resources["TimePickerButtonForegroundPressed"] = brush; - platformTimePicker.Resources["TimePickerButtonForegroundDisabled"] = brush; + platformTimePicker.Resources.SetValueForAllKey(TextColorResourceKeys, brush); - platformTimePicker.Foreground = brush; - } + platformTimePicker.RefreshThemeResources(); } + + static readonly string[] TextColorResourceKeys = + { + "TimePickerButtonForeground", + "TimePickerButtonForegroundDefault", + "TimePickerButtonForegroundPointerOver", + "TimePickerButtonForegroundPressed", + "TimePickerButtonForegroundDisabled", + "TimePickerButtonForegroundFocused", + }; } } \ No newline at end of file diff --git a/src/Core/src/Platform/Windows/ViewExtensions.cs b/src/Core/src/Platform/Windows/ViewExtensions.cs index f29ee5c75b8f..71abc13d50f4 100644 --- a/src/Core/src/Platform/Windows/ViewExtensions.cs +++ b/src/Core/src/Platform/Windows/ViewExtensions.cs @@ -279,9 +279,7 @@ internal static Matrix4x4 GetViewTransform(this IView view) internal static Matrix4x4 GetViewTransform(this FrameworkElement element) { var root = element?.XamlRoot; - if (root == null) - return new Matrix4x4(); - var offset = element?.TransformToVisual(root.Content) as MatrixTransform; + var offset = element?.TransformToVisual(root?.Content ?? element) as MatrixTransform; if (offset == null) return new Matrix4x4(); Matrix matrix = offset.Matrix; diff --git a/src/Core/src/Platform/Windows/WebViewExtensions.cs b/src/Core/src/Platform/Windows/WebViewExtensions.cs index 66dc94c5960d..a4952c783167 100644 --- a/src/Core/src/Platform/Windows/WebViewExtensions.cs +++ b/src/Core/src/Platform/Windows/WebViewExtensions.cs @@ -31,7 +31,7 @@ public static void UpdateGoBack(this WebView2 platformWebView, IWebView webView) platformWebView.UpdateCanGoBackForward(webView); } - + public static void UpdateGoForward(this WebView2 platformWebView, IWebView webView) { if (platformWebView == null) @@ -47,7 +47,7 @@ public static void UpdateReload(this WebView2 platformWebView, IWebView webView) { platformWebView?.Reload(); } - + internal static void UpdateCanGoBackForward(this WebView2 platformWebView, IWebView webView) { webView.CanGoBack = platformWebView.CanGoBack; @@ -55,7 +55,7 @@ internal static void UpdateCanGoBackForward(this WebView2 platformWebView, IWebV } public static void Eval(this WebView2 platformWebView, IWebView webView, string script) - { + { if (platformWebView == null) return; @@ -65,7 +65,7 @@ public static void Eval(this WebView2 platformWebView, IWebView webView, string }); } - public static void EvaluateJavaScript(this WebView2 webView, EvaluateJavaScriptAsyncRequest request) + public static void EvaluateJavaScript(this WebView2 webView, EvaluateJavaScriptAsyncRequest request) { request.RunAndReport(webView.ExecuteScriptAsync(request.Script)); } diff --git a/src/Core/src/Platform/Windows/WindowExtensions.cs b/src/Core/src/Platform/Windows/WindowExtensions.cs index 0ef3605f38ae..f2073894d8fa 100644 --- a/src/Core/src/Platform/Windows/WindowExtensions.cs +++ b/src/Core/src/Platform/Windows/WindowExtensions.cs @@ -13,11 +13,8 @@ public static void UpdateTitle(this UI.Xaml.Window platformWindow, IWindow windo { platformWindow.Title = window.Title; - var rootManager = window.Handler?.MauiContext?.GetNavigationRootManager(); - if (rootManager != null) - { - rootManager.SetWindowTitle(window.Title); - } + if (platformWindow is MauiWinUIWindow mauiWindow) + mauiWindow.UpdateTitleOnCustomTitleBar(); } public static IWindow? GetWindow(this UI.Xaml.Window platformWindow) diff --git a/src/Core/src/Platform/Windows/WindowRootViewContainer.cs b/src/Core/src/Platform/Windows/WindowRootViewContainer.cs new file mode 100644 index 000000000000..9e6a02739719 --- /dev/null +++ b/src/Core/src/Platform/Windows/WindowRootViewContainer.cs @@ -0,0 +1,82 @@ +using System; +using Microsoft.Maui.Graphics.Win2D; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Windows.Foundation; + +namespace Microsoft.Maui.Platform +{ + internal class WindowRootViewContainer : Panel + { + FrameworkElement? _topPage; + protected override Size MeasureOverride(Size availableSize) + { + var width = availableSize.Width; + var height = availableSize.Height; + + if (double.IsInfinity(width)) + width = XamlRoot.Size.Width; + + if (double.IsInfinity(height)) + height = XamlRoot.Size.Height; + + var size = new Size(width, height); + + // measure the children to fit the container exactly + foreach (var child in Children) + { + child.Measure(size); + } + + return size; + } + + protected override Size ArrangeOverride(Size finalSize) + { + foreach (var child in Children) + { + child.Arrange(new Rect(new Point(0, 0), finalSize)); + } + + return finalSize; + } + + internal void AddPage(FrameworkElement pageView) + { + if (!Children.Contains(pageView)) + { + int indexOFTopPage = 0; + if (_topPage != null) + indexOFTopPage = Children.IndexOf(_topPage) + 1; + + Children.Insert(indexOFTopPage, pageView); + _topPage = pageView; + } + } + + internal void RemovePage(FrameworkElement pageView) + { + int indexOFTopPage = -1; + if (_topPage != null) + indexOFTopPage = Children.IndexOf(_topPage) - 1; + + Children.Remove(pageView); + + if (indexOFTopPage >= 0) + _topPage = (FrameworkElement)Children[indexOFTopPage]; + else + _topPage = null; + } + + internal void AddOverlay(FrameworkElement overlayView) + { + if (!Children.Contains(overlayView)) + Children.Add(overlayView); + } + + internal void RemoveOverlay(FrameworkElement overlayView) + { + Children.Remove(overlayView); + } + } +} \ No newline at end of file diff --git a/src/Core/src/Platform/Windows/WrapperView.cs b/src/Core/src/Platform/Windows/WrapperView.cs index a04b5f7696ea..460936ce1658 100644 --- a/src/Core/src/Platform/Windows/WrapperView.cs +++ b/src/Core/src/Platform/Windows/WrapperView.cs @@ -102,7 +102,7 @@ void DisposeClip() var visual = ElementCompositionPreview.GetElementVisual(Child); visual.Clip = null; } - + void DisposeBorder() { _borderPath = null; @@ -173,16 +173,24 @@ async Task CreateShadowAsync() if (Child == null || Shadow == null || Shadow.Paint == null) return; + var visual = ElementCompositionPreview.GetElementVisual(Child); + + if (Clip != null && visual.Clip == null) + return; + double width = _shadowHostSize.Width; + + if (width <= 0) + width = (float)ActualWidth; + double height = _shadowHostSize.Height; + if (height <= 0) + height = (float)ActualHeight; + if (height <= 0 && width <= 0) return; - // TODO: Fix ArgumentException - if (Clip != null) - await Task.Delay(500); - var ttv = Child.TransformToVisual(_shadowCanvas); global::Windows.Foundation.Point offset = ttv.TransformPoint(new global::Windows.Foundation.Point(0, 0)); @@ -226,11 +234,18 @@ void UpdateShadowSize() { if (_shadowVisual != null) { - if (Child is FrameworkElement child) + if (Child is FrameworkElement frameworkElement) { float width = (float)_shadowHostSize.Width; + + if (width <= 0) + width = (float)frameworkElement.ActualWidth; + float height = (float)_shadowHostSize.Height; + if (height <= 0) + height = (float)frameworkElement.ActualHeight; + _shadowVisual.Size = new Vector2(width, height); } } diff --git a/src/Core/src/Platform/iOS/ContentView.cs b/src/Core/src/Platform/iOS/ContentView.cs index 8e867638c2d1..9a4d87d433c8 100644 --- a/src/Core/src/Platform/iOS/ContentView.cs +++ b/src/Core/src/Platform/iOS/ContentView.cs @@ -1,11 +1,17 @@ using System; +using CoreAnimation; using CoreGraphics; using Microsoft.Maui.Graphics; +using Microsoft.Maui.Graphics.Platform; namespace Microsoft.Maui.Platform { public class ContentView : MauiView { + WeakReference? _clip; + CAShapeLayer? _childMaskLayer; + internal event EventHandler? LayoutSubviewsChanged; + public override CGSize SizeThatFits(CGSize size) { if (CrossPlatformMeasure == null) @@ -29,6 +35,13 @@ public override void LayoutSubviews() CrossPlatformMeasure?.Invoke(bounds.Width, bounds.Height); CrossPlatformArrange?.Invoke(bounds); + + if (ChildMaskLayer != null) + ChildMaskLayer.Frame = bounds; + + SetClip(); + + LayoutSubviewsChanged?.Invoke(this, EventArgs.Empty); } public override void SetNeedsLayout() @@ -39,5 +52,77 @@ public override void SetNeedsLayout() internal Func? CrossPlatformMeasure { get; set; } internal Func? CrossPlatformArrange { get; set; } + + internal IBorderStroke? Clip + { + get + { + if (_clip?.TryGetTarget(out IBorderStroke? target) == true) + return target; + + return null; + } + set + { + _clip = null; + + if (value != null) + _clip = new WeakReference(value); + + SetClip(); + } + } + + CAShapeLayer? ChildMaskLayer + { + get => _childMaskLayer; + set + { + var layer = GetChildLayer(); + + if (layer != null && _childMaskLayer != null) + layer.Mask = null; + + _childMaskLayer = value; + + if (layer != null) + layer.Mask = value; + } + } + + CALayer? GetChildLayer() + { + if (Subviews.Length == 0) + return null; + + var child = Subviews[0]; + + if (child.Layer == null || child.Layer.Sublayers == null) + return null; + + return child.Layer; + } + + void SetClip() + { + if (Subviews.Length == 0) + return; + + var mask = ChildMaskLayer; + + if (mask == null && Clip == null) + return; + + mask ??= ChildMaskLayer = new CAShapeLayer(); + + var frame = Frame; + + var bounds = new RectF(0, 0, (float)frame.Width, (float)frame.Height); + + IShape? clipShape = Clip?.Shape; + var path = clipShape?.PathForBounds(bounds); + var nativePath = path?.AsCGPath(); + mask.Path = nativePath; + } } } \ No newline at end of file diff --git a/src/Core/src/Platform/iOS/LabelExtensions.cs b/src/Core/src/Platform/iOS/LabelExtensions.cs index 762d47eb25dc..6c7340bcc1a1 100644 --- a/src/Core/src/Platform/iOS/LabelExtensions.cs +++ b/src/Core/src/Platform/iOS/LabelExtensions.cs @@ -36,12 +36,18 @@ public static void UpdateHorizontalTextAlignment(this UILabel platformLabel, ILa platformLabel.TextAlignment = label.HorizontalTextAlignment.ToPlatformHorizontal(label); } + // Don't use this method, it doesn't work. But we can't remove it. public static void UpdateVerticalTextAlignment(this UILabel platformLabel, ILabel label) { if (!platformLabel.Bounds.IsEmpty) platformLabel.InvalidateMeasure(label); } + internal static void UpdateVerticalTextAlignment(this MauiLabel platformLabel, ILabel label) + { + platformLabel.VerticalAlignment = label.VerticalTextAlignment.ToPlatformVertical(); + } + public static void UpdatePadding(this MauiLabel platformLabel, ILabel label) { platformLabel.TextInsets = new UIEdgeInsets( diff --git a/src/Core/src/Platform/iOS/LayoutView.cs b/src/Core/src/Platform/iOS/LayoutView.cs index a09636fe2d21..aaccf7fa1a10 100644 --- a/src/Core/src/Platform/iOS/LayoutView.cs +++ b/src/Core/src/Platform/iOS/LayoutView.cs @@ -69,7 +69,7 @@ public override UIView HitTest(CGPoint point, UIEvent? uievent) // If user interaction is disabled (IOW, if the corresponding Layout is InputTransparent), // then we exclude the LayoutView itself from hit testing. But it's children are valid // hit testing targets. - + return null!; } diff --git a/src/Core/src/Platform/iOS/MauiActivityIndicator.cs b/src/Core/src/Platform/iOS/MauiActivityIndicator.cs index 056e846eceb7..da7706f299a1 100644 --- a/src/Core/src/Platform/iOS/MauiActivityIndicator.cs +++ b/src/Core/src/Platform/iOS/MauiActivityIndicator.cs @@ -9,7 +9,9 @@ public class MauiActivityIndicator : UIActivityIndicatorView IActivityIndicator? _virtualView; public MauiActivityIndicator(CGRect rect, IActivityIndicator? virtualView) : base(rect) - => _virtualView = virtualView; + { + _virtualView = virtualView; + } public override void Draw(CGRect rect) { @@ -17,6 +19,8 @@ public override void Draw(CGRect rect) if (_virtualView?.IsRunning == true) StartAnimating(); + else + StopAnimating(); } public override void LayoutSubviews() @@ -25,11 +29,14 @@ public override void LayoutSubviews() if (_virtualView?.IsRunning == true) StartAnimating(); + else + StopAnimating(); } protected override void Dispose(bool disposing) { base.Dispose(disposing); + _virtualView = null; } } diff --git a/src/Core/src/Platform/iOS/MauiDatePicker.cs b/src/Core/src/Platform/iOS/MauiDatePicker.cs index 5e999f9d7406..d9172cbbf447 100644 --- a/src/Core/src/Platform/iOS/MauiDatePicker.cs +++ b/src/Core/src/Platform/iOS/MauiDatePicker.cs @@ -1,13 +1,69 @@ -using ObjCRuntime; +using System; +using Foundation; using UIKit; namespace Microsoft.Maui.Platform { public class MauiDatePicker : NoCaretField { +#if !MACCATALYST + public MauiDatePicker() + { + BorderStyle = UITextBorderStyle.RoundedRect; + var picker = new UIDatePicker { Mode = UIDatePickerMode.Date, TimeZone = new NSTimeZone("UTC") }; + + if (OperatingSystem.IsIOSVersionAtLeast(13, 4)) + { + picker.PreferredDatePickerStyle = UIDatePickerStyle.Wheels; + } + + this.InputView = picker; + var accessoryView = new MauiDoneAccessoryView(); + this.InputAccessoryView = accessoryView; + + accessoryView.SetDataContext(this); + accessoryView.SetDoneClicked(OnDoneClicked); + + this.InputView.AutoresizingMask = UIViewAutoresizing.FlexibleHeight; + this.InputAccessoryView.AutoresizingMask = UIViewAutoresizing.FlexibleHeight; + + this.InputAssistantItem.LeadingBarButtonGroups = null; + this.InputAssistantItem.TrailingBarButtonGroups = null; + + this.AccessibilityTraits = UIAccessibilityTrait.Button; + + picker.EditingDidBegin += OnStarted; + picker.EditingDidEnd += OnEnded; + picker.ValueChanged += OnValueChanged; + } + + static void OnDoneClicked(object obj) + { + if (obj is MauiDatePicker mdp) + mdp.MauiDatePickerDelegate?.DoneClicked(); + } + + void OnValueChanged(object? sender, EventArgs e) => + MauiDatePickerDelegate?.DatePickerValueChanged(); + + void OnEnded(object? sender, EventArgs e) => + MauiDatePickerDelegate?.DatePickerEditingDidEnd(); + + void OnStarted(object? sender, EventArgs e) => + MauiDatePickerDelegate?.DatePickerEditingDidBegin(); + + internal MauiDatePickerDelegate? MauiDatePickerDelegate + { + get; + set; + } + + internal UIDatePicker? DatePickerDialog { get { return InputView as UIDatePicker; } } +#else public MauiDatePicker() { BorderStyle = UITextBorderStyle.RoundedRect; } +#endif } } \ No newline at end of file diff --git a/src/Core/src/Platform/iOS/MauiDatePickerDelegate.cs b/src/Core/src/Platform/iOS/MauiDatePickerDelegate.cs new file mode 100644 index 000000000000..46cfb517d20e --- /dev/null +++ b/src/Core/src/Platform/iOS/MauiDatePickerDelegate.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Maui.Platform +{ + internal class MauiDatePickerDelegate + { + public virtual void DatePickerEditingDidBegin() + { + + } + + public virtual void DatePickerEditingDidEnd() + { + + } + + public virtual void DatePickerValueChanged() + { + + } + + public virtual void DoneClicked() + { + + } + } +} diff --git a/src/Core/src/Platform/iOS/MauiDoneAccessoryView.cs b/src/Core/src/Platform/iOS/MauiDoneAccessoryView.cs index 6b98d71b46d8..a2106e5f3826 100644 --- a/src/Core/src/Platform/iOS/MauiDoneAccessoryView.cs +++ b/src/Core/src/Platform/iOS/MauiDoneAccessoryView.cs @@ -1,15 +1,41 @@ #if IOS && !MACCATALYST using System; using CoreGraphics; -using Foundation; -using Microsoft.Maui.Devices; -using Microsoft.Maui.Graphics; using UIKit; namespace Microsoft.Maui.Platform { internal class MauiDoneAccessoryView : UIToolbar { + WeakReference? _data; + Action? _doneClicked; + + public MauiDoneAccessoryView() : base(new CGRect(0, 0, UIScreen.MainScreen.Bounds.Width, 44)) + { + BarStyle = UIBarStyle.Default; + Translucent = true; + var spacer = new UIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace); + var doneButton = new UIBarButtonItem(UIBarButtonSystemItem.Done, OnClicked); + + SetItems(new[] { spacer, doneButton }, false); + } + + void OnClicked(object? sender, EventArgs e) + { + if (_data?.TryGetTarget(out object? target) == true) + _doneClicked?.Invoke(target); + } + + internal void SetDoneClicked(Action? value) => _doneClicked = value; + internal void SetDataContext(object? dataContext) + { + _data = null; + if (dataContext == null) + return; + + _data = new WeakReference(dataContext); + } + public MauiDoneAccessoryView(Action doneClicked) : base(new CGRect(0, 0, UIScreen.MainScreen.Bounds.Width, 44)) { BarStyle = UIBarStyle.Default; diff --git a/src/Core/src/Platform/iOS/MauiLabel.cs b/src/Core/src/Platform/iOS/MauiLabel.cs index f0e64bed4830..e20409fcc6cf 100644 --- a/src/Core/src/Platform/iOS/MauiLabel.cs +++ b/src/Core/src/Platform/iOS/MauiLabel.cs @@ -1,6 +1,7 @@ #nullable disable using System; +using Microsoft.Maui.Graphics; using ObjCRuntime; using UIKit; using RectangleF = CoreGraphics.CGRect; @@ -10,7 +11,18 @@ namespace Microsoft.Maui.Platform { public class MauiLabel : UILabel { + UIControlContentVerticalAlignment _verticalAlignment = UIControlContentVerticalAlignment.Center; + public UIEdgeInsets TextInsets { get; set; } + internal UIControlContentVerticalAlignment VerticalAlignment + { + get => _verticalAlignment; + set + { + _verticalAlignment = value; + SetNeedsDisplay(); + } + } public MauiLabel(RectangleF frame) : base(frame) { @@ -20,8 +32,38 @@ public MauiLabel() { } - public override void DrawText(RectangleF rect) => - base.DrawText(TextInsets.InsetRect(rect)); + public override void DrawText(RectangleF rect) + { + rect = TextInsets.InsetRect(rect); + + if (_verticalAlignment != UIControlContentVerticalAlignment.Center + && _verticalAlignment != UIControlContentVerticalAlignment.Fill) + { + rect = AlignVertical(rect); + } + + base.DrawText(rect); + } + + RectangleF AlignVertical(RectangleF rect) + { + var frameSize = Frame.Size; + var height = Lines == 1 ? Font.LineHeight : SizeThatFits(frameSize).Height; + + if (height < frameSize.Height) + { + if (_verticalAlignment == UIControlContentVerticalAlignment.Top) + { + rect.Height = height; + } + else if (_verticalAlignment == UIControlContentVerticalAlignment.Bottom) + { + rect = new RectangleF(rect.X, rect.Bottom - height, rect.Width, height); + } + } + + return rect; + } public override void InvalidateIntrinsicContentSize() { diff --git a/src/Core/src/Platform/iOS/MauiRefreshView.cs b/src/Core/src/Platform/iOS/MauiRefreshView.cs index a6fce527a00f..a6311555a559 100644 --- a/src/Core/src/Platform/iOS/MauiRefreshView.cs +++ b/src/Core/src/Platform/iOS/MauiRefreshView.cs @@ -179,7 +179,7 @@ public void UpdateIsEnabled(bool isRefreshViewEnabled) } #pragma warning disable CA1416 // TODO: 'UINavigationBar.PrefersLargeTitles' is only supported on: 'ios' 11.0 and later - bool CanUseRefreshControlProperty() => + bool CanUseRefreshControlProperty() => this.GetNavigationController()?.NavigationBar?.PrefersLargeTitles ?? true; #pragma warning restore CA1416 } diff --git a/src/Core/src/Platform/iOS/MauiTextField.cs b/src/Core/src/Platform/iOS/MauiTextField.cs index ba31eaca2f04..9faf681fec41 100644 --- a/src/Core/src/Platform/iOS/MauiTextField.cs +++ b/src/Core/src/Platform/iOS/MauiTextField.cs @@ -45,6 +45,21 @@ public override NSAttributedString? AttributedText } } + public override UITextRange? SelectedTextRange + { + get => base.SelectedTextRange; + set + { + var old = base.SelectedTextRange; + + base.SelectedTextRange = value; + + if (old?.Start != value?.Start || old?.End != value?.End) + SelectionChanged?.Invoke(this, EventArgs.Empty); + } + } + public event EventHandler? TextPropertySet; + internal event EventHandler? SelectionChanged; } } \ No newline at end of file diff --git a/src/Core/src/Platform/iOS/MauiUIApplicationDelegate.cs b/src/Core/src/Platform/iOS/MauiUIApplicationDelegate.cs index 6f379ef97604..d66d247979c0 100644 --- a/src/Core/src/Platform/iOS/MauiUIApplicationDelegate.cs +++ b/src/Core/src/Platform/iOS/MauiUIApplicationDelegate.cs @@ -114,12 +114,6 @@ public virtual void OnResignActivation(UIApplication application) Services?.InvokeLifecycleEvents(del => del(application)); } - [Export("sceneDidDisconnect:")] - public void DidDisconnect(UIScene scene) - { - Services?.InvokeLifecycleEvents(del => del(scene)); - } - [Export("applicationWillTerminate:")] public virtual void WillTerminate(UIApplication application) { diff --git a/src/Core/src/Platform/iOS/ScrollViewExtensions.cs b/src/Core/src/Platform/iOS/ScrollViewExtensions.cs index b8ae0cae04af..98a7a9ba4686 100644 --- a/src/Core/src/Platform/iOS/ScrollViewExtensions.cs +++ b/src/Core/src/Platform/iOS/ScrollViewExtensions.cs @@ -1,4 +1,5 @@ -using Microsoft.Maui.Graphics; +using System; +using Microsoft.Maui.Graphics; using ObjCRuntime; using UIKit; @@ -16,6 +17,8 @@ public static void UpdateHorizontalScrollBarVisibility(this UIScrollView scrollV scrollView.ShowsHorizontalScrollIndicator = scrollBarVisibility == ScrollBarVisibility.Always || scrollBarVisibility == ScrollBarVisibility.Default; } + + // TODO ezhart This method is no longer used internally; we can't delete it right now because that'd be a breaking change public static void UpdateContent(this UIScrollView scrollView, IView? content, IMauiContext context) { var nativeContent = content == null ? null : content.ToPlatform(context); diff --git a/src/Core/src/Platform/iOS/SearchBarExtensions.cs b/src/Core/src/Platform/iOS/SearchBarExtensions.cs index 2645ea940321..b5a28465bc3b 100644 --- a/src/Core/src/Platform/iOS/SearchBarExtensions.cs +++ b/src/Core/src/Platform/iOS/SearchBarExtensions.cs @@ -1,10 +1,24 @@ -using Foundation; +using System; +using Foundation; +using Microsoft.Maui.Graphics; using UIKit; namespace Microsoft.Maui.Platform { public static class SearchBarExtensions { + // TODO: NET7 maybe make this public? + internal static void UpdateBackground(this UISearchBar uiSearchBar, ISearchBar searchBar) + { + var background = searchBar.Background; + + if (background is SolidPaint solidPaint) + uiSearchBar.BarTintColor = solidPaint.Color.ToPlatform(); + + if (background == null) + uiSearchBar.BarTintColor = UISearchBar.Appearance.BarTintColor; + } + public static void UpdateIsEnabled(this UISearchBar uiSearchBar, ISearchBar searchBar) { uiSearchBar.UserInteractionEnabled = searchBar.IsEnabled; diff --git a/src/Core/src/Platform/iOS/StrokeExtensions.cs b/src/Core/src/Platform/iOS/StrokeExtensions.cs index a0d3bfcaaa29..c60964721aa5 100644 --- a/src/Core/src/Platform/iOS/StrokeExtensions.cs +++ b/src/Core/src/Platform/iOS/StrokeExtensions.cs @@ -1,7 +1,7 @@ using System.Linq; using CoreAnimation; using Microsoft.Maui.Graphics; -using ObjCRuntime; +using CoreGraphics; using UIKit; namespace Microsoft.Maui.Platform @@ -125,21 +125,52 @@ internal static void UpdateMauiCALayer(this UIView platformView, IBorderStroke? if (backgroundLayer is MauiCALayer mauiCALayer) { backgroundLayer.Frame = platformView.Bounds; - if (border is IView v) - mauiCALayer.SetBackground(v.Background); + + if (border is IView view) + mauiCALayer.SetBackground(view.Background); else mauiCALayer.SetBackground(new SolidPaint(Colors.Transparent)); + mauiCALayer.SetBorderBrush(border?.Stroke); mauiCALayer.SetBorderWidth(border?.StrokeThickness ?? 0); mauiCALayer.SetBorderDash(border?.StrokeDashPattern, border?.StrokeDashOffset ?? 0); mauiCALayer.SetBorderMiterLimit(border?.StrokeMiterLimit ?? 0); + if (border != null) { mauiCALayer.SetBorderLineJoin(border.StrokeLineJoin); mauiCALayer.SetBorderLineCap(border.StrokeLineCap); } + mauiCALayer.SetBorderShape(border?.Shape); } + + if (platformView is ContentView contentView) + contentView.Clip = border; + } + + internal static void UpdateMauiCALayer(this UIView view) + { + if (view == null || view.Frame.IsEmpty) + return; + + var layer = view.Layer; + + UpdateBackgroundLayer(layer, view.Bounds); + } + + static void UpdateBackgroundLayer(this CALayer layer, CGRect bounds) + { + if (layer != null && layer.Sublayers != null) + { + foreach (var sublayer in layer.Sublayers) + { + UpdateBackgroundLayer(sublayer, bounds); + + if (sublayer.Name == ViewExtensions.BackgroundLayerName && sublayer.Frame != bounds) + sublayer.Frame = bounds; + } + } } } } \ No newline at end of file diff --git a/src/Core/src/Platform/iOS/TextFieldExtensions.cs b/src/Core/src/Platform/iOS/TextFieldExtensions.cs index 34baecb90246..46ba8092c1de 100644 --- a/src/Core/src/Platform/iOS/TextFieldExtensions.cs +++ b/src/Core/src/Platform/iOS/TextFieldExtensions.cs @@ -145,8 +145,6 @@ static void UpdateCursorSelection(this UITextField textField, IEntry entry) { if (!entry.IsReadOnly) { - if (!textField.IsFirstResponder) - textField.BecomeFirstResponder(); UITextPosition start = GetSelectionStart(textField, entry, out int startOffset); UITextPosition end = GetSelectionEnd(textField, entry, start, startOffset); diff --git a/src/Core/src/Platform/iOS/TextInputExtensions.cs b/src/Core/src/Platform/iOS/TextInputExtensions.cs new file mode 100644 index 000000000000..1842c4d4ba1e --- /dev/null +++ b/src/Core/src/Platform/iOS/TextInputExtensions.cs @@ -0,0 +1,46 @@ +using System; +using UIKit; + +namespace Microsoft.Maui.Platform +{ + // TODO: NET7 issoto - Revisit this, marking this class as `internal` to avoid breaking public API changes + internal static class TextInputExtensions + { + internal static int GetCursorPosition(this IUITextInput platformView, int cursorOffset = 0) + { + var zeroPosition = platformView.GetPosition(platformView.BeginningOfDocument, 0); + var currentCursorPosition = platformView.SelectedTextRange?.Start ?? zeroPosition; + var newCursorPosition = cursorOffset + (int)platformView.GetOffsetFromPosition(platformView.BeginningOfDocument, currentCursorPosition); + + return Math.Max(0, newCursorPosition); + } + + internal static void SetTextRange(this IUITextInput platformView, int start, int selectedTextLength) + { + int end = start + selectedTextLength; + + // Let's be sure we have positive positions + start = Math.Max(start, 0); + end = Math.Max(end, 0); + + // Switch start and end positions if necessary + start = Math.Min(start, end); + end = Math.Max(start, end); + + var startPosition = platformView.GetPosition(platformView.BeginningOfDocument, start); + var endPosition = platformView.GetPosition(platformView.BeginningOfDocument, end); + platformView.SelectedTextRange = platformView.GetTextRange(startPosition, endPosition); + } + + internal static int GetSelectedTextLength(this IUITextInput platformView) + { + var selectedTextRange = platformView.SelectedTextRange; + + if (selectedTextRange == null) + return 0; + + return (int)platformView.GetOffsetFromPosition(selectedTextRange.Start, selectedTextRange.End); + } + } +} + diff --git a/src/Core/src/Platform/iOS/TextViewExtensions.cs b/src/Core/src/Platform/iOS/TextViewExtensions.cs index a94ed12a673d..261772ba275c 100644 --- a/src/Core/src/Platform/iOS/TextViewExtensions.cs +++ b/src/Core/src/Platform/iOS/TextViewExtensions.cs @@ -115,8 +115,6 @@ static void UpdateCursorSelection(this UITextView textView, IEditor editor) { if (!editor.IsReadOnly) { - if (!textView.IsFirstResponder) - textView.BecomeFirstResponder(); UITextPosition start = GetSelectionStart(textView, editor, out int startOffset); UITextPosition end = GetSelectionEnd(textView, editor, start, startOffset); diff --git a/src/Core/src/Platform/iOS/ViewExtensions.cs b/src/Core/src/Platform/iOS/ViewExtensions.cs index c1aa7aba6bb0..9d875563cf61 100644 --- a/src/Core/src/Platform/iOS/ViewExtensions.cs +++ b/src/Core/src/Platform/iOS/ViewExtensions.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Numerics; using System.Threading.Tasks; @@ -24,7 +24,7 @@ public static void UpdateIsEnabled(this UIView platformView, IView view) public static void Focus(this UIView platformView, FocusRequest request) { - platformView.BecomeFirstResponder(); + request.IsFocused = platformView.BecomeFirstResponder(); } public static void Unfocus(this UIView platformView, IView view) @@ -73,7 +73,13 @@ public static void UpdateBackground(this UIView platformView, Paint? paint) platformView.RemoveBackgroundLayer(); if (paint.IsNullOrEmpty()) - return; + { + if (platformView is LayoutView) + platformView.BackgroundColor = null; + else + return; + } + if (paint is SolidPaint solidPaint) { @@ -379,6 +385,17 @@ internal static Matrix4x4 GetViewTransform(this IView view) internal static Matrix4x4 GetViewTransform(this UIView view) => view.Layer.GetViewTransform(); + internal static Point GetLocationOnScreen(this UIView view) => + view.GetPlatformViewBounds().Location; + + internal static Point? GetLocationOnScreen(this IElement element) + { + if (element.Handler?.MauiContext == null) + return null; + + return (element.ToPlatform())?.GetLocationOnScreen(); + } + internal static Graphics.Rect GetBoundingBox(this IView view) => view.ToPlatform().GetBoundingBox(); @@ -399,16 +416,6 @@ internal static Graphics.Rect GetBoundingBox(this UIView? platformView) return view?.Superview; } - internal static void LayoutToSize(this IView view, double width, double height) - { - var platformFrame = new CGRect(0, 0, width, height); - - if (view.Handler is IPlatformViewHandler viewHandler && viewHandler.PlatformView != null) - viewHandler.PlatformView.Frame = platformFrame; - - view.Arrange(platformFrame.ToRectangle()); - } - internal static Size LayoutToMeasuredSize(this IView view, double width, double height) { var size = view.Measure(width, height); diff --git a/src/Core/src/Primitives/FlowDirection.cs b/src/Core/src/Primitives/FlowDirection.cs index 917825ecd0eb..00bbd86c63ce 100644 --- a/src/Core/src/Primitives/FlowDirection.cs +++ b/src/Core/src/Primitives/FlowDirection.cs @@ -3,7 +3,6 @@ namespace Microsoft.Maui { /// - [TypeConverter(typeof(Converters.FlowDirectionTypeConverter))] public enum FlowDirection { /// diff --git a/src/Core/src/PropertyMapper.cs b/src/Core/src/PropertyMapper.cs index 139b6261e825..619a789ac85a 100644 --- a/src/Core/src/PropertyMapper.cs +++ b/src/Core/src/PropertyMapper.cs @@ -7,7 +7,7 @@ using PlatformView = Android.Views.View; #elif WINDOWS using PlatformView = Microsoft.UI.Xaml.FrameworkElement; -#elif (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID) +#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID) using PlatformView = System.Object; #endif @@ -122,10 +122,10 @@ public virtual IEnumerable GetKeys() yield return key; } } - + bool CanUpdateProperty(IElementHandler viewHandler) { -#if ANDROID +#if ANDROID var platformView = viewHandler?.PlatformView; if(platformView is PlatformView androidView && androidView.IsDisposed()) diff --git a/src/Core/src/PublicAPI/net-android/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/net-android/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..7c5859bbd56a --- /dev/null +++ b/src/Core/src/PublicAPI/net-android/PublicAPI.Shipped.txt @@ -0,0 +1,3098 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.ImageSourceService.GetDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Content.Context! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.MauiApplication.CreateMauiApp() -> Microsoft.Maui.Hosting.MauiApp! +const Microsoft.Maui.Platform.MauiWebView.AssetBaseUrl = "file:///android_asset/" -> string! +const Microsoft.Maui.Platform.ProgressBarExtensions.Maximum = 10000 -> int +const Microsoft.Maui.Platform.SliderExtensions.PlatformMaxValue = 2147483647 -> double +const Microsoft.Maui.Platform.UnitExtensions.EmCoefficient = 0.0624 -> float +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Android.OS.Bundle? savedInstance) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.SavedInstance.get -> Android.OS.Bundle? +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.Dispose() -> void +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker(Microsoft.Maui.Platform.IEnergySaverListenerManager! manager) -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.DefaultTypeface.get -> Android.Graphics.Typeface! +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontManager.GetFontSize(Microsoft.Maui.Font font, float defaultFontSize = 0) -> Microsoft.Maui.FontSize +Microsoft.Maui.FontManager.GetTypeface(Microsoft.Maui.Font font) -> Android.Graphics.Typeface? +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSize +Microsoft.Maui.FontSize.FontSize() -> void +Microsoft.Maui.FontSize.FontSize(float value, Android.Util.ComplexUnitType unit) -> void +Microsoft.Maui.FontSize.Unit.get -> Android.Util.ComplexUnitType +Microsoft.Maui.FontSize.Value.get -> float +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.MauiDrawable +Microsoft.Maui.Graphics.MauiDrawable.InvalidateBorderBounds() -> void +Microsoft.Maui.Graphics.MauiDrawable.MauiDrawable(Android.Content.Context? context) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackground(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackground(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackground(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackground(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackground(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackground(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBackgroundColor(Android.Graphics.Color? backgroundColor) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderBrush(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderBrush(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderBrush(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderBrush(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderBrush(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderBrush(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderColor(Android.Graphics.Color? borderColor) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderDash(float[]? strokeDashArray, double strokeDashOffset) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderLineCap(Microsoft.Maui.Graphics.LineCap lineCap) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderLineJoin(Microsoft.Maui.Graphics.LineJoin lineJoin) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderMiterLimit(float strokeMiterLimit) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderShape(Microsoft.Maui.Graphics.IShape? shape) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetBorderWidth(double strokeWidth) -> void +Microsoft.Maui.Graphics.MauiDrawable.SetRadialGradientPaint(Android.Graphics.Paint! platformPaint, Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> Android.Widget.ProgressBar! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentViewGroup! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> Google.Android.Material.Button.MaterialButton! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> AndroidX.AppCompat.Widget.AppCompatCheckBox! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentViewGroup! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiDatePicker! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> AndroidX.AppCompat.Widget.AppCompatEditText! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> AndroidX.AppCompat.Widget.AppCompatEditText! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> Google.Android.Material.ImageView.ShapeableImageView! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> Android.Widget.ImageView! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPageControl! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> AndroidX.AppCompat.Widget.AppCompatTextView! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPicker! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> Android.Widget.ProgressBar! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiSwipeRefreshLayout! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiScrollView! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> AndroidX.AppCompat.Widget.SearchView! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> Android.Widget.EditText? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiShapeView! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> Android.Widget.SeekBar! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiStepper! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> Android.Views.View! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentViewGroup! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiSwipeView! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> AndroidX.AppCompat.Widget.SwitchCompat! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiTimePicker! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> Google.Android.Material.AppBar.MaterialToolbar! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> Android.Webkit.WebView! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> Android.App.Activity! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> Android.Widget.EditText? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> Android.Views.View? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> Android.Views.View? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.Context.get -> Android.Content.Context! +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.NavigatingCanceled(string? url) -> bool +Microsoft.Maui.Handlers.WebViewHandler.UrlCanceled.get -> string? +Microsoft.Maui.Handlers.WebViewHandler.UrlCanceled.set -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontManager.DefaultTypeface.get -> Android.Graphics.Typeface! +Microsoft.Maui.IFontManager.GetFontSize(Microsoft.Maui.Font font, float defaultFontSize = 0) -> Microsoft.Maui.FontSize +Microsoft.Maui.IFontManager.GetTypeface(Microsoft.Maui.Font font) -> Android.Graphics.Typeface? +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageLoaderCallback +Microsoft.Maui.IImageLoaderCallback.OnComplete(Java.Lang.Boolean? p0, Android.Graphics.Drawables.Drawable? p1, Java.Lang.IRunnable? p2) -> void +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService.GetDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Content.Context! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.IImageSourceService.LoadDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Widget.ImageView! imageView, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> Microsoft.Maui.Platform.LayoutViewGroup! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(Android.Graphics.Drawables.Drawable! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(Android.Graphics.Drawables.Drawable! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> Android.Graphics.Drawables.Drawable! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Context.get -> Android.Content.Context? +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IPlatformViewHandler +Microsoft.Maui.IPlatformViewHandler.ContainerView.get -> Android.Views.View? +Microsoft.Maui.IPlatformViewHandler.PlatformView.get -> Android.Views.View? +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AndroidLifecycle +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnActivityResult +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationConfigurationChanged +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationCreate +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationCreating +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationLowMemory +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationTrimMemory +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnBackPressed +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnConfigurationChanged +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnCreate +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnDestroy +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnNewIntent +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnPause +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnPostCreate +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnPostResume +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnRequestPermissionsResult +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnRestart +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnRestoreInstanceState +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnResume +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnSaveInstanceState +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnStart +Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnStop +Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.AndroidLifecycleExtensions +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiAppCompatActivity +Microsoft.Maui.MauiAppCompatActivity.MauiAppCompatActivity() -> void +Microsoft.Maui.MauiApplication +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.ActivityLifecycleCallbacks() -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivityCreated(Android.App.Activity! activity, Android.OS.Bundle? savedInstanceState) -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivityDestroyed(Android.App.Activity! activity) -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivityPaused(Android.App.Activity! activity) -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivityResumed(Android.App.Activity! activity) -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivitySaveInstanceState(Android.App.Activity! activity, Android.OS.Bundle! outState) -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivityStarted(Android.App.Activity! activity) -> void +Microsoft.Maui.MauiApplication.ActivityLifecycleCallbacks.OnActivityStopped(Android.App.Activity! activity) -> void +Microsoft.Maui.MauiApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.MauiApplication.Application.set -> void +Microsoft.Maui.MauiApplication.MauiApplication(System.IntPtr handle, Android.Runtime.JniHandleOwnership ownership) -> void +Microsoft.Maui.MauiApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiApplication.Services.set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Context.get -> Android.Content.Context? +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services, Android.Content.Context! context) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiViewGroup +Microsoft.Maui.MauiViewGroup.MauiViewGroup(Android.Content.Context? context) -> void +Microsoft.Maui.MauiViewGroup.MauiViewGroup(Android.Content.Context? context, Android.Util.IAttributeSet? attrs) -> void +Microsoft.Maui.MauiViewGroup.MauiViewGroup(Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyle) -> void +Microsoft.Maui.MauiViewGroup.MauiViewGroup(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper +Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.AccessibilityDelegateCompatWrapper(AndroidX.Core.View.AccessibilityDelegateCompat? originalDelegate) -> void +Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.WrappedDelegate.get -> AndroidX.Core.View.AccessibilityDelegateCompat? +Microsoft.Maui.Platform.ActivityIndicatorExtensions +Microsoft.Maui.Platform.ActivityResultCallbackRegistry +Microsoft.Maui.Platform.ApplicationExtensions +Microsoft.Maui.Platform.AspectExtensions +Microsoft.Maui.Platform.BorderDrawable +Microsoft.Maui.Platform.BorderDrawable.BorderDrawable(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackground(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackground(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackground(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackground(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackground(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackground(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBackgroundColor(Android.Graphics.Color? backgroundColor) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderBrush(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderBrush(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderBrush(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderBrush(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderBrush(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderBrush(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderColor(Android.Graphics.Color? borderColor) -> void +Microsoft.Maui.Platform.BorderDrawable.SetBorderWidth(double strokeWidth) -> void +Microsoft.Maui.Platform.BorderDrawable.SetCornerRadius(Microsoft.Maui.CornerRadius cornerRadius) -> void +Microsoft.Maui.Platform.BorderDrawable.SetRadialGradientPaint(Android.Graphics.Paint! platformPaint, Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.ButtonExtensions +Microsoft.Maui.Platform.CheckBoxExtensions +Microsoft.Maui.Platform.ColorExtensions +Microsoft.Maui.Platform.ContainerView +Microsoft.Maui.Platform.ContainerView.ContainerView(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Platform.ContainerView.ContainerView(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.ContainerView.CurrentView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Platform.ContainerView.CurrentView.set -> void +Microsoft.Maui.Platform.ContainerView.MainView.get -> Android.Views.View? +Microsoft.Maui.Platform.ContainerView.MainView.set -> void +Microsoft.Maui.Platform.ContainerView.Reload() -> void +Microsoft.Maui.Platform.ContentViewGroup +Microsoft.Maui.Platform.ContentViewGroup.ContentViewGroup(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.ContentViewGroup.ContentViewGroup(Android.Content.Context! context, Android.Util.IAttributeSet! attrs) -> void +Microsoft.Maui.Platform.ContentViewGroup.ContentViewGroup(Android.Content.Context! context, Android.Util.IAttributeSet! attrs, int defStyleAttr) -> void +Microsoft.Maui.Platform.ContentViewGroup.ContentViewGroup(Android.Content.Context! context, Android.Util.IAttributeSet! attrs, int defStyleAttr, int defStyleRes) -> void +Microsoft.Maui.Platform.ContentViewGroup.ContentViewGroup(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.ContextExtensions +Microsoft.Maui.Platform.DatePickerExtensions +Microsoft.Maui.Platform.DrawableExtensions +Microsoft.Maui.Platform.EditTextExtensions +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.EnergySaverListenerManager +Microsoft.Maui.Platform.EnergySaverListenerManager.Add(Microsoft.Maui.Platform.IEnergySaverListener! listener) -> void +Microsoft.Maui.Platform.EnergySaverListenerManager.Dispose() -> void +Microsoft.Maui.Platform.EnergySaverListenerManager.EnergySaverListenerManager() -> void +Microsoft.Maui.Platform.EnergySaverListenerManager.Remove(Microsoft.Maui.Platform.IEnergySaverListener! listener) -> void +Microsoft.Maui.Platform.GraphicsViewExtensions +Microsoft.Maui.Platform.IAndroidStepperHandler +Microsoft.Maui.Platform.IAndroidStepperHandler.CreateButton() -> Android.Widget.Button! +Microsoft.Maui.Platform.IAndroidStepperHandler.DownButton.get -> Android.Widget.Button? +Microsoft.Maui.Platform.IAndroidStepperHandler.UpButton.get -> Android.Widget.Button? +Microsoft.Maui.Platform.IEnergySaverListener +Microsoft.Maui.Platform.IEnergySaverListener.OnStatusUpdated(bool energySaverEnabled) -> void +Microsoft.Maui.Platform.IEnergySaverListenerManager +Microsoft.Maui.Platform.IEnergySaverListenerManager.Add(Microsoft.Maui.Platform.IEnergySaverListener! listener) -> void +Microsoft.Maui.Platform.IEnergySaverListenerManager.Remove(Microsoft.Maui.Platform.IEnergySaverListener! listener) -> void +Microsoft.Maui.Platform.ImageButtonExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.ImageViewExtensions +Microsoft.Maui.Platform.ImeActionExtensions +Microsoft.Maui.Platform.KeyboardExtensions +Microsoft.Maui.Platform.LayoutChangedEventArgs +Microsoft.Maui.Platform.LayoutChangedEventArgs.Bottom.get -> int +Microsoft.Maui.Platform.LayoutChangedEventArgs.Bottom.set -> void +Microsoft.Maui.Platform.LayoutChangedEventArgs.LayoutChangedEventArgs() -> void +Microsoft.Maui.Platform.LayoutChangedEventArgs.LayoutChangedEventArgs(int l, int t, int r, int b) -> void +Microsoft.Maui.Platform.LayoutChangedEventArgs.Left.get -> int +Microsoft.Maui.Platform.LayoutChangedEventArgs.Left.set -> void +Microsoft.Maui.Platform.LayoutChangedEventArgs.Right.get -> int +Microsoft.Maui.Platform.LayoutChangedEventArgs.Right.set -> void +Microsoft.Maui.Platform.LayoutChangedEventArgs.Top.get -> int +Microsoft.Maui.Platform.LayoutChangedEventArgs.Top.set -> void +Microsoft.Maui.Platform.LayoutViewGroup +Microsoft.Maui.Platform.LayoutViewGroup.ClipsToBounds.get -> bool +Microsoft.Maui.Platform.LayoutViewGroup.ClipsToBounds.set -> void +Microsoft.Maui.Platform.LayoutViewGroup.InputTransparent.get -> bool +Microsoft.Maui.Platform.LayoutViewGroup.InputTransparent.set -> void +Microsoft.Maui.Platform.LayoutViewGroup.LayoutViewGroup(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.LayoutViewGroup.LayoutViewGroup(Android.Content.Context! context, Android.Util.IAttributeSet! attrs) -> void +Microsoft.Maui.Platform.LayoutViewGroup.LayoutViewGroup(Android.Content.Context! context, Android.Util.IAttributeSet! attrs, int defStyleAttr) -> void +Microsoft.Maui.Platform.LayoutViewGroup.LayoutViewGroup(Android.Content.Context! context, Android.Util.IAttributeSet! attrs, int defStyleAttr, int defStyleRes) -> void +Microsoft.Maui.Platform.LayoutViewGroup.LayoutViewGroup(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.LayoutViewGroupExtensions +Microsoft.Maui.Platform.LocalizedDigitsKeyListener +Microsoft.Maui.Platform.LocalizedDigitsKeyListener.LocalizedDigitsKeyListener(Android.Text.InputTypes inputTypes, char decimalSeparator) -> void +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat.Handler.set -> void +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat.MauiAccessibilityDelegateCompat() -> void +Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat.MauiAccessibilityDelegateCompat(AndroidX.Core.View.AccessibilityDelegateCompat? originalDelegate) -> void +Microsoft.Maui.Platform.MauiBoxView +Microsoft.Maui.Platform.MauiBoxView.MauiBoxView(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiDatePicker +Microsoft.Maui.Platform.MauiDatePicker.HidePicker.get -> System.Action? +Microsoft.Maui.Platform.MauiDatePicker.HidePicker.set -> void +Microsoft.Maui.Platform.MauiDatePicker.MauiDatePicker(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiDatePicker.MauiDatePicker(Android.Content.Context? context, Android.Util.IAttributeSet! attrs) -> void +Microsoft.Maui.Platform.MauiDatePicker.MauiDatePicker(Android.Content.Context? context, Android.Util.IAttributeSet! attrs, int defStyleAttr) -> void +Microsoft.Maui.Platform.MauiDatePicker.MauiDatePicker(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.MauiDatePicker.OnClick(Android.Views.View? v) -> void +Microsoft.Maui.Platform.MauiDatePicker.ShowPicker.get -> System.Action? +Microsoft.Maui.Platform.MauiDatePicker.ShowPicker.set -> void +Microsoft.Maui.Platform.MauiMaterialButton +Microsoft.Maui.Platform.MauiMaterialButton.MauiMaterialButton(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiPageControl +Microsoft.Maui.Platform.MauiPageControl.MauiPageControl(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiPageControl.ResetIndicators() -> void +Microsoft.Maui.Platform.MauiPageControl.SetIndicatorView(Microsoft.Maui.IIndicatorView? indicatorView) -> void +Microsoft.Maui.Platform.MauiPageControl.UpdateIndicatorCount() -> void +Microsoft.Maui.Platform.MauiPageControl.UpdatePosition() -> void +Microsoft.Maui.Platform.MauiPicker +Microsoft.Maui.Platform.MauiPicker.MauiPicker(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiPicker.ShowPopupOnFocus.get -> bool +Microsoft.Maui.Platform.MauiPicker.ShowPopupOnFocus.set -> void +Microsoft.Maui.Platform.MauiPickerBase +Microsoft.Maui.Platform.MauiPickerBase.MauiPickerBase(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiScrollView +Microsoft.Maui.Platform.MauiScrollView.MauiScrollView(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiScrollView.MauiScrollView(Android.Content.Context! context, Android.Util.IAttributeSet! attrs) -> void +Microsoft.Maui.Platform.MauiScrollView.MauiScrollView(Android.Content.Context! context, Android.Util.IAttributeSet! attrs, int defStyleAttr) -> void +Microsoft.Maui.Platform.MauiScrollView.MauiScrollView(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.MauiScrollView.ScrollTo(int x, int y, bool instant, System.Action! finished) -> void +Microsoft.Maui.Platform.MauiScrollView.SetContent(Android.Views.View! content) -> void +Microsoft.Maui.Platform.MauiScrollView.SetHorizontalScrollBarVisibility(Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +Microsoft.Maui.Platform.MauiScrollView.SetOrientation(Microsoft.Maui.ScrollOrientation orientation) -> void +Microsoft.Maui.Platform.MauiScrollView.SetVerticalScrollBarVisibility(Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +Microsoft.Maui.Platform.MauiShapeView +Microsoft.Maui.Platform.MauiShapeView.MauiShapeView(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiStepper +Microsoft.Maui.Platform.MauiStepper.MauiStepper(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiSwipeRefreshLayout +Microsoft.Maui.Platform.MauiSwipeRefreshLayout.MauiSwipeRefreshLayout(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiSwipeRefreshLayout.UpdateContent(Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext? mauiContext) -> void +Microsoft.Maui.Platform.MauiSwipeView +Microsoft.Maui.Platform.MauiSwipeView.MauiSwipeView(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiTextView +Microsoft.Maui.Platform.MauiTextView.MauiTextView(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiTimePicker +Microsoft.Maui.Platform.MauiTimePicker.HidePicker.get -> System.Action? +Microsoft.Maui.Platform.MauiTimePicker.HidePicker.set -> void +Microsoft.Maui.Platform.MauiTimePicker.MauiTimePicker(Android.Content.Context? context) -> void +Microsoft.Maui.Platform.MauiTimePicker.MauiTimePicker(Android.Content.Context? context, Android.Util.IAttributeSet! attrs) -> void +Microsoft.Maui.Platform.MauiTimePicker.MauiTimePicker(Android.Content.Context? context, Android.Util.IAttributeSet! attrs, int defStyleAttr) -> void +Microsoft.Maui.Platform.MauiTimePicker.MauiTimePicker(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.MauiTimePicker.OnClick(Android.Views.View? v) -> void +Microsoft.Maui.Platform.MauiTimePicker.ShowPicker.get -> System.Action? +Microsoft.Maui.Platform.MauiTimePicker.ShowPicker.set -> void +Microsoft.Maui.Platform.MauiWebChromeClient +Microsoft.Maui.Platform.MauiWebChromeClient.UnregisterCallbacks() -> void +Microsoft.Maui.Platform.MauiWebView +Microsoft.Maui.Platform.MauiWebView.MauiWebView(Microsoft.Maui.Handlers.WebViewHandler! handler, Android.Content.Context! context) -> void +Microsoft.Maui.Platform.MauiWebViewClient +Microsoft.Maui.Platform.MauiWebViewClient.MauiWebViewClient(Microsoft.Maui.Handlers.WebViewHandler! handler) -> void +Microsoft.Maui.Platform.MeasureSpecExtensions +Microsoft.Maui.Platform.NavigationRootManager +Microsoft.Maui.Platform.NavigationRootManager.NavigationRootManager(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.Platform.NavigationRootManager.RootView.get -> Android.Views.View? +Microsoft.Maui.Platform.NavigationViewFragment +Microsoft.Maui.Platform.NavigationViewFragment.NavigationViewFragment() -> void +Microsoft.Maui.Platform.NavigationViewFragment.NavigationViewFragment(System.IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer) -> void +Microsoft.Maui.Platform.PickerExtensions +Microsoft.Maui.Platform.PlatformTouchGraphicsView +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Connect(Microsoft.Maui.IGraphicsView! graphicsView) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Disconnect() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.PlatformTouchGraphicsView(Android.Content.Context! context) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesBegan(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesCanceled() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesEnded(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesMoved(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.Platform.ProgressBarExtensions +Microsoft.Maui.Platform.RadioButtonExtensions +Microsoft.Maui.Platform.ScrollViewExtensions +Microsoft.Maui.Platform.SearchViewExtensions +Microsoft.Maui.Platform.SemanticExtensions +Microsoft.Maui.Platform.ShapeViewExtensions +Microsoft.Maui.Platform.SliderExtensions +Microsoft.Maui.Platform.StackNavigationManager +Microsoft.Maui.Platform.StackNavigationManager.CurrentPage.get -> Microsoft.Maui.IView! +Microsoft.Maui.Platform.StackNavigationManager.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Platform.StackNavigationManager.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Platform.StackNavigationManager.StackNavigationManager(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.Platform.StepperExtensions +Microsoft.Maui.Platform.StepperHandlerHolder +Microsoft.Maui.Platform.StepperHandlerHolder.StepperHandler.get -> Microsoft.Maui.Platform.IAndroidStepperHandler! +Microsoft.Maui.Platform.StepperHandlerHolder.StepperHandler.set -> void +Microsoft.Maui.Platform.StepperHandlerHolder.StepperHandlerHolder(Microsoft.Maui.Platform.IAndroidStepperHandler! handler) -> void +Microsoft.Maui.Platform.StepperHandlerManager +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.SwitchExtensions +Microsoft.Maui.Platform.TextAlignmentExtensions +Microsoft.Maui.Platform.TextViewExtensions +Microsoft.Maui.Platform.ThemeExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.TimePickerExtensions +Microsoft.Maui.Platform.TransformationExtensions +Microsoft.Maui.Platform.UnitExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.ViewGroupExtensions +Microsoft.Maui.Platform.WebViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.InputTransparent.get -> bool +Microsoft.Maui.Platform.WrapperView.InputTransparent.set -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.Resource +Microsoft.Maui.Resource.Animation +Microsoft.Maui.Resource.Animation.Animation() -> void +Microsoft.Maui.Resource.Attribute +Microsoft.Maui.Resource.Attribute.Attribute() -> void +Microsoft.Maui.Resource.Drawable +Microsoft.Maui.Resource.Drawable.Drawable() -> void +Microsoft.Maui.Resource.Id +Microsoft.Maui.Resource.Id.Id() -> void +Microsoft.Maui.Resource.Layout +Microsoft.Maui.Resource.Layout.Layout() -> void +Microsoft.Maui.Resource.Resource() -> void +Microsoft.Maui.Resource.Style +Microsoft.Maui.Resource.Style.Style() -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> Android.Views.View? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Animations.PlatformTicker.IsRunning.get -> bool +override Microsoft.Maui.Animations.PlatformTicker.Start() -> void +override Microsoft.Maui.Animations.PlatformTicker.Stop() -> void +override Microsoft.Maui.Animations.PlatformTicker.SystemEnabled.get -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.FileImageSourceService.GetDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Content.Context! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.FileImageSourceService.LoadDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Widget.ImageView! imageView, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.FontImageSourceService.GetDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Content.Context! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.FontImageSourceService.LoadDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Widget.ImageView! imageView, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.Maui.Graphics.MauiDrawable.Dispose(bool disposing) -> void +override Microsoft.Maui.Graphics.MauiDrawable.OnBoundsChange(Android.Graphics.Rect? bounds) -> void +override Microsoft.Maui.Graphics.MauiDrawable.OnDraw(Android.Graphics.Drawables.Shapes.Shape? shape, Android.Graphics.Canvas? canvas, Android.Graphics.Paint? paint) -> void +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> Android.Widget.ProgressBar! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> Android.App.Application! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentViewGroup! +override Microsoft.Maui.Handlers.BorderHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentViewGroup! platformView) -> void +override Microsoft.Maui.Handlers.BorderHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.ButtonHandler.ConnectHandler(Google.Android.Material.Button.MaterialButton! platformView) -> void +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> Google.Android.Material.Button.MaterialButton! +override Microsoft.Maui.Handlers.ButtonHandler.DisconnectHandler(Google.Android.Material.Button.MaterialButton! platformView) -> void +override Microsoft.Maui.Handlers.ButtonHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.ConnectHandler(AndroidX.AppCompat.Widget.AppCompatCheckBox! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.AppCompatCheckBox! +override Microsoft.Maui.Handlers.CheckBoxHandler.DisconnectHandler(AndroidX.AppCompat.Widget.AppCompatCheckBox! platformView) -> void +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentViewGroup! +override Microsoft.Maui.Handlers.ContentViewHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentViewGroup! platformView) -> void +override Microsoft.Maui.Handlers.ContentViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.ConnectHandler(Microsoft.Maui.Platform.MauiDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiDatePicker! +override Microsoft.Maui.Handlers.DatePickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.ConnectHandler(AndroidX.AppCompat.Widget.AppCompatEditText! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.AppCompatEditText! +override Microsoft.Maui.Handlers.EditorHandler.DisconnectHandler(AndroidX.AppCompat.Widget.AppCompatEditText! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.ConnectHandler(AndroidX.AppCompat.Widget.AppCompatEditText! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.AppCompatEditText! +override Microsoft.Maui.Handlers.EntryHandler.DisconnectHandler(AndroidX.AppCompat.Widget.AppCompatEditText! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.ConnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> Android.Views.View! +override Microsoft.Maui.Handlers.FlyoutViewHandler.DisconnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.ConnectHandler(Google.Android.Material.ImageView.ShapeableImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> Google.Android.Material.ImageView.ShapeableImageView! +override Microsoft.Maui.Handlers.ImageButtonHandler.DisconnectHandler(Google.Android.Material.ImageView.ShapeableImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> Android.Widget.ImageView! +override Microsoft.Maui.Handlers.ImageHandler.DisconnectHandler(Android.Widget.ImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.ImageHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPageControl! +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.AppCompatTextView! +override Microsoft.Maui.Handlers.LabelHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> Microsoft.Maui.Platform.LayoutViewGroup! +override Microsoft.Maui.Handlers.LayoutHandler.DisconnectHandler(Microsoft.Maui.Platform.LayoutViewGroup! platformView) -> void +override Microsoft.Maui.Handlers.LayoutHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> Android.Views.View! +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> Android.Views.View! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> Android.Views.View! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> Android.Views.View! +override Microsoft.Maui.Handlers.NavigationViewHandler.ConnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> Android.Views.View! +override Microsoft.Maui.Handlers.NavigationViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.NavigationViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Handlers.PickerHandler.ConnectHandler(Microsoft.Maui.Platform.MauiPicker! platformView) -> void +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPicker! +override Microsoft.Maui.Handlers.PickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiPicker! platformView) -> void +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> Android.Widget.ProgressBar! +override Microsoft.Maui.Handlers.RadioButtonHandler.ConnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.AppCompatRadioButton! +override Microsoft.Maui.Handlers.RadioButtonHandler.DisconnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiSwipeRefreshLayout! platformView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiSwipeRefreshLayout! +override Microsoft.Maui.Handlers.RefreshViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiSwipeRefreshLayout! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiScrollView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiScrollView! +override Microsoft.Maui.Handlers.ScrollViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiScrollView! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.ConnectHandler(AndroidX.AppCompat.Widget.SearchView! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.SearchView! +override Microsoft.Maui.Handlers.SearchBarHandler.DisconnectHandler(AndroidX.AppCompat.Widget.SearchView! platformView) -> void +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiShapeView! +override Microsoft.Maui.Handlers.ShapeViewHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.SliderHandler.ConnectHandler(Android.Widget.SeekBar! platformView) -> void +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> Android.Widget.SeekBar! +override Microsoft.Maui.Handlers.SliderHandler.DisconnectHandler(Android.Widget.SeekBar! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiStepper! +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.ConnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> Android.Views.View! +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.DisconnectHandler(Android.Views.View! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentViewGroup! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentViewGroup! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiSwipeView! +override Microsoft.Maui.Handlers.SwipeViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwitchHandler.ConnectHandler(AndroidX.AppCompat.Widget.SwitchCompat! platformView) -> void +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> AndroidX.AppCompat.Widget.SwitchCompat! +override Microsoft.Maui.Handlers.SwitchHandler.DisconnectHandler(AndroidX.AppCompat.Widget.SwitchCompat! platformView) -> void +override Microsoft.Maui.Handlers.SwitchHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> Android.Views.View! +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiTimePicker! +override Microsoft.Maui.Handlers.TimePickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiTimePicker! platformView) -> void +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> Google.Android.Material.AppBar.MaterialToolbar! +override Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! element) -> void +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> Android.Webkit.WebView! +override Microsoft.Maui.Handlers.WebViewHandler.DisconnectHandler(Android.Webkit.WebView! platformView) -> void +override Microsoft.Maui.Handlers.WebViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> Android.App.Activity! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.MauiAppCompatActivity.OnActivityResult(int requestCode, Android.App.Result resultCode, Android.Content.Intent? data) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnBackPressed() -> void +override Microsoft.Maui.MauiAppCompatActivity.OnConfigurationChanged(Android.Content.Res.Configuration! newConfig) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnCreate(Android.OS.Bundle? savedInstanceState) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnNewIntent(Android.Content.Intent? intent) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnPostCreate(Android.OS.Bundle? savedInstanceState) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnPostResume() -> void +override Microsoft.Maui.MauiAppCompatActivity.OnRequestPermissionsResult(int requestCode, string![]! permissions, Android.Content.PM.Permission[]! grantResults) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnRestart() -> void +override Microsoft.Maui.MauiAppCompatActivity.OnRestoreInstanceState(Android.OS.Bundle! savedInstanceState) -> void +override Microsoft.Maui.MauiApplication.OnConfigurationChanged(Android.Content.Res.Configuration! newConfig) -> void +override Microsoft.Maui.MauiApplication.OnCreate() -> void +override Microsoft.Maui.MauiApplication.OnLowMemory() -> void +override Microsoft.Maui.MauiApplication.OnTrimMemory(Android.Content.TrimMemory level) -> void +override Microsoft.Maui.MauiViewGroup.JniPeerMembers.get -> Java.Interop.JniPeerMembers! +override Microsoft.Maui.MauiViewGroup.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.MauiViewGroup.ThresholdClass.get -> System.IntPtr +override Microsoft.Maui.MauiViewGroup.ThresholdType.get -> System.Type! +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.DispatchPopulateAccessibilityEvent(Android.Views.View! host, Android.Views.Accessibility.AccessibilityEvent! e) -> bool +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.GetAccessibilityNodeProvider(Android.Views.View! host) -> AndroidX.Core.View.Accessibility.AccessibilityNodeProviderCompat! +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.OnInitializeAccessibilityEvent(Android.Views.View! host, Android.Views.Accessibility.AccessibilityEvent! e) -> void +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.OnInitializeAccessibilityNodeInfo(Android.Views.View? host, AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat? info) -> void +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.OnPopulateAccessibilityEvent(Android.Views.View! host, Android.Views.Accessibility.AccessibilityEvent! e) -> void +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.OnRequestSendAccessibilityEvent(Android.Views.ViewGroup! host, Android.Views.View! child, Android.Views.Accessibility.AccessibilityEvent! e) -> bool +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.PerformAccessibilityAction(Android.Views.View! host, int action, Android.OS.Bundle! args) -> bool +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.SendAccessibilityEvent(Android.Views.View! host, int eventType) -> void +override Microsoft.Maui.Platform.AccessibilityDelegateCompatWrapper.SendAccessibilityEventUnchecked(Android.Views.View! host, Android.Views.Accessibility.AccessibilityEvent! e) -> void +override Microsoft.Maui.Platform.BorderDrawable.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.BorderDrawable.OnBoundsChange(Android.Graphics.Rect? bounds) -> void +override Microsoft.Maui.Platform.BorderDrawable.OnDraw(Android.Graphics.Drawables.Shapes.Shape? shape, Android.Graphics.Canvas? canvas, Android.Graphics.Paint? paint) -> void +override Microsoft.Maui.Platform.ContentViewGroup.DispatchDraw(Android.Graphics.Canvas? canvas) -> void +override Microsoft.Maui.Platform.ContentViewGroup.OnLayout(bool changed, int left, int top, int right, int bottom) -> void +override Microsoft.Maui.Platform.ContentViewGroup.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Platform.LayoutViewGroup.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Platform.LayoutViewGroup.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Platform.LayoutViewGroup.OnTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.LocalizedDigitsKeyListener.FilterFormatted(Java.Lang.ICharSequence? source, int start, int end, Android.Text.ISpanned? dest, int dstart, int dend) -> Java.Lang.ICharSequence? +override Microsoft.Maui.Platform.LocalizedDigitsKeyListener.GetAcceptedChars() -> char[]! +override Microsoft.Maui.Platform.LocalizedDigitsKeyListener.InputType.get -> Android.Text.InputTypes +override Microsoft.Maui.Platform.MauiAccessibilityDelegateCompat.OnInitializeAccessibilityNodeInfo(Android.Views.View? host, AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat? info) -> void +override Microsoft.Maui.Platform.MauiDatePicker.OnFocusChanged(bool gainFocus, Android.Views.FocusSearchDirection direction, Android.Graphics.Rect? previouslyFocusedRect) -> void +override Microsoft.Maui.Platform.MauiMaterialButton.OnLayout(bool changed, int left, int top, int right, int bottom) -> void +override Microsoft.Maui.Platform.MauiPicker.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiPicker.OnFocusChanged(bool gainFocus, Android.Views.FocusSearchDirection direction, Android.Graphics.Rect? previouslyFocusedRect) -> void +override Microsoft.Maui.Platform.MauiPicker.OnTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.MauiScrollView.OnInterceptTouchEvent(Android.Views.MotionEvent? ev) -> bool +override Microsoft.Maui.Platform.MauiScrollView.OnLayout(bool changed, int left, int top, int right, int bottom) -> void +override Microsoft.Maui.Platform.MauiScrollView.OnTouchEvent(Android.Views.MotionEvent? ev) -> bool +override Microsoft.Maui.Platform.MauiSwipeRefreshLayout.CanChildScrollUp() -> bool +override Microsoft.Maui.Platform.MauiSwipeView.DispatchTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.MauiSwipeView.OnAttachedToWindow() -> void +override Microsoft.Maui.Platform.MauiSwipeView.OnInterceptTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.MauiSwipeView.OnTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.MauiTextView.OnLayout(bool changed, int l, int t, int r, int b) -> void +override Microsoft.Maui.Platform.MauiTimePicker.OnFocusChanged(bool gainFocus, Android.Views.FocusSearchDirection direction, Android.Graphics.Rect? previouslyFocusedRect) -> void +override Microsoft.Maui.Platform.MauiWebChromeClient.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiWebViewClient.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiWebViewClient.OnPageFinished(Android.Webkit.WebView? view, string? url) -> void +override Microsoft.Maui.Platform.MauiWebViewClient.OnPageStarted(Android.Webkit.WebView? view, string? url, Android.Graphics.Bitmap? favicon) -> void +override Microsoft.Maui.Platform.MauiWebViewClient.OnReceivedError(Android.Webkit.WebView? view, Android.Webkit.IWebResourceRequest? request, Android.Webkit.WebResourceError? error) -> void +override Microsoft.Maui.Platform.MauiWebViewClient.ShouldOverrideUrlLoading(Android.Webkit.WebView? view, Android.Webkit.IWebResourceRequest? request) -> bool +override Microsoft.Maui.Platform.NavigationViewFragment.OnCreateAnimation(int transit, bool enter, int nextAnim) -> Android.Views.Animations.Animation! +override Microsoft.Maui.Platform.NavigationViewFragment.OnCreateView(Android.Views.LayoutInflater! inflater, Android.Views.ViewGroup! container, Android.OS.Bundle! savedInstanceState) -> Android.Views.View! +override Microsoft.Maui.Platform.NavigationViewFragment.OnResume() -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnHoverEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnLayout(bool changed, int left, int top, int right, int bottom) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnTouchEvent(Android.Views.MotionEvent? e) -> bool +override Microsoft.Maui.Platform.WrapperView.OnDetachedFromWindow() -> void +override Microsoft.Maui.Platform.WrapperView.OnLayout(bool changed, int left, int top, int right, int bottom) -> void +override Microsoft.Maui.Platform.WrapperView.OnMeasure(int widthMeasureSpec, int heightMeasureSpec) -> void +override Microsoft.Maui.Platform.WrapperView.RequestLayout() -> void +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.StreamImageSourceService.GetDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Content.Context! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.StreamImageSourceService.LoadDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Widget.ImageView! imageView, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.UriImageSourceService.GetDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Content.Context! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.UriImageSourceService.LoadDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Widget.ImageView! imageView, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.HandleUIChange() -> void +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.ImagePaint! imagePaint, Android.Content.Context? context) -> Android.Graphics.Drawables.Drawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint, Android.Content.Context? context) -> Android.Graphics.Drawables.Drawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.PatternPaint! patternPaint, Android.Content.Context? context) -> Android.Graphics.Drawables.Drawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint, Android.Content.Context? context) -> Android.Graphics.Drawables.Drawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.SolidPaint! solidPaint, Android.Content.Context? context) -> Android.Graphics.Drawables.Drawable? +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Graphics.PaintExtensions.ToDrawable(this Microsoft.Maui.Graphics.Paint! paint, Android.Content.Context? context) -> Android.Graphics.Drawables.Drawable? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapHeight(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapWidth(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapBackground(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSourceAsync(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapBackground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapBackground(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapBackground(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapBackground(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapDetail(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapFlyout(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapFlyoutBehavior(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapFlyoutWidth(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapIsGestureEnabled(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! view) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapIsPresented(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapToolbar(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! view) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapBackground(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapSourceAsync(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapBackground(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapBackground(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapBackground(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapBackground(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapToolbar(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapWebChromeClient(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapWebViewClient(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapWebViewSettings(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapToolbar(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, Android.Text.TextChangedEventArgs! e) -> void +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnActivityResult(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnActivityResult! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnApplicationConfigurationChanged(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationConfigurationChanged! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnApplicationCreate(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationCreate! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnApplicationCreating(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationCreating! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnApplicationLowMemory(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationLowMemory! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnApplicationTrimMemory(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnApplicationTrimMemory! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnBackPressed(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnBackPressed! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnConfigurationChanged(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnConfigurationChanged! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnCreate(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnCreate! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnDestroy(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnDestroy! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnNewIntent(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnNewIntent! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnPause(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnPause! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnPostCreate(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnPostCreate! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnPostResume(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnPostResume! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnRequestPermissionsResult(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnRequestPermissionsResult! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnRestart(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnRestart! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnRestoreInstanceState(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnRestoreInstanceState! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnResume(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnResume! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnSaveInstanceState(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnSaveInstanceState! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnStart(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnStart! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleBuilderExtensions.OnStop(this Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.AndroidLifecycle.OnStop! del) -> Microsoft.Maui.LifecycleEvents.IAndroidLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.AndroidLifecycleExtensions.AddAndroid(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, System.Action! configureDelegate) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.MauiApplication.Current.get -> Microsoft.Maui.MauiApplication! +static Microsoft.Maui.MauiViewGroup.SendViewBatchUpdate(Android.Views.View? view, float pivotX, float pivotY, int visibility, bool enabled, float opacity, float rotation, float rotationX, float rotationY, float scaleX, float scaleY, float translationX, float translationY) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateColor(this Android.Widget.ProgressBar! progressBar, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateIsRunning(this Android.Widget.ProgressBar! progressBar, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this Android.App.Activity! activity, Microsoft.Maui.IApplication! application, Android.OS.Bundle? savedInstanceState = null) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.RequestNewWindow(this Android.App.Application! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.Handlers.OpenWindowRequest? args) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.ToBundle(this Microsoft.Maui.IPersistedState? state) -> Android.OS.Bundle! +static Microsoft.Maui.Platform.AspectExtensions.ToScaleType(this Microsoft.Maui.Aspect aspect) -> Android.Widget.ImageView.ScaleType! +static Microsoft.Maui.Platform.ButtonExtensions.UpdateBackground(this Google.Android.Material.Button.MaterialButton! platformView, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCornerRadius(this Google.Android.Material.Button.MaterialButton! platformView, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this Android.Widget.Button! platformControl, Microsoft.Maui.IPadding! padding, Microsoft.Maui.Thickness? defaultPadding = null) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this Android.Widget.Button! platformControl, Microsoft.Maui.Thickness padding, Microsoft.Maui.Thickness? defaultPadding = null) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeColor(this Google.Android.Material.Button.MaterialButton! platformView, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeThickness(this Google.Android.Material.Button.MaterialButton! platformView, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateBackground(this AndroidX.AppCompat.Widget.AppCompatCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateForeground(this AndroidX.AppCompat.Widget.AppCompatCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateIsChecked(this AndroidX.AppCompat.Widget.AppCompatCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.ColorExtensions.ToColor(this Android.Graphics.Color color) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Platform.ColorExtensions.ToColor(this uint color) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Platform.ColorExtensions.ToDefaultColorStateList(this Microsoft.Maui.Graphics.Color! color) -> Android.Content.Res.ColorStateList! +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color! self) -> Android.Graphics.Color +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color! self, int defaultColorResourceId, Android.Content.Context! context) -> Android.Graphics.Color +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color? self, Microsoft.Maui.Graphics.Color! defaultColor) -> Android.Graphics.Color +static Microsoft.Maui.Platform.ContextExtensions.FromPixels(this Android.Content.Context! context, double width, double height) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Platform.ContextExtensions.FromPixels(this Android.Content.Context! context, Microsoft.Maui.Graphics.Rect rect) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Platform.ContextExtensions.FromPixels(this Android.Content.Context! context, Microsoft.Maui.Thickness thickness) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Platform.ContextExtensions.FromPixels(this Android.Content.Context? self, double pixels) -> double +static Microsoft.Maui.Platform.ContextExtensions.GetActionBarHeight(this Android.Content.Context! context) -> int +static Microsoft.Maui.Platform.ContextExtensions.GetActivity(this Android.Content.Context! context) -> Android.App.Activity? +static Microsoft.Maui.Platform.ContextExtensions.GetDisplayDensity(this Android.Content.Context? context) -> float +static Microsoft.Maui.Platform.ContextExtensions.GetDrawableId(this Android.Content.Context! context, string! name) -> int +static Microsoft.Maui.Platform.ContextExtensions.GetDrawableId(this Android.Content.Res.Resources! resources, string! packageName, string! name) -> int +static Microsoft.Maui.Platform.ContextExtensions.GetFragmentManager(this Android.Content.Context! context) -> AndroidX.Fragment.App.FragmentManager? +static Microsoft.Maui.Platform.ContextExtensions.GetThemeAttributeDp(this Android.Content.Context! self, int resource) -> double +static Microsoft.Maui.Platform.ContextExtensions.GetThemeAttributePixels(this Android.Content.Context! self, int resource) -> double +static Microsoft.Maui.Platform.ContextExtensions.GetWindow(this Android.Content.Context! context) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.Platform.ContextExtensions.HasRtlSupport(this Android.Content.Context! self) -> bool +static Microsoft.Maui.Platform.ContextExtensions.HideKeyboard(this Android.Content.Context! self, Android.Views.View! view) -> void +static Microsoft.Maui.Platform.ContextExtensions.ShowKeyboard(this Android.Content.Context! self, Android.Views.View! view) -> void +static Microsoft.Maui.Platform.ContextExtensions.TargetSdkVersion(this Android.Content.Context! self) -> int? +static Microsoft.Maui.Platform.ContextExtensions.ToCrossPlatformRectInReferenceFrame(this Android.Content.Context! context, int left, int top, int right, int bottom) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Platform.ContextExtensions.ToPixels(this Android.Content.Context! context, Microsoft.Maui.Graphics.Rect rectangle) -> (int left, int top, int right, int bottom) +static Microsoft.Maui.Platform.ContextExtensions.ToPixels(this Android.Content.Context! context, Microsoft.Maui.Thickness thickness) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Platform.ContextExtensions.ToPixels(this Android.Content.Context? self, double dp) -> float +static Microsoft.Maui.Platform.ContextExtensions.TryResolveAttribute(this Android.Content.Context! context, int id) -> bool +static Microsoft.Maui.Platform.ContextExtensions.TryResolveAttribute(this Android.Content.Context! context, int id, out float? value) -> bool +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, Android.App.DatePickerDialog? datePickerDialog) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, Android.App.DatePickerDialog? datePickerDialog) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DrawableExtensions.GetColorFilter(this Android.Graphics.Drawables.Drawable! drawable) -> Android.Graphics.ColorFilter? +static Microsoft.Maui.Platform.DrawableExtensions.GetFilterMode(Microsoft.Maui.FilterMode mode) -> Android.Graphics.BlendMode? +static Microsoft.Maui.Platform.DrawableExtensions.SetColorFilter(this Android.Graphics.Drawables.Drawable! drawable, Android.Graphics.Color color, Microsoft.Maui.FilterMode mode) -> void +static Microsoft.Maui.Platform.DrawableExtensions.SetColorFilter(this Android.Graphics.Drawables.Drawable! drawable, Android.Graphics.ColorFilter? colorFilter) -> void +static Microsoft.Maui.Platform.DrawableExtensions.SetColorFilter(this Android.Graphics.Drawables.Drawable! drawable, Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.FilterMode mode) -> void +static Microsoft.Maui.Platform.EditTextExtensions.SetLengthFilter(this Android.Widget.EditText! editText, int maxLength) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateClearButtonVisibility(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry, Android.Graphics.Drawables.Drawable? clearButtonDrawable) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateClearButtonVisibility(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry, System.Func? getClearButtonDrawable) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateCursorPosition(this Android.Widget.EditText! editText, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateHorizontalTextAlignment(this Android.Widget.EditText! editText, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateIsPassword(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateIsReadOnly(this Android.Widget.EditText! editText, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateIsReadOnly(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateIsTextPredictionEnabled(this Android.Widget.EditText! editText, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateIsTextPredictionEnabled(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateKeyboard(this Android.Widget.EditText! editText, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateKeyboard(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateMaxLength(this Android.Widget.EditText! editText, int maxLength) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateMaxLength(this Android.Widget.EditText! editText, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateMaxLength(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdatePlaceholder(this Android.Widget.EditText! editText, Microsoft.Maui.IPlaceholder! textInput) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdatePlaceholderColor(this Android.Widget.EditText! editText, Microsoft.Maui.Graphics.Color! placeholderTextColor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdatePlaceholderColor(this Android.Widget.EditText! editText, Microsoft.Maui.IPlaceholder! placeholder) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateReturnType(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateSelectionLength(this Android.Widget.EditText! editText, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateText(this Android.Widget.EditText! editText, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateText(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateTextColor(this Android.Widget.EditText! editText, Microsoft.Maui.Graphics.Color! textColor) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateTextColor(this Android.Widget.EditText! editText, Microsoft.Maui.ITextStyle! entry) -> void +static Microsoft.Maui.Platform.EditTextExtensions.UpdateVerticalTextAlignment(this Android.Widget.EditText! editText, Microsoft.Maui.ITextAlignment! entry) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this Android.App.Application! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this Android.App.Activity! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToContainerView(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Android.Views.View! +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Android.Views.View! +static Microsoft.Maui.Platform.GraphicsViewExtensions.UpdateDrawable(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! PlatformGraphicsView, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Platform.ImageButtonExtensions.UpdateCornerRadius(this Google.Android.Material.ImageView.ShapeableImageView! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ImageButtonExtensions.UpdatePadding(this Google.Android.Material.ImageView.ShapeableImageView! platformButton, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Platform.ImageButtonExtensions.UpdateStrokeColor(this Google.Android.Material.ImageView.ShapeableImageView! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ImageButtonExtensions.UpdateStrokeThickness(this Google.Android.Material.ImageView.ShapeableImageView! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.Clear(this Android.Widget.ImageView! imageView) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateAspect(this Android.Widget.ImageView! imageView, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateIsAnimationPlaying(this Android.Graphics.Drawables.Drawable? drawable, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateIsAnimationPlaying(this Android.Widget.ImageView! imageView, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImeActionExtensions.ToPlatform(this Microsoft.Maui.ReturnType returnType) -> Android.Views.InputMethods.ImeAction +static Microsoft.Maui.Platform.KeyboardExtensions.ToInputType(this Microsoft.Maui.Keyboard! self) -> Android.Text.InputTypes +static Microsoft.Maui.Platform.LayoutViewGroupExtensions.UpdateClipsToBounds(this Microsoft.Maui.Platform.LayoutViewGroup! layoutViewGroup, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Platform.LocalizedDigitsKeyListener.Create(Android.Text.InputTypes inputTypes) -> Android.Text.Method.NumberKeyListener! +static Microsoft.Maui.Platform.LocalizedDigitsKeyListener.GetInstance(Android.Text.InputTypes inputTypes, char decimalSeparator) -> Microsoft.Maui.Platform.LocalizedDigitsKeyListener! +static Microsoft.Maui.Platform.MeasureSpecExtensions.GetMode(this int measureSpec) -> Android.Views.MeasureSpecMode +static Microsoft.Maui.Platform.MeasureSpecExtensions.GetSize(this int measureSpec) -> int +static Microsoft.Maui.Platform.MeasureSpecExtensions.MakeMeasureSpec(this Android.Views.MeasureSpecMode mode, int size) -> int +static Microsoft.Maui.Platform.MeasureSpecExtensions.ToDouble(this int measureSpec, Android.Content.Context! context) -> double +static Microsoft.Maui.Platform.PickerExtensions.UpdateSelectedIndex(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker, Android.Content.Res.ColorStateList? defaultColor) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitle(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitleColor(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgress(this Android.Widget.ProgressBar! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgressColor(this Android.Widget.ProgressBar! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateBackground(this AndroidX.AppCompat.Widget.AppCompatRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateContent(this AndroidX.AppCompat.Widget.AppCompatRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateCornerRadius(this AndroidX.AppCompat.Widget.AppCompatRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateIsChecked(this AndroidX.AppCompat.Widget.AppCompatRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateStrokeColor(this AndroidX.AppCompat.Widget.AppCompatRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateStrokeThickness(this AndroidX.AppCompat.Widget.AppCompatRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateContent(this Microsoft.Maui.Platform.MauiScrollView! scrollView, Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateCancelButtonColor(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateFont(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar, Microsoft.Maui.IFontManager! fontManager, Android.Widget.EditText? editText = null) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateIsEnabled(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar, Android.Widget.EditText? editText = null) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateIsReadOnly(this Android.Widget.EditText! editText, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateIsTextPredictionEnabled(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar, Android.Widget.EditText? editText = null) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateMaxLength(this AndroidX.AppCompat.Widget.SearchView! searchView, int maxLength, Android.Widget.EditText? editText) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateMaxLength(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateMaxLength(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar, Android.Widget.EditText? editText) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdatePlaceholder(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdatePlaceholderColor(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar, Android.Content.Res.ColorStateList? defaultPlaceholderColor, Android.Widget.EditText? editText = null) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateText(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateVerticalTextAlignment(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchViewExtensions.UpdateVerticalTextAlignment(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar, Android.Widget.EditText? editText) -> void +static Microsoft.Maui.Platform.SemanticExtensions.UpdateSemanticNodeInfo(this Android.Views.View! platformView, Microsoft.Maui.IView! virtualView, AndroidX.Core.View.Accessibility.AccessibilityNodeInfoCompat? info) -> void +static Microsoft.Maui.Platform.SemanticExtensions.UpdateSemantics(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.InvalidateShape(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.UpdateShape(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximum(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximumTrackColor(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimum(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimumTrackColor(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbColor(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbImageSourceAsync(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider, Microsoft.Maui.IImageSourceServiceProvider! provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.SliderExtensions.UpdateValue(this Android.Widget.SeekBar! seekBar, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateIncrement(this Microsoft.Maui.Platform.MauiStepper! linearLayout, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateIsEnabled(this Microsoft.Maui.Platform.MauiStepper! linearLayout, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMaximum(this Microsoft.Maui.Platform.MauiStepper! linearLayout, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMinimum(this Microsoft.Maui.Platform.MauiStepper! linearLayout, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateValue(this Microsoft.Maui.Platform.MauiStepper! linearLayout, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperHandlerManager.CreateStepperButtons(Microsoft.Maui.Platform.IAndroidStepperHandler! handler, out TButton? downButton, out TButton? upButton) -> void +static Microsoft.Maui.Platform.StepperHandlerManager.UpdateButtons(Microsoft.Maui.IStepper! stepper, TButton? downButton, TButton? upButton, System.ComponentModel.PropertyChangedEventArgs? e = null) -> void +static Microsoft.Maui.Platform.StrokeExtensions.InvalidateBorderStrokeBounds(this Android.Views.View! platformView) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateBorderStroke(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this Android.Views.View! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.SwitchExtensions.GetDefaultSwitchThumbDrawable(this AndroidX.AppCompat.Widget.SwitchCompat! aSwitch) -> Android.Graphics.Drawables.Drawable! +static Microsoft.Maui.Platform.SwitchExtensions.GetDefaultSwitchTrackDrawable(this AndroidX.AppCompat.Widget.SwitchCompat! aSwitch) -> Android.Graphics.Drawables.Drawable! +static Microsoft.Maui.Platform.SwitchExtensions.UpdateIsOn(this AndroidX.AppCompat.Widget.SwitchCompat! aSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateThumbColor(this AndroidX.AppCompat.Widget.SwitchCompat! aSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateTrackColor(this AndroidX.AppCompat.Widget.SwitchCompat! aSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.TextAlignmentExtensions.UpdateTextAlignment(this Android.Widget.EditText! view, Microsoft.Maui.TextAlignment horizontal, Microsoft.Maui.TextAlignment vertical) -> void +static Microsoft.Maui.Platform.TextAlignmentExtensions.UpdateVerticalAlignment(this Android.Widget.EditText! view, Microsoft.Maui.TextAlignment alignment, Android.Views.GravityFlags orMask = Android.Views.GravityFlags.AxisXShift) -> void +static Microsoft.Maui.Platform.TextAlignmentExtensions.UpdateVerticalAlignment(this Android.Widget.TextView! view, Microsoft.Maui.TextAlignment alignment, Android.Views.GravityFlags orMask = Android.Views.GravityFlags.AxisXShift) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateCharacterSpacing(this Android.Widget.TextView! textView, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateFlowDirection(this Android.Widget.TextView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateFont(this Android.Widget.TextView! textView, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateHorizontalTextAlignment(this Android.Widget.TextView! textView, Microsoft.Maui.ITextAlignment! text) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateLineHeight(this Android.Widget.TextView! textView, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdatePadding(this Android.Widget.TextView! textView, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateTextColor(this Android.Widget.TextView! textView, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateTextDecorations(this Android.Widget.TextView! textView, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateTextHtml(this Android.Widget.TextView! textView, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateTextPlainText(this Android.Widget.TextView! textView, Microsoft.Maui.IText! label) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateVerticalTextAlignment(this Android.Widget.TextView! textView, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.ThemeExtensions.TryResolveAttribute(this Android.Content.Res.Resources.Theme? theme, int id) -> bool +static Microsoft.Maui.Platform.ThemeExtensions.TryResolveAttribute(this Android.Content.Res.Resources.Theme? theme, int id, out bool? value) -> bool +static Microsoft.Maui.Platform.ThemeExtensions.TryResolveAttribute(this Android.Content.Res.Resources.Theme? theme, int id, out float? value) -> bool +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateAnchorX(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateAnchorY(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateRotation(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateRotationX(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateRotationY(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateScale(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateScaleX(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateScaleY(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTranslationX(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTranslationY(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.UnitExtensions.ToEm(this double pt) -> float +static Microsoft.Maui.Platform.ViewExtensions.Focus(this Android.Views.View! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.GetClipToOutline(this Android.Views.View! view) -> bool +static Microsoft.Maui.Platform.ViewExtensions.Initialize(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.RemoveFromParent(this Android.Views.View! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.SetClipToOutline(this Android.Views.View! view, bool value) -> void +static Microsoft.Maui.Platform.ViewExtensions.SetWindowBackground(this Android.Views.View! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IPlatformViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.ToPlatformVisibility(this Microsoft.Maui.Visibility visibility) -> Android.Views.ViewStates +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Android.Views.View! platformView, Microsoft.Maui.Graphics.Paint? background) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Microsoft.Maui.Platform.ContentViewGroup! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this Android.Views.View! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this Android.Views.View! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewGroupExtensions.GetChildrenOfType(this Android.Views.ViewGroup! viewGroup) -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Platform.ViewGroupExtensions.GetFirstChildOfType(this Android.Views.ViewGroup! viewGroup) -> T? +static Microsoft.Maui.Platform.WebViewExtensions.Eval(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView, string! script) -> void +static Microsoft.Maui.Platform.WebViewExtensions.EvaluateJavaScript(this Android.Webkit.WebView! webView, Microsoft.Maui.EvaluateJavaScriptAsyncRequest! request) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoBack(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoForward(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateReload(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSettings(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView, bool javaScriptEnabled, bool domStorageEnabled) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this Android.Webkit.WebView! platformWebView, Microsoft.Maui.IWebView! webView, Microsoft.Maui.IWebViewDelegate? webViewDelegate) -> void +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.Resource.Animation.nav_default_enter_anim -> int +static Microsoft.Maui.Resource.Animation.nav_default_exit_anim -> int +static Microsoft.Maui.Resource.Animation.nav_default_pop_enter_anim -> int +static Microsoft.Maui.Resource.Animation.nav_default_pop_exit_anim -> int +static Microsoft.Maui.Resource.Attribute.actionBarSize -> int +static Microsoft.Maui.Resource.Attribute.colorSwitchThumbNormal -> int +static Microsoft.Maui.Resource.Attribute.maui_splash -> int +static Microsoft.Maui.Resource.Attribute.scrollViewStyle -> int +static Microsoft.Maui.Resource.Drawable.abc_ic_clear_material -> int +static Microsoft.Maui.Resource.Id.navigationlayout_appbar -> int +static Microsoft.Maui.Resource.Id.navigationlayout_bottomtabs -> int +static Microsoft.Maui.Resource.Id.navigationlayout_content -> int +static Microsoft.Maui.Resource.Id.navigationlayout_toptabs -> int +static Microsoft.Maui.Resource.Id.navigation_layout -> int +static Microsoft.Maui.Resource.Id.nav_host -> int +static Microsoft.Maui.Resource.Id.nav_host_fragment_container -> int +static Microsoft.Maui.Resource.Id.search_button -> int +static Microsoft.Maui.Resource.Id.search_close_btn -> int +static Microsoft.Maui.Resource.Layout.drawer_layout -> int +static Microsoft.Maui.Resource.Layout.fragment_backstack -> int +static Microsoft.Maui.Resource.Layout.navigationlayout -> int +static Microsoft.Maui.Resource.Style.Maui_MainTheme_NoActionBar -> int +static Microsoft.Maui.Resource.Style.scrollViewTheme -> int +static Microsoft.Maui.Resource.Style.ThemeOverlay_AppCompat_Light -> int +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.Handlers.ButtonHandler.DefaultPadding -> Microsoft.Maui.Thickness +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.PlatformTicker.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Graphics.MauiDrawable.DisposeBorder(bool disposing) -> void +virtual Microsoft.Maui.Handlers.DatePickerHandler.CreateDatePickerDialog(int year, int month, int day) -> Android.App.DatePickerDialog! +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.EntryHandler.GetClearButtonDrawable() -> Android.Graphics.Drawables.Drawable! +virtual Microsoft.Maui.Handlers.TimePickerHandler.CreateTimePickerDialog(int hour, int minute) -> Android.App.TimePickerDialog! +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.ImageSourceService.LoadDrawableAsync(Microsoft.Maui.IImageSource! imageSource, Android.Widget.ImageView! imageView, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +virtual Microsoft.Maui.MauiAppCompatActivity.AllowFragmentRestore.get -> bool +virtual Microsoft.Maui.MauiViewGroup.InputTransparent.get -> bool +virtual Microsoft.Maui.MauiViewGroup.InputTransparent.set -> void +virtual Microsoft.Maui.MauiViewGroup.MeasureAndLayout(int widthMeasureSpec, int heightMeasureSpec, int l, int t, int r, int b) -> void +virtual Microsoft.Maui.MauiViewGroup.SendBatchUpdate(float pivotX, float pivotY, int visibility, bool enabled, float opacity, float rotation, float rotationX, float rotationY, float scaleX, float scaleY, float translationX, float translationY) -> void +virtual Microsoft.Maui.Platform.BorderDrawable.DisposeBorder(bool disposing) -> void +virtual Microsoft.Maui.Platform.EnergySaverListenerManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Platform.NavigationRootManager.Disconnect() -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.AddFragmentDestination() -> AndroidX.Navigation.Fragment.FragmentNavigator.Destination! +virtual Microsoft.Maui.Platform.StackNavigationManager.Connect(Microsoft.Maui.IView! navigationView) -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.Disconnect() -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.OnDestinationChanged(AndroidX.Navigation.NavController! navController, AndroidX.Navigation.NavDestination! navDestination, Android.OS.Bundle! bundle) -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.OnNavigationViewFragmentDestroyed(AndroidX.Fragment.App.FragmentManager! fm, Microsoft.Maui.Platform.NavigationViewFragment! navHostPageFragment) -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.OnNavigationViewFragmentResumed(AndroidX.Fragment.App.FragmentManager! fm, Microsoft.Maui.Platform.NavigationViewFragment! navHostPageFragment) -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.RequestNavigation(Microsoft.Maui.NavigationRequest! e) -> void +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~Microsoft.Maui.Platform.MauiWebChromeClient.ChooseFile(Android.Webkit.IValueCallback filePathCallback, Android.Content.Intent intent, string title) -> bool +~Microsoft.Maui.Platform.MauiWebChromeClient.MauiWebChromeClient(Microsoft.Maui.Handlers.WebViewHandler handler) -> void +~Microsoft.Maui.Platform.WrapperView.WrapperView(Android.Content.Context context) -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Platform.MauiWebChromeClient.OnShowFileChooser(Android.Webkit.WebView webView, Android.Webkit.IValueCallback filePathCallback, Android.Webkit.WebChromeClient.FileChooserParams fileChooserParams) -> bool +~override Microsoft.Maui.Platform.WrapperView.DispatchDraw(Android.Graphics.Canvas canvas) -> void +~override Microsoft.Maui.Platform.WrapperView.DispatchTouchEvent(Android.Views.MotionEvent e) -> bool +~static Microsoft.Maui.Platform.ActivityResultCallbackRegistry.InvokeCallback(int requestCode, Android.App.Result resultCode, Android.Content.Intent data) -> void +~virtual Microsoft.Maui.Platform.MauiWebChromeClient.ParseResult(Android.App.Result resultCode, Android.Content.Intent data) -> Java.Lang.Object diff --git a/src/Core/src/PublicAPI/net-android/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/net-android/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..9aaa8cd2b1e6 --- /dev/null +++ b/src/Core/src/PublicAPI/net-android/PublicAPI.Unshipped.txt @@ -0,0 +1,5 @@ +#nullable enable +override Microsoft.Maui.Handlers.EditorHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.EntryHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.MauiAppCompatActivity.OnDestroy() -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size \ No newline at end of file diff --git a/src/Core/src/PublicAPI/net-ios/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/net-ios/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..0a813df1c481 --- /dev/null +++ b/src/Core/src/PublicAPI/net-ios/PublicAPI.Shipped.txt @@ -0,0 +1,2928 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.ImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.MauiUIApplicationDelegate.CreateMauiApp() -> Microsoft.Maui.Hosting.MauiApp! +const Microsoft.Maui.Platform.ButtonExtensions.AlmostZero = 1E-05 -> double +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Foundation.NSDictionary![]? states) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileImageSourceService.GetImageAsync(Microsoft.Maui.IFileImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontImageSourceService.GetImageAsync(Microsoft.Maui.IFontImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFont.get -> UIKit.UIFont! +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontManager.GetFont(Microsoft.Maui.Font font, double defaultFontSize = 0) -> UIKit.UIFont! +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiActivityIndicator! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> UIKit.UIButton! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiCheckBox! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiDatePicker! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiTextView! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiTextField! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> UIKit.UIView! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> UIKit.UIButton! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> UIKit.UIImageView! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPageControl! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiLabel! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> UIKit.IUIMenuBuilder! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> UIKit.UIMenu! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> UIKit.UIMenuElement! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> UIKit.UIMenu! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> UIKit.UIView! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPicker! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> UIKit.UIProgressView! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiRefreshView! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> UIKit.UIScrollView! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiSearchBar! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> UIKit.UITextField? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiShapeView! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> UIKit.UISlider! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> UIKit.UIStepper! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> UIKit.UIButton! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiSwipeView! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> UIKit.UISwitch! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiTimePicker! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> UIKit.UINavigationBar! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> WebKit.WKWebView! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> UIKit.UIWindow! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.PickerSource +Microsoft.Maui.Handlers.PickerSource.Handler.get -> Microsoft.Maui.Handlers.PickerHandler? +Microsoft.Maui.Handlers.PickerSource.Handler.set -> void +Microsoft.Maui.Handlers.PickerSource.PickerSource(Microsoft.Maui.Handlers.PickerHandler? handler) -> void +Microsoft.Maui.Handlers.PickerSource.SelectedIndex.get -> int +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> UIKit.UITextField? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> UIKit.UIView? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> UIKit.UIView? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> Microsoft.Maui.Platform.WrapperView? +Microsoft.Maui.Handlers.ViewHandler.ContainerView.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewController.get -> UIKit.UIViewController? +Microsoft.Maui.Handlers.ViewHandler.ViewController.set -> void +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFont.get -> UIKit.UIFont! +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontManager.GetFont(Microsoft.Maui.Font font, double defaultFontSize = 0) -> UIKit.UIFont! +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> Microsoft.Maui.Platform.LayoutView! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(UIKit.UIImage! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(UIKit.UIImage! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> UIKit.UIImage! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IPlatformViewHandler +Microsoft.Maui.IPlatformViewHandler.ContainerView.get -> UIKit.UIView? +Microsoft.Maui.IPlatformViewHandler.PlatformView.get -> UIKit.UIView? +Microsoft.Maui.IPlatformViewHandler.ViewController.get -> UIKit.UIViewController? +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.iOSLifecycle +Microsoft.Maui.LifecycleEvents.iOSLifecycle.ContinueUserActivity +Microsoft.Maui.LifecycleEvents.iOSLifecycle.DidEnterBackground +Microsoft.Maui.LifecycleEvents.iOSLifecycle.FinishedLaunching +Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnActivated +Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnResignActivation +Microsoft.Maui.LifecycleEvents.iOSLifecycle.OpenUrl +Microsoft.Maui.LifecycleEvents.iOSLifecycle.PerformActionForShortcutItem +Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneDidDisconnect +Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneWillConnect +Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillEnterForeground +Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillFinishLaunching +Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillTerminate +Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.iOSLifecycleExtensions +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiUIApplicationDelegate +Microsoft.Maui.MauiUIApplicationDelegate.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.MauiUIApplicationDelegate.Application.set -> void +Microsoft.Maui.MauiUIApplicationDelegate.MauiUIApplicationDelegate() -> void +Microsoft.Maui.MauiUIApplicationDelegate.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiUIApplicationDelegate.Services.set -> void +Microsoft.Maui.MauiUISceneDelegate +Microsoft.Maui.MauiUISceneDelegate.MauiUISceneDelegate() -> void +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ActivityIndicatorExtensions +Microsoft.Maui.Platform.ApplicationExtensions +Microsoft.Maui.Platform.AspectExtensions +Microsoft.Maui.Platform.AttributedStringExtensions +Microsoft.Maui.Platform.ButtonExtensions +Microsoft.Maui.Platform.CheckBoxExtensions +Microsoft.Maui.Platform.CollectionViewExtensions +Microsoft.Maui.Platform.ColorExtensions +Microsoft.Maui.Platform.ContainerViewController +Microsoft.Maui.Platform.ContainerViewController.ContainerViewController() -> void +Microsoft.Maui.Platform.ContainerViewController.Context.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Platform.ContainerViewController.Context.set -> void +Microsoft.Maui.Platform.ContainerViewController.CurrentPlatformView.get -> UIKit.UIView? +Microsoft.Maui.Platform.ContainerViewController.CurrentView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Platform.ContainerViewController.CurrentView.set -> void +Microsoft.Maui.Platform.ContainerViewController.Reload() -> void +Microsoft.Maui.Platform.ContentView +Microsoft.Maui.Platform.ContentView.ContentView() -> void +Microsoft.Maui.Platform.CoreGraphicsExtensions +Microsoft.Maui.Platform.Culture +Microsoft.Maui.Platform.DateExtensions +Microsoft.Maui.Platform.DatePickerExtensions +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.FlowDirectionExtensions +Microsoft.Maui.Platform.GraphicsViewExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.ImageViewExtensions +Microsoft.Maui.Platform.KeyboardExtensions +Microsoft.Maui.Platform.LabelExtensions +Microsoft.Maui.Platform.LayerExtensions +Microsoft.Maui.Platform.LayoutView +Microsoft.Maui.Platform.LayoutView.LayoutView() -> void +Microsoft.Maui.Platform.LayoutViewExtensions +Microsoft.Maui.Platform.MauiActivityIndicator +Microsoft.Maui.Platform.MauiActivityIndicator.MauiActivityIndicator(CoreGraphics.CGRect rect, Microsoft.Maui.IActivityIndicator? virtualView) -> void +Microsoft.Maui.Platform.MauiBoxView +Microsoft.Maui.Platform.MauiBoxView.MauiBoxView() -> void +Microsoft.Maui.Platform.MauiCALayer +Microsoft.Maui.Platform.MauiCALayer.MauiCALayer() -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderDash(float[]? borderDashArray, double borderDashOffset) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderLineCap(Microsoft.Maui.Graphics.LineCap lineCap) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderLineJoin(Microsoft.Maui.Graphics.LineJoin lineJoin) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderMiterLimit(float strokeMiterLimit) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderShape(Microsoft.Maui.Graphics.IShape? shape) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderWidth(double borderWidth) -> void +Microsoft.Maui.Platform.MauiCheckBox +Microsoft.Maui.Platform.MauiCheckBox.CheckBoxTintColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.Platform.MauiCheckBox.CheckBoxTintColor.set -> void +Microsoft.Maui.Platform.MauiCheckBox.CheckedChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiCheckBox.IsChecked.get -> bool +Microsoft.Maui.Platform.MauiCheckBox.IsChecked.set -> void +Microsoft.Maui.Platform.MauiCheckBox.IsEnabled.get -> bool +Microsoft.Maui.Platform.MauiCheckBox.IsEnabled.set -> void +Microsoft.Maui.Platform.MauiCheckBox.MauiCheckBox() -> void +Microsoft.Maui.Platform.MauiDatePicker +Microsoft.Maui.Platform.MauiDatePicker.MauiDatePicker() -> void +Microsoft.Maui.Platform.MauiImageView +Microsoft.Maui.Platform.MauiImageView.MauiImageView() -> void +Microsoft.Maui.Platform.MauiImageView.MauiImageView(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiImageView.WindowChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiLabel +Microsoft.Maui.Platform.MauiLabel.MauiLabel() -> void +Microsoft.Maui.Platform.MauiLabel.MauiLabel(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiLabel.TextInsets.get -> UIKit.UIEdgeInsets +Microsoft.Maui.Platform.MauiLabel.TextInsets.set -> void +Microsoft.Maui.Platform.MauiPageControl +Microsoft.Maui.Platform.MauiPageControl.IndicatorSize.get -> double +Microsoft.Maui.Platform.MauiPageControl.IndicatorSize.set -> void +Microsoft.Maui.Platform.MauiPageControl.IsSquare.get -> bool +Microsoft.Maui.Platform.MauiPageControl.IsSquare.set -> void +Microsoft.Maui.Platform.MauiPageControl.MauiPageControl() -> void +Microsoft.Maui.Platform.MauiPageControl.SetIndicatorView(Microsoft.Maui.IIndicatorView? indicatorView) -> void +Microsoft.Maui.Platform.MauiPageControl.UpdateIndicatorCount() -> void +Microsoft.Maui.Platform.MauiPageControl.UpdateIndicatorSize() -> void +Microsoft.Maui.Platform.MauiPageControl.UpdatePosition() -> void +Microsoft.Maui.Platform.MauiPicker +Microsoft.Maui.Platform.MauiPicker.MauiPicker(UIKit.UIPickerView? uIPickerView) -> void +Microsoft.Maui.Platform.MauiPicker.UIPickerView.get -> UIKit.UIPickerView? +Microsoft.Maui.Platform.MauiPicker.UIPickerView.set -> void +Microsoft.Maui.Platform.MauiRefreshView +Microsoft.Maui.Platform.MauiRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Platform.MauiRefreshView.IsRefreshing.set -> void +Microsoft.Maui.Platform.MauiRefreshView.MauiRefreshView() -> void +Microsoft.Maui.Platform.MauiRefreshView.RefreshControl.get -> UIKit.UIRefreshControl! +Microsoft.Maui.Platform.MauiRefreshView.UpdateContent(Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext? mauiContext) -> void +Microsoft.Maui.Platform.MauiRefreshView.UpdateIsEnabled(bool isRefreshViewEnabled) -> void +Microsoft.Maui.Platform.MauiSearchBar +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar() -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(Foundation.NSCoder! coder) -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(Foundation.NSObjectFlag t) -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(ObjCRuntime.NativeHandle handle) -> void +Microsoft.Maui.Platform.MauiSearchBar.TextSetOrChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiShapeView +Microsoft.Maui.Platform.MauiShapeView.MauiShapeView() -> void +Microsoft.Maui.Platform.MauiSwipeView +Microsoft.Maui.Platform.MauiSwipeView.MauiSwipeView() -> void +Microsoft.Maui.Platform.MauiTextField +Microsoft.Maui.Platform.MauiTextField.MauiTextField() -> void +Microsoft.Maui.Platform.MauiTextField.MauiTextField(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiTextField.TextPropertySet -> System.EventHandler? +Microsoft.Maui.Platform.MauiTextView +Microsoft.Maui.Platform.MauiTextView.AttributedPlaceholderText.get -> Foundation.NSAttributedString? +Microsoft.Maui.Platform.MauiTextView.AttributedPlaceholderText.set -> void +Microsoft.Maui.Platform.MauiTextView.MauiTextView() -> void +Microsoft.Maui.Platform.MauiTextView.MauiTextView(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiTextView.PlaceholderText.get -> string? +Microsoft.Maui.Platform.MauiTextView.PlaceholderText.set -> void +Microsoft.Maui.Platform.MauiTextView.PlaceholderTextColor.get -> UIKit.UIColor? +Microsoft.Maui.Platform.MauiTextView.PlaceholderTextColor.set -> void +Microsoft.Maui.Platform.MauiTextView.TextSetOrChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiTextView.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Platform.MauiTextView.VerticalTextAlignment.set -> void +Microsoft.Maui.Platform.MauiTimePicker +Microsoft.Maui.Platform.MauiTimePicker.Date.get -> Foundation.NSDate! +Microsoft.Maui.Platform.MauiTimePicker.DateSelected -> System.EventHandler? +Microsoft.Maui.Platform.MauiTimePicker.MauiTimePicker(System.Action! dateSelected) -> void +Microsoft.Maui.Platform.MauiTimePicker.Picker.get -> UIKit.UIDatePicker! +Microsoft.Maui.Platform.MauiTimePicker.UpdateTime(System.TimeSpan time) -> void +Microsoft.Maui.Platform.MauiView +Microsoft.Maui.Platform.MauiView.AdjustForSafeArea(CoreGraphics.CGRect bounds) -> CoreGraphics.CGRect +Microsoft.Maui.Platform.MauiView.MauiView() -> void +Microsoft.Maui.Platform.MauiView.View.get -> Microsoft.Maui.IView? +Microsoft.Maui.Platform.MauiView.View.set -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DecidePolicy(WebKit.WKWebView! webView, WebKit.WKNavigationAction! navigationAction, System.Action! decisionHandler) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DidFailNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation, Foundation.NSError! error) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DidFailProvisionalNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation, Foundation.NSError! error) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DidFinishNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.MauiWebViewNavigationDelegate(Microsoft.Maui.Handlers.WebViewHandler! handler) -> void +Microsoft.Maui.Platform.MauiWKWebView +Microsoft.Maui.Platform.MauiWKWebView.CurrentUrl.get -> string? +Microsoft.Maui.Platform.MauiWKWebView.DidFinishNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation) -> void +Microsoft.Maui.Platform.MauiWKWebView.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.Platform.MauiWKWebView.LoadUrl(string? url) -> void +Microsoft.Maui.Platform.MauiWKWebView.MauiWKWebView(CoreGraphics.CGRect frame, Microsoft.Maui.Handlers.WebViewHandler! handler) -> void +Microsoft.Maui.Platform.MenuExtensions +Microsoft.Maui.Platform.NoCaretField +Microsoft.Maui.Platform.NoCaretField.NoCaretField() -> void +Microsoft.Maui.Platform.PageViewController +Microsoft.Maui.Platform.PageViewController.PageViewController(Microsoft.Maui.IView! page, Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.Platform.PickerExtensions +Microsoft.Maui.Platform.PlatformTouchGraphicsView +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Connect(Microsoft.Maui.IGraphicsView! graphicsView) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Disconnect() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.PlatformTouchGraphicsView() -> void +Microsoft.Maui.Platform.ProgressBarExtensions +Microsoft.Maui.Platform.ReturnTypeExtensions +Microsoft.Maui.Platform.ScrollViewExtensions +Microsoft.Maui.Platform.SearchBarExtensions +Microsoft.Maui.Platform.SemanticExtensions +Microsoft.Maui.Platform.ShapeViewExtensions +Microsoft.Maui.Platform.SliderExtensions +Microsoft.Maui.Platform.StepperExtensions +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.SwitchExtensions +Microsoft.Maui.Platform.TextAlignmentExtensions +Microsoft.Maui.Platform.TextFieldExtensions +Microsoft.Maui.Platform.TextViewExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.TimePickerExtensions +Microsoft.Maui.Platform.TransformationExtensions +Microsoft.Maui.Platform.UIPageControlExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WebViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Dispose() -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.WrapperView() -> void +Microsoft.Maui.Platform.WrapperView.WrapperView(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.GetImageAsync(Microsoft.Maui.IStreamImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.CacheImage(Foundation.NSData! imageData, string! path) -> void +Microsoft.Maui.UriImageSourceService.GetCachedImage(string! path) -> Foundation.NSData! +Microsoft.Maui.UriImageSourceService.GetImageAsync(Microsoft.Maui.IUriImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.UriImageSourceService.IsImageCached(string! path) -> bool +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> UIKit.UIView? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Animations.PlatformTicker.IsRunning.get -> bool +override Microsoft.Maui.Animations.PlatformTicker.Start() -> void +override Microsoft.Maui.Animations.PlatformTicker.Stop() -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.FileImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.FontImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiActivityIndicator! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> UIKit.IUIApplicationDelegate! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.BorderHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.ButtonHandler.ConnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> UIKit.UIButton! +override Microsoft.Maui.Handlers.ButtonHandler.DisconnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.ConnectHandler(Microsoft.Maui.Platform.MauiCheckBox! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiCheckBox! +override Microsoft.Maui.Handlers.CheckBoxHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiCheckBox! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.ContentViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.ConnectHandler(Microsoft.Maui.Platform.MauiDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiDatePicker! +override Microsoft.Maui.Handlers.DatePickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.ConnectHandler(Microsoft.Maui.Platform.MauiTextView! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiTextView! +override Microsoft.Maui.Handlers.EditorHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiTextView! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.EntryHandler.ConnectHandler(Microsoft.Maui.Platform.MauiTextField! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiTextField! +override Microsoft.Maui.Handlers.EntryHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiTextField! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> UIKit.UIView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.ConnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> UIKit.UIButton! +override Microsoft.Maui.Handlers.ImageButtonHandler.DisconnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.ConnectHandler(UIKit.UIImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> UIKit.UIImageView! +override Microsoft.Maui.Handlers.ImageHandler.DisconnectHandler(UIKit.UIImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.IndicatorViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiPageControl! platformView) -> void +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPageControl! +override Microsoft.Maui.Handlers.IndicatorViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiPageControl! platformView) -> void +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiLabel! +override Microsoft.Maui.Handlers.LabelHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> Microsoft.Maui.Platform.LayoutView! +override Microsoft.Maui.Handlers.LayoutHandler.DisconnectHandler(Microsoft.Maui.Platform.LayoutView! platformView) -> void +override Microsoft.Maui.Handlers.LayoutHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> UIKit.IUIMenuBuilder! +override Microsoft.Maui.Handlers.MenuBarHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> UIKit.UIMenu! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> UIKit.UIMenuElement! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> UIKit.UIMenu! +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> UIKit.UIView! +override Microsoft.Maui.Handlers.PageHandler.ConnectHandler(Microsoft.Maui.Platform.ContentView! nativeView) -> void +override Microsoft.Maui.Handlers.PageHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.PageHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentView! nativeView) -> void +override Microsoft.Maui.Handlers.PickerHandler.ConnectHandler(Microsoft.Maui.Platform.MauiPicker! platformView) -> void +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPicker! +override Microsoft.Maui.Handlers.PickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiPicker! platformView) -> void +override Microsoft.Maui.Handlers.PickerSource.Dispose(bool disposing) -> void +override Microsoft.Maui.Handlers.PickerSource.GetComponentCount(UIKit.UIPickerView! picker) -> nint +override Microsoft.Maui.Handlers.PickerSource.GetRowsInComponent(UIKit.UIPickerView! pickerView, nint component) -> nint +override Microsoft.Maui.Handlers.PickerSource.GetTitle(UIKit.UIPickerView! picker, nint row, nint component) -> string! +override Microsoft.Maui.Handlers.PickerSource.Selected(UIKit.UIPickerView! picker, nint row, nint component) -> void +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> UIKit.UIProgressView! +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.RadioButtonHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiRefreshView! platformView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiRefreshView! +override Microsoft.Maui.Handlers.RefreshViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiRefreshView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.ConnectHandler(UIKit.UIScrollView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> UIKit.UIScrollView! +override Microsoft.Maui.Handlers.ScrollViewHandler.DisconnectHandler(UIKit.UIScrollView! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.ConnectHandler(Microsoft.Maui.Platform.MauiSearchBar! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiSearchBar! +override Microsoft.Maui.Handlers.SearchBarHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiSearchBar! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiShapeView! +override Microsoft.Maui.Handlers.ShapeViewHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.SliderHandler.ConnectHandler(UIKit.UISlider! platformView) -> void +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> UIKit.UISlider! +override Microsoft.Maui.Handlers.SliderHandler.DisconnectHandler(UIKit.UISlider! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.ConnectHandler(UIKit.UIStepper! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> UIKit.UIStepper! +override Microsoft.Maui.Handlers.StepperHandler.DisconnectHandler(UIKit.UIStepper! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> UIKit.UIButton! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiSwipeView! +override Microsoft.Maui.Handlers.SwipeViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwitchHandler.ConnectHandler(UIKit.UISwitch! platformView) -> void +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> UIKit.UISwitch! +override Microsoft.Maui.Handlers.SwitchHandler.DisconnectHandler(UIKit.UISwitch! platformView) -> void +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> UIKit.UIView! +override Microsoft.Maui.Handlers.TimePickerHandler.ConnectHandler(Microsoft.Maui.Platform.MauiTimePicker! platformView) -> void +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiTimePicker! +override Microsoft.Maui.Handlers.TimePickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiTimePicker! platformView) -> void +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> UIKit.UINavigationBar! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> WebKit.WKWebView! +override Microsoft.Maui.Handlers.WebViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> UIKit.UIWindow! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.MauiUIApplicationDelegate.BuildMenu(UIKit.IUIMenuBuilder! builder) -> void +override Microsoft.Maui.MauiUIApplicationDelegate.CanPerform(ObjCRuntime.Selector! action, Foundation.NSObject? withSender) -> bool +override Microsoft.Maui.MauiUIApplicationDelegate.RespondsToSelector(ObjCRuntime.Selector? sel) -> bool +override Microsoft.Maui.Platform.ContainerViewController.LoadView() -> void +override Microsoft.Maui.Platform.ContainerViewController.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Platform.ContentView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.ContentView.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.LayoutView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.LayoutView.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.LayoutView.SubviewAdded(UIKit.UIView! uiview) -> void +override Microsoft.Maui.Platform.LayoutView.WillRemoveSubview(UIKit.UIView! uiview) -> void +override Microsoft.Maui.Platform.MauiActivityIndicator.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiActivityIndicator.Draw(CoreGraphics.CGRect rect) -> void +override Microsoft.Maui.Platform.MauiActivityIndicator.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiCALayer.DrawInContext(CoreGraphics.CGContext! ctx) -> void +override Microsoft.Maui.Platform.MauiCALayer.LayoutSublayers() -> void +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityTraits.get -> UIKit.UIAccessibilityTrait +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityTraits.set -> void +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityValue.get -> string? +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityValue.set -> void +override Microsoft.Maui.Platform.MauiCheckBox.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiCheckBox.Enabled.get -> bool +override Microsoft.Maui.Platform.MauiCheckBox.Enabled.set -> void +override Microsoft.Maui.Platform.MauiCheckBox.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiCheckBox.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.MauiImageView.MovedToWindow() -> void +override Microsoft.Maui.Platform.MauiLabel.DrawText(CoreGraphics.CGRect rect) -> void +override Microsoft.Maui.Platform.MauiLabel.InvalidateIntrinsicContentSize() -> void +override Microsoft.Maui.Platform.MauiLabel.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.MauiPageControl.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiPageControl.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiPicker.CanPerform(ObjCRuntime.Selector! action, Foundation.NSObject? withSender) -> bool +override Microsoft.Maui.Platform.MauiSearchBar.Text.get -> string? +override Microsoft.Maui.Platform.MauiSearchBar.Text.set -> void +override Microsoft.Maui.Platform.MauiSwipeView.HitTest(CoreGraphics.CGPoint point, UIKit.UIEvent? uievent) -> UIKit.UIView! +override Microsoft.Maui.Platform.MauiSwipeView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiSwipeView.TouchesCancelled(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.MauiSwipeView.TouchesEnded(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.MauiTextField.AttributedText.get -> Foundation.NSAttributedString? +override Microsoft.Maui.Platform.MauiTextField.AttributedText.set -> void +override Microsoft.Maui.Platform.MauiTextField.Text.get -> string? +override Microsoft.Maui.Platform.MauiTextField.Text.set -> void +override Microsoft.Maui.Platform.MauiTextView.AttributedText.get -> Foundation.NSAttributedString! +override Microsoft.Maui.Platform.MauiTextView.AttributedText.set -> void +override Microsoft.Maui.Platform.MauiTextView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiTextView.Text.get -> string? +override Microsoft.Maui.Platform.MauiTextView.Text.set -> void +override Microsoft.Maui.Platform.MauiWKWebView.MovedToWindow() -> void +override Microsoft.Maui.Platform.NoCaretField.GetCaretRectForPosition(UIKit.UITextPosition? position) -> CoreGraphics.CGRect +override Microsoft.Maui.Platform.PageViewController.CreatePlatformView(Microsoft.Maui.IElement! view) -> UIKit.UIView! +override Microsoft.Maui.Platform.PageViewController.TraitCollectionDidChange(UIKit.UITraitCollection? previousTraitCollection) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesBegan(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesCancelled(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesEnded(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesMoved(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.WrapperView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.WrapperView.SetNeedsLayout() -> void +override Microsoft.Maui.Platform.WrapperView.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.StreamImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.UriImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.GradientPaint! gradientPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.ImagePaint! imagePaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.PatternPaint! patternPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.SolidPaint! solidPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToCALayer(this Microsoft.Maui.Graphics.Paint! paint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFormatting(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSourceAsync(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFlowDirection(Microsoft.Maui.Handlers.DatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFormatting(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFormatting(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapBackground(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapSourceAsync(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapBackground(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFormatting(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! view) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContentSize(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFormatting(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFlowDirection(Microsoft.Maui.Handlers.TimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapWKUIDelegate(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapMenuBar(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.TextWithinMaxLength(this Microsoft.Maui.ITextInput! textInput, string? text, Foundation.NSRange range, string! replacementString) -> bool +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.ContinueUserActivity(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.ContinueUserActivity! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.DidEnterBackground(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.DidEnterBackground! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.FinishedLaunching(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.FinishedLaunching! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.OnActivated(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnActivated! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.OnResignActivation(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnResignActivation! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.OpenUrl(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.OpenUrl! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.PerformActionForShortcutItem(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.PerformActionForShortcutItem! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.SceneDidDisconnect(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneDidDisconnect! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.SceneWillConnect(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneWillConnect! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.WillEnterForeground(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillEnterForeground! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.WillFinishLaunching(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillFinishLaunching! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.WillTerminate(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillTerminate! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleExtensions.AddiOS(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, System.Action! configureDelegate) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.MauiUIApplicationDelegate.Current.get -> Microsoft.Maui.MauiUIApplicationDelegate! +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateColor(this UIKit.UIActivityIndicatorView! activityIndicatorView, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateIsRunning(this UIKit.UIActivityIndicatorView! activityIndicatorView, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this UIKit.IUIApplicationDelegate! platformApplication, Microsoft.Maui.IApplication! application, UIKit.UIApplication! uiApplication, Foundation.NSDictionary! launchOptions) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this UIKit.IUIWindowSceneDelegate! sceneDelegate, Microsoft.Maui.IApplication! application, UIKit.UIScene! scene, UIKit.UISceneSession! session, UIKit.UISceneConnectionOptions! connectionOptions) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.RequestNewWindow(this UIKit.IUIApplicationDelegate! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.Handlers.OpenWindowRequest? args) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.ToUserActivity(this Microsoft.Maui.IPersistedState? state, string! userActivityType) -> Foundation.NSUserActivity! +static Microsoft.Maui.Platform.AspectExtensions.ToUIViewContentMode(this Microsoft.Maui.Aspect aspect) -> UIKit.UIViewContentMode +static Microsoft.Maui.Platform.AttributedStringExtensions.TrimToMaxLength(this Foundation.NSAttributedString? attributedString, int maxLength) -> Foundation.NSAttributedString? +static Microsoft.Maui.Platform.AttributedStringExtensions.WithCharacterSpacing(this Foundation.NSAttributedString! attributedString, double characterSpacing) -> Foundation.NSMutableAttributedString? +static Microsoft.Maui.Platform.AttributedStringExtensions.WithDecorations(this Foundation.NSAttributedString! attributedString, Microsoft.Maui.TextDecorations decorations) -> Foundation.NSMutableAttributedString? +static Microsoft.Maui.Platform.AttributedStringExtensions.WithLineHeight(this Foundation.NSAttributedString! attributedString, double lineHeight) -> Foundation.NSMutableAttributedString? +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCharacterSpacing(this UIKit.UIButton! platformButton, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCornerRadius(this UIKit.UIButton! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateFont(this UIKit.UIButton! platformButton, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this UIKit.UIButton! platformButton, Microsoft.Maui.IButton! button, Microsoft.Maui.Thickness? defaultPadding = null) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this UIKit.UIButton! platformButton, Microsoft.Maui.Thickness padding, Microsoft.Maui.Thickness? defaultPadding = null) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeColor(this UIKit.UIButton! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeThickness(this UIKit.UIButton! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateText(this UIKit.UIButton! platformButton, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateTextColor(this UIKit.UIButton! platformButton, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateForeground(this Microsoft.Maui.Platform.MauiCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateIsChecked(this Microsoft.Maui.Platform.MauiCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CollectionViewExtensions.UpdateHorizontalScrollBarVisibility(this UIKit.UICollectionView! collectionView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.CollectionViewExtensions.UpdateVerticalScrollBarVisibility(this UIKit.UICollectionView! collectionView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.ColorExtensions.FromPatternImageFromBundle(string! bgImage) -> UIKit.UIColor! +static Microsoft.Maui.Platform.ColorExtensions.ToCGColor(this Microsoft.Maui.Graphics.Color! color) -> CoreGraphics.CGColor! +static Microsoft.Maui.Platform.ColorExtensions.ToColor(this UIKit.UIColor! color) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color! color) -> UIKit.UIColor! +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color? color, Microsoft.Maui.Graphics.Color? defaultColor) -> UIKit.UIColor? +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color? color, UIKit.UIColor! defaultColor) -> UIKit.UIColor! +static Microsoft.Maui.Platform.CoreGraphicsExtensions.IsCloseTo(this CoreGraphics.CGSize size0, CoreGraphics.CGSize size1, System.Runtime.InteropServices.NFloat tolerance) -> bool +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToCGRect(this Microsoft.Maui.Graphics.Rect rect) -> CoreGraphics.CGRect +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToCGSize(this Microsoft.Maui.Graphics.Size size) -> CoreGraphics.CGSize +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToPoint(this CoreGraphics.CGPoint size) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToRectangle(this CoreGraphics.CGRect rect) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToSize(this CoreGraphics.CGSize size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Platform.Culture.CurrentCulture.get -> System.Globalization.CultureInfo! +static Microsoft.Maui.Platform.DateExtensions.ToDateTime(this Foundation.NSDate! date) -> System.DateTime +static Microsoft.Maui.Platform.DateExtensions.ToNSDate(this System.DateTime date) -> Foundation.NSDate! +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this UIKit.UIDatePicker! picker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this UIKit.UIDatePicker! picker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this UIKit.UIDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this UIKit.UIDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextAlignment(this Microsoft.Maui.Platform.MauiDatePicker! nativeDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIColor? defaultTextColor) -> void +static Microsoft.Maui.Platform.ElementExtensions.HasSceneManifest(this UIKit.IUIApplicationDelegate! platformApplication) -> bool +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this UIKit.IUIApplicationDelegate! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this UIKit.UIWindow! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> UIKit.UIView! +static Microsoft.Maui.Platform.ElementExtensions.ToUIViewController(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> UIKit.UIViewController! +static Microsoft.Maui.Platform.FlowDirectionExtensions.ToFlowDirection(this UIKit.UIUserInterfaceLayoutDirection direction) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Platform.GraphicsViewExtensions.UpdateDrawable(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! PlatformGraphicsView, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.Clear(this UIKit.UIImageView! imageView) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateAspect(this UIKit.UIImageView! imageView, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateIsAnimationPlaying(this UIKit.UIImageView! imageView, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateSource(this UIKit.UIImageView! imageView, UIKit.UIImage? uIImage, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateSourceAsync(this UIKit.UIImageView! imageView, Microsoft.Maui.IImageSourcePart! image, Microsoft.Maui.IImageSourceServiceProvider! services, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.Platform.KeyboardExtensions.ApplyKeyboard(this UIKit.IUITextInput! textInput, Microsoft.Maui.Keyboard! keyboard) -> void +static Microsoft.Maui.Platform.KeyboardExtensions.ApplyKeyboard(this UIKit.IUITextInputTraits! textInput, Microsoft.Maui.Keyboard! keyboard) -> void +static Microsoft.Maui.Platform.KeyboardExtensions.ToUIReturnKeyType(this Microsoft.Maui.ReturnType returnType) -> UIKit.UIReturnKeyType +static Microsoft.Maui.Platform.LabelExtensions.UpdateCharacterSpacing(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateFont(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateFont(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager, double defaultSize) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateHorizontalTextAlignment(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateLineHeight(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdatePadding(this Microsoft.Maui.Platform.MauiLabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateTextColor(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle, UIKit.UIColor? defaultColor = null) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateTextDecorations(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateVerticalTextAlignment(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LayerExtensions.InsertBackgroundLayer(this UIKit.UIView! control, CoreAnimation.CALayer! backgroundLayer, int index = -1) -> void +static Microsoft.Maui.Platform.LayerExtensions.RemoveBackgroundLayer(this UIKit.UIView! control) -> void +static Microsoft.Maui.Platform.LayoutViewExtensions.UpdateClipsToBounds(this Microsoft.Maui.Platform.LayoutView! layoutView, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Platform.MenuExtensions.SendClicked(this UIKit.UICommand! uICommand) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateSelectedIndex(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitle(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitleColor(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgress(this UIKit.UIProgressView! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgressColor(this UIKit.UIProgressView! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ReturnTypeExtensions.ToPlatform(this Microsoft.Maui.ReturnType returnType) -> UIKit.UIReturnKeyType +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateContent(this UIKit.UIScrollView! scrollView, Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateContentSize(this UIKit.UIScrollView! scrollView, Microsoft.Maui.Graphics.Size contentSize) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateHorizontalScrollBarVisibility(this UIKit.UIScrollView! scrollView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateIsEnabled(this UIKit.UIScrollView! nativeScrollView, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateVerticalScrollBarVisibility(this UIKit.UIScrollView! scrollView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateCancelButton(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateFont(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateFont(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsEnabled(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsReadOnly(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsTextPredictionEnabled(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateMaxLength(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdatePlaceholder(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateText(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateVerticalTextAlignment(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateVerticalTextAlignment(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SemanticExtensions.UpdateSemantics(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.InvalidateShape(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.UpdateShape(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximum(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximumTrackColor(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimum(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimumTrackColor(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbColor(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbImageSourceAsync(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider, Microsoft.Maui.IImageSourceServiceProvider! provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.SliderExtensions.UpdateValue(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateIncrement(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMaximum(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMinimum(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateValue(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.SwitchExtensions.UpdateIsOn(this UIKit.UISwitch! uiSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateThumbColor(this UIKit.UISwitch! uiSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateTrackColor(this UIKit.UISwitch! uiSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.TextAlignmentExtensions.AdjustForFlowDirection(this UIKit.UITextAlignment textAlignment, Microsoft.Maui.IView! view) -> UIKit.UITextAlignment +static Microsoft.Maui.Platform.TextAlignmentExtensions.ToPlatformHorizontal(this Microsoft.Maui.TextAlignment alignment) -> UIKit.UITextAlignment +static Microsoft.Maui.Platform.TextAlignmentExtensions.ToPlatformHorizontal(this Microsoft.Maui.TextAlignment alignment, Microsoft.Maui.IView! view) -> UIKit.UITextAlignment +static Microsoft.Maui.Platform.TextAlignmentExtensions.ToPlatformVertical(this Microsoft.Maui.TextAlignment alignment) -> UIKit.UIControlContentVerticalAlignment +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateCharacterSpacing(this UIKit.UITextField! textField, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateClearButtonVisibility(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateCursorPosition(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateFont(this UIKit.UITextField! textField, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateHorizontalTextAlignment(this UIKit.UITextField! textField, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsPassword(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsReadOnly(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsTextPredictionEnabled(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateKeyboard(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateMaxLength(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdatePlaceholder(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry, Microsoft.Maui.Graphics.Color? defaultPlaceholderColor = null) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateReturnType(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateSelectionLength(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateText(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateTextColor(this UIKit.UITextField! textField, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateVerticalTextAlignment(this UIKit.UITextField! textField, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateCharacterSpacing(this UIKit.UITextView! textView, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateCursorPosition(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateFont(this UIKit.UITextView! textView, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateHorizontalTextAlignment(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateIsReadOnly(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateIsTextPredictionEnabled(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateKeyboard(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateMaxLength(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdatePlaceholder(this Microsoft.Maui.Platform.MauiTextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdatePlaceholderColor(this Microsoft.Maui.Platform.MauiTextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateSelectionLength(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateText(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateTextColor(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateVerticalTextAlignment(this Microsoft.Maui.Platform.MauiTextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this UIKit.UIDatePicker! picker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTextAlignment(this Microsoft.Maui.Platform.MauiTimePicker! textField, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this UIKit.UIDatePicker! picker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTransformation(this UIKit.UIView! platformView, Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTransformation(this UIKit.UIView! platformView, Microsoft.Maui.IView? view, CoreAnimation.CALayer? layer, CoreGraphics.CGPoint? originalAnchor) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateCurrentPage(this UIKit.UIPageControl! pageControl, int currentPage) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateCurrentPagesIndicatorTintColor(this UIKit.UIPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateHideSingle(this UIKit.UIPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateIndicatorShape(this Microsoft.Maui.Platform.MauiPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateIndicatorSize(this Microsoft.Maui.Platform.MauiPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdatePages(this UIKit.UIPageControl! pageControl, int pageCount) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdatePagesIndicatorTintColor(this UIKit.UIPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.ViewExtensions.ClearSubviews(this UIKit.UIView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ConvertToImage(this UIKit.UIView! view) -> UIKit.UIImage? +static Microsoft.Maui.Platform.ViewExtensions.FindDescendantView(this UIKit.UIView! view) -> T? +static Microsoft.Maui.Platform.ViewExtensions.Focus(this UIKit.UIView! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.GetNavigationController(this UIKit.UIView! view) -> UIKit.UINavigationController? +static Microsoft.Maui.Platform.ViewExtensions.IndexOfSubview(this UIKit.UIView! platformView, UIKit.UIView! subview) -> int +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IPlatformViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Microsoft.Maui.Platform.ContentView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this UIKit.UIView! platformView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this UIKit.UIView! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundLayerFrame(this UIKit.UIView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFrame(UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this UIKit.UIView! platformView, bool isReadOnly, bool inputTransparent) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this UIKit.UIView! platformView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this UIKit.UIView! platformView, Microsoft.Maui.Visibility visibility) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.WebViewExtensions.Eval(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView, string! script) -> void +static Microsoft.Maui.Platform.WebViewExtensions.EvaluateJavaScript(this WebKit.WKWebView! webView, Microsoft.Maui.EvaluateJavaScriptAsyncRequest! request) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoBack(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoForward(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateReload(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView, Microsoft.Maui.IWebViewDelegate? webViewDelegate) -> void +static Microsoft.Maui.Platform.WindowExtensions.GetDisplayDensity(this UIKit.UIWindow! uiWindow) -> float +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.Handlers.ButtonHandler.DefaultPadding -> Microsoft.Maui.Thickness +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.CheckBoxHandler.MinimumSize.get -> float +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.EntryHandler.OnShouldReturn(UIKit.UITextField! view) -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.Handlers.WebViewHandler.MinimumSize.get -> float +virtual Microsoft.Maui.MauiUIApplicationDelegate.ContinueUserActivity(UIKit.UIApplication! application, Foundation.NSUserActivity! userActivity, UIKit.UIApplicationRestorationHandler! completionHandler) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.DidEnterBackground(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.FinishedLaunching(UIKit.UIApplication! application, Foundation.NSDictionary! launchOptions) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.GetConfiguration(UIKit.UIApplication! application, UIKit.UISceneSession! connectingSceneSession, UIKit.UISceneConnectionOptions! options) -> UIKit.UISceneConfiguration! +virtual Microsoft.Maui.MauiUIApplicationDelegate.OnActivated(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.OnResignActivation(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.OpenUrl(UIKit.UIApplication! application, Foundation.NSUrl! url, Foundation.NSDictionary! options) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.PerformActionForShortcutItem(UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.WillEnterForeground(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.WillFinishLaunching(UIKit.UIApplication! application, Foundation.NSDictionary! launchOptions) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.WillTerminate(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.Window.get -> UIKit.UIWindow? +virtual Microsoft.Maui.MauiUIApplicationDelegate.Window.set -> void +virtual Microsoft.Maui.MauiUISceneDelegate.DidDisconnect(UIKit.UIScene! scene) -> void +virtual Microsoft.Maui.MauiUISceneDelegate.GetStateRestorationActivity(UIKit.UIScene! scene) -> Foundation.NSUserActivity? +virtual Microsoft.Maui.MauiUISceneDelegate.WillConnect(UIKit.UIScene! scene, UIKit.UISceneSession! session, UIKit.UISceneConnectionOptions! connectionOptions) -> void +virtual Microsoft.Maui.MauiUISceneDelegate.Window.get -> UIKit.UIWindow? +virtual Microsoft.Maui.MauiUISceneDelegate.Window.set -> void +virtual Microsoft.Maui.Platform.ContainerViewController.CreatePlatformView(Microsoft.Maui.IElement! view) -> UIKit.UIView! +virtual Microsoft.Maui.Platform.MauiCheckBox.GetCheckBoxImage() -> UIKit.UIImage! +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object diff --git a/src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..5ecb69d73a8a --- /dev/null +++ b/src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt @@ -0,0 +1,14 @@ +#nullable enable +override Microsoft.Maui.Handlers.BorderHandler.ConnectHandler(Microsoft.Maui.Platform.ContentView! platformView) -> void +override Microsoft.Maui.Handlers.BorderHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ScrollViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.EditorHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.EntryHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Platform.ContentView.SetNeedsLayout() -> void +override Microsoft.Maui.Platform.LayoutView.HitTest(CoreGraphics.CGPoint point, UIKit.UIEvent? uievent) -> UIKit.UIView! +override Microsoft.Maui.Platform.LayoutView.SetNeedsLayout() -> void +override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.get -> bool +override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.set -> void +override Microsoft.Maui.Platform.MauiTextField.SelectedTextRange.get -> UIKit.UITextRange? +override Microsoft.Maui.Platform.MauiTextField.SelectedTextRange.set -> void diff --git a/src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6f71b7ff0afa --- /dev/null +++ b/src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt @@ -0,0 +1,2927 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.ImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.MauiUIApplicationDelegate.CreateMauiApp() -> Microsoft.Maui.Hosting.MauiApp! +const Microsoft.Maui.Platform.ButtonExtensions.AlmostZero = 1E-05 -> double +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Foundation.NSDictionary![]? states) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileImageSourceService.GetImageAsync(Microsoft.Maui.IFileImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontImageSourceService.GetImageAsync(Microsoft.Maui.IFontImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFont.get -> UIKit.UIFont! +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontManager.GetFont(Microsoft.Maui.Font font, double defaultFontSize = 0) -> UIKit.UIFont! +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiActivityIndicator! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> UIKit.UIButton! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiCheckBox! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> UIKit.UIDatePicker! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiTextView! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiTextField! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> UIKit.UIView! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> UIKit.UIButton! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> UIKit.UIImageView! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPageControl! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiLabel! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> UIKit.IUIMenuBuilder! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> UIKit.UIMenu! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> UIKit.UIMenuElement! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> UIKit.UIMenu! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> UIKit.UIView! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPicker! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> UIKit.UIProgressView! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiRefreshView! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> UIKit.UIScrollView! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiSearchBar! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> UIKit.UITextField? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiShapeView! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> UIKit.UISlider! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> UIKit.UIStepper! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> UIKit.UIButton! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentView! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiSwipeView! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> UIKit.UISwitch! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> UIKit.UIDatePicker! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> UIKit.UINavigationBar! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> WebKit.WKWebView! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> UIKit.UIWindow! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.PickerSource +Microsoft.Maui.Handlers.PickerSource.Handler.get -> Microsoft.Maui.Handlers.PickerHandler? +Microsoft.Maui.Handlers.PickerSource.Handler.set -> void +Microsoft.Maui.Handlers.PickerSource.PickerSource(Microsoft.Maui.Handlers.PickerHandler? handler) -> void +Microsoft.Maui.Handlers.PickerSource.SelectedIndex.get -> int +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> UIKit.UITextField? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> UIKit.UIView? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> UIKit.UIView? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> Microsoft.Maui.Platform.WrapperView? +Microsoft.Maui.Handlers.ViewHandler.ContainerView.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewController.get -> UIKit.UIViewController? +Microsoft.Maui.Handlers.ViewHandler.ViewController.set -> void +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFont.get -> UIKit.UIFont! +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontManager.GetFont(Microsoft.Maui.Font font, double defaultFontSize = 0) -> UIKit.UIFont! +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> Microsoft.Maui.Platform.LayoutView! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(UIKit.UIImage! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(UIKit.UIImage! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> UIKit.UIImage! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IPlatformViewHandler +Microsoft.Maui.IPlatformViewHandler.ContainerView.get -> UIKit.UIView? +Microsoft.Maui.IPlatformViewHandler.PlatformView.get -> UIKit.UIView? +Microsoft.Maui.IPlatformViewHandler.ViewController.get -> UIKit.UIViewController? +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.iOSLifecycle +Microsoft.Maui.LifecycleEvents.iOSLifecycle.ContinueUserActivity +Microsoft.Maui.LifecycleEvents.iOSLifecycle.DidEnterBackground +Microsoft.Maui.LifecycleEvents.iOSLifecycle.FinishedLaunching +Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnActivated +Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnResignActivation +Microsoft.Maui.LifecycleEvents.iOSLifecycle.OpenUrl +Microsoft.Maui.LifecycleEvents.iOSLifecycle.PerformActionForShortcutItem +Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneDidDisconnect +Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneWillConnect +Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillEnterForeground +Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillFinishLaunching +Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillTerminate +Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.iOSLifecycleExtensions +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiUIApplicationDelegate +Microsoft.Maui.MauiUIApplicationDelegate.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.MauiUIApplicationDelegate.Application.set -> void +Microsoft.Maui.MauiUIApplicationDelegate.MauiUIApplicationDelegate() -> void +Microsoft.Maui.MauiUIApplicationDelegate.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiUIApplicationDelegate.Services.set -> void +Microsoft.Maui.MauiUISceneDelegate +Microsoft.Maui.MauiUISceneDelegate.MauiUISceneDelegate() -> void +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ActivityIndicatorExtensions +Microsoft.Maui.Platform.ApplicationExtensions +Microsoft.Maui.Platform.AspectExtensions +Microsoft.Maui.Platform.AttributedStringExtensions +Microsoft.Maui.Platform.ButtonExtensions +Microsoft.Maui.Platform.CheckBoxExtensions +Microsoft.Maui.Platform.CollectionViewExtensions +Microsoft.Maui.Platform.ColorExtensions +Microsoft.Maui.Platform.ContainerViewController +Microsoft.Maui.Platform.ContainerViewController.ContainerViewController() -> void +Microsoft.Maui.Platform.ContainerViewController.Context.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Platform.ContainerViewController.Context.set -> void +Microsoft.Maui.Platform.ContainerViewController.CurrentPlatformView.get -> UIKit.UIView? +Microsoft.Maui.Platform.ContainerViewController.CurrentView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Platform.ContainerViewController.CurrentView.set -> void +Microsoft.Maui.Platform.ContainerViewController.Reload() -> void +Microsoft.Maui.Platform.ContentView +Microsoft.Maui.Platform.ContentView.ContentView() -> void +Microsoft.Maui.Platform.CoreGraphicsExtensions +Microsoft.Maui.Platform.Culture +Microsoft.Maui.Platform.DateExtensions +Microsoft.Maui.Platform.DatePickerExtensions +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.FlowDirectionExtensions +Microsoft.Maui.Platform.GraphicsViewExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.ImageViewExtensions +Microsoft.Maui.Platform.KeyboardExtensions +Microsoft.Maui.Platform.LabelExtensions +Microsoft.Maui.Platform.LayerExtensions +Microsoft.Maui.Platform.LayoutView +Microsoft.Maui.Platform.LayoutView.LayoutView() -> void +Microsoft.Maui.Platform.LayoutViewExtensions +Microsoft.Maui.Platform.MauiActivityIndicator +Microsoft.Maui.Platform.MauiActivityIndicator.MauiActivityIndicator(CoreGraphics.CGRect rect, Microsoft.Maui.IActivityIndicator? virtualView) -> void +Microsoft.Maui.Platform.MauiBoxView +Microsoft.Maui.Platform.MauiBoxView.MauiBoxView() -> void +Microsoft.Maui.Platform.MauiCALayer +Microsoft.Maui.Platform.MauiCALayer.MauiCALayer() -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBackground(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderBrush(Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderDash(float[]? borderDashArray, double borderDashOffset) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderLineCap(Microsoft.Maui.Graphics.LineCap lineCap) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderLineJoin(Microsoft.Maui.Graphics.LineJoin lineJoin) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderMiterLimit(float strokeMiterLimit) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderShape(Microsoft.Maui.Graphics.IShape? shape) -> void +Microsoft.Maui.Platform.MauiCALayer.SetBorderWidth(double borderWidth) -> void +Microsoft.Maui.Platform.MauiCheckBox +Microsoft.Maui.Platform.MauiCheckBox.CheckBoxTintColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.Platform.MauiCheckBox.CheckBoxTintColor.set -> void +Microsoft.Maui.Platform.MauiCheckBox.CheckedChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiCheckBox.IsChecked.get -> bool +Microsoft.Maui.Platform.MauiCheckBox.IsChecked.set -> void +Microsoft.Maui.Platform.MauiCheckBox.IsEnabled.get -> bool +Microsoft.Maui.Platform.MauiCheckBox.IsEnabled.set -> void +Microsoft.Maui.Platform.MauiCheckBox.MauiCheckBox() -> void +Microsoft.Maui.Platform.MauiDatePicker +Microsoft.Maui.Platform.MauiDatePicker.MauiDatePicker() -> void +Microsoft.Maui.Platform.MauiImageView +Microsoft.Maui.Platform.MauiImageView.MauiImageView() -> void +Microsoft.Maui.Platform.MauiImageView.MauiImageView(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiImageView.WindowChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiLabel +Microsoft.Maui.Platform.MauiLabel.MauiLabel() -> void +Microsoft.Maui.Platform.MauiLabel.MauiLabel(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiLabel.TextInsets.get -> UIKit.UIEdgeInsets +Microsoft.Maui.Platform.MauiLabel.TextInsets.set -> void +Microsoft.Maui.Platform.MauiPageControl +Microsoft.Maui.Platform.MauiPageControl.IndicatorSize.get -> double +Microsoft.Maui.Platform.MauiPageControl.IndicatorSize.set -> void +Microsoft.Maui.Platform.MauiPageControl.IsSquare.get -> bool +Microsoft.Maui.Platform.MauiPageControl.IsSquare.set -> void +Microsoft.Maui.Platform.MauiPageControl.MauiPageControl() -> void +Microsoft.Maui.Platform.MauiPageControl.SetIndicatorView(Microsoft.Maui.IIndicatorView? indicatorView) -> void +Microsoft.Maui.Platform.MauiPageControl.UpdateIndicatorCount() -> void +Microsoft.Maui.Platform.MauiPageControl.UpdateIndicatorSize() -> void +Microsoft.Maui.Platform.MauiPageControl.UpdatePosition() -> void +Microsoft.Maui.Platform.MauiPicker +Microsoft.Maui.Platform.MauiPicker.MauiPicker(UIKit.UIPickerView? uIPickerView) -> void +Microsoft.Maui.Platform.MauiPicker.UIPickerView.get -> UIKit.UIPickerView? +Microsoft.Maui.Platform.MauiPicker.UIPickerView.set -> void +Microsoft.Maui.Platform.MauiRefreshView +Microsoft.Maui.Platform.MauiRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.Platform.MauiRefreshView.IsRefreshing.set -> void +Microsoft.Maui.Platform.MauiRefreshView.MauiRefreshView() -> void +Microsoft.Maui.Platform.MauiRefreshView.RefreshControl.get -> UIKit.UIRefreshControl! +Microsoft.Maui.Platform.MauiRefreshView.UpdateContent(Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext? mauiContext) -> void +Microsoft.Maui.Platform.MauiRefreshView.UpdateIsEnabled(bool isRefreshViewEnabled) -> void +Microsoft.Maui.Platform.MauiSearchBar +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar() -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(Foundation.NSCoder! coder) -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(Foundation.NSObjectFlag t) -> void +Microsoft.Maui.Platform.MauiSearchBar.MauiSearchBar(ObjCRuntime.NativeHandle handle) -> void +Microsoft.Maui.Platform.MauiSearchBar.TextSetOrChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiShapeView +Microsoft.Maui.Platform.MauiShapeView.MauiShapeView() -> void +Microsoft.Maui.Platform.MauiSwipeView +Microsoft.Maui.Platform.MauiSwipeView.MauiSwipeView() -> void +Microsoft.Maui.Platform.MauiTextField +Microsoft.Maui.Platform.MauiTextField.MauiTextField() -> void +Microsoft.Maui.Platform.MauiTextField.MauiTextField(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiTextField.TextPropertySet -> System.EventHandler? +Microsoft.Maui.Platform.MauiTextView +Microsoft.Maui.Platform.MauiTextView.AttributedPlaceholderText.get -> Foundation.NSAttributedString? +Microsoft.Maui.Platform.MauiTextView.AttributedPlaceholderText.set -> void +Microsoft.Maui.Platform.MauiTextView.MauiTextView() -> void +Microsoft.Maui.Platform.MauiTextView.MauiTextView(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.Platform.MauiTextView.PlaceholderText.get -> string? +Microsoft.Maui.Platform.MauiTextView.PlaceholderText.set -> void +Microsoft.Maui.Platform.MauiTextView.PlaceholderTextColor.get -> UIKit.UIColor? +Microsoft.Maui.Platform.MauiTextView.PlaceholderTextColor.set -> void +Microsoft.Maui.Platform.MauiTextView.TextSetOrChanged -> System.EventHandler? +Microsoft.Maui.Platform.MauiTextView.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.Platform.MauiTextView.VerticalTextAlignment.set -> void +Microsoft.Maui.Platform.MauiTimePicker +Microsoft.Maui.Platform.MauiTimePicker.Date.get -> Foundation.NSDate! +Microsoft.Maui.Platform.MauiTimePicker.MauiTimePicker() -> void +Microsoft.Maui.Platform.MauiTimePicker.Picker.get -> UIKit.UIDatePicker! +Microsoft.Maui.Platform.MauiTimePicker.UpdateTime(System.TimeSpan time) -> void +Microsoft.Maui.Platform.MauiView +Microsoft.Maui.Platform.MauiView.AdjustForSafeArea(CoreGraphics.CGRect bounds) -> CoreGraphics.CGRect +Microsoft.Maui.Platform.MauiView.MauiView() -> void +Microsoft.Maui.Platform.MauiView.View.get -> Microsoft.Maui.IView? +Microsoft.Maui.Platform.MauiView.View.set -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DecidePolicy(WebKit.WKWebView! webView, WebKit.WKNavigationAction! navigationAction, System.Action! decisionHandler) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DidFailNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation, Foundation.NSError! error) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DidFailProvisionalNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation, Foundation.NSError! error) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.DidFinishNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation) -> void +Microsoft.Maui.Platform.MauiWebViewNavigationDelegate.MauiWebViewNavigationDelegate(Microsoft.Maui.Handlers.WebViewHandler! handler) -> void +Microsoft.Maui.Platform.MauiWKWebView +Microsoft.Maui.Platform.MauiWKWebView.CurrentUrl.get -> string? +Microsoft.Maui.Platform.MauiWKWebView.DidFinishNavigation(WebKit.WKWebView! webView, WebKit.WKNavigation! navigation) -> void +Microsoft.Maui.Platform.MauiWKWebView.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.Platform.MauiWKWebView.LoadUrl(string? url) -> void +Microsoft.Maui.Platform.MauiWKWebView.MauiWKWebView(CoreGraphics.CGRect frame, Microsoft.Maui.Handlers.WebViewHandler! handler) -> void +Microsoft.Maui.Platform.MenuExtensions +Microsoft.Maui.Platform.NoCaretField +Microsoft.Maui.Platform.NoCaretField.NoCaretField() -> void +Microsoft.Maui.Platform.PageViewController +Microsoft.Maui.Platform.PageViewController.PageViewController(Microsoft.Maui.IView! page, Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.Platform.PickerExtensions +Microsoft.Maui.Platform.PlatformTouchGraphicsView +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Connect(Microsoft.Maui.IGraphicsView! graphicsView) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Disconnect() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.PlatformTouchGraphicsView() -> void +Microsoft.Maui.Platform.ProgressBarExtensions +Microsoft.Maui.Platform.ReturnTypeExtensions +Microsoft.Maui.Platform.ScrollViewExtensions +Microsoft.Maui.Platform.SearchBarExtensions +Microsoft.Maui.Platform.SemanticExtensions +Microsoft.Maui.Platform.ShapeViewExtensions +Microsoft.Maui.Platform.SliderExtensions +Microsoft.Maui.Platform.StepperExtensions +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.SwitchExtensions +Microsoft.Maui.Platform.TextAlignmentExtensions +Microsoft.Maui.Platform.TextFieldExtensions +Microsoft.Maui.Platform.TextViewExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.TimePickerExtensions +Microsoft.Maui.Platform.TransformationExtensions +Microsoft.Maui.Platform.UIPageControlExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WebViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Dispose() -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.WrapperView() -> void +Microsoft.Maui.Platform.WrapperView.WrapperView(CoreGraphics.CGRect frame) -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.GetImageAsync(Microsoft.Maui.IStreamImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.CacheImage(Foundation.NSData! imageData, string! path) -> void +Microsoft.Maui.UriImageSourceService.GetCachedImage(string! path) -> Foundation.NSData! +Microsoft.Maui.UriImageSourceService.GetImageAsync(Microsoft.Maui.IUriImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.UriImageSourceService.IsImageCached(string! path) -> bool +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> UIKit.UIView? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Animations.PlatformTicker.IsRunning.get -> bool +override Microsoft.Maui.Animations.PlatformTicker.Start() -> void +override Microsoft.Maui.Animations.PlatformTicker.Stop() -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.FileImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.FontImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiActivityIndicator! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> UIKit.IUIApplicationDelegate! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.BorderHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.ButtonHandler.ConnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> UIKit.UIButton! +override Microsoft.Maui.Handlers.ButtonHandler.DisconnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.ConnectHandler(Microsoft.Maui.Platform.MauiCheckBox! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiCheckBox! +override Microsoft.Maui.Handlers.CheckBoxHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiCheckBox! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.ContentViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.ConnectHandler(UIKit.UIDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> UIKit.UIDatePicker! +override Microsoft.Maui.Handlers.DatePickerHandler.DisconnectHandler(UIKit.UIDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.ConnectHandler(Microsoft.Maui.Platform.MauiTextView! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiTextView! +override Microsoft.Maui.Handlers.EditorHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiTextView! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.EntryHandler.ConnectHandler(Microsoft.Maui.Platform.MauiTextField! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiTextField! +override Microsoft.Maui.Handlers.EntryHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiTextField! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> UIKit.UIView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.ConnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> UIKit.UIButton! +override Microsoft.Maui.Handlers.ImageButtonHandler.DisconnectHandler(UIKit.UIButton! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.ConnectHandler(UIKit.UIImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> UIKit.UIImageView! +override Microsoft.Maui.Handlers.ImageHandler.DisconnectHandler(UIKit.UIImageView! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.IndicatorViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiPageControl! platformView) -> void +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPageControl! +override Microsoft.Maui.Handlers.IndicatorViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiPageControl! platformView) -> void +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiLabel! +override Microsoft.Maui.Handlers.LabelHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> Microsoft.Maui.Platform.LayoutView! +override Microsoft.Maui.Handlers.LayoutHandler.DisconnectHandler(Microsoft.Maui.Platform.LayoutView! platformView) -> void +override Microsoft.Maui.Handlers.LayoutHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> UIKit.IUIMenuBuilder! +override Microsoft.Maui.Handlers.MenuBarHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> UIKit.UIMenu! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> UIKit.UIMenuElement! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> UIKit.UIMenu! +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> UIKit.UIView! +override Microsoft.Maui.Handlers.PageHandler.ConnectHandler(Microsoft.Maui.Platform.ContentView! nativeView) -> void +override Microsoft.Maui.Handlers.PageHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.PageHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentView! nativeView) -> void +override Microsoft.Maui.Handlers.PickerHandler.ConnectHandler(Microsoft.Maui.Platform.MauiPicker! platformView) -> void +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPicker! +override Microsoft.Maui.Handlers.PickerHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiPicker! platformView) -> void +override Microsoft.Maui.Handlers.PickerSource.Dispose(bool disposing) -> void +override Microsoft.Maui.Handlers.PickerSource.GetComponentCount(UIKit.UIPickerView! picker) -> nint +override Microsoft.Maui.Handlers.PickerSource.GetRowsInComponent(UIKit.UIPickerView! pickerView, nint component) -> nint +override Microsoft.Maui.Handlers.PickerSource.GetTitle(UIKit.UIPickerView! picker, nint row, nint component) -> string! +override Microsoft.Maui.Handlers.PickerSource.Selected(UIKit.UIPickerView! picker, nint row, nint component) -> void +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> UIKit.UIProgressView! +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.RadioButtonHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiRefreshView! platformView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiRefreshView! +override Microsoft.Maui.Handlers.RefreshViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiRefreshView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.ConnectHandler(UIKit.UIScrollView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> UIKit.UIScrollView! +override Microsoft.Maui.Handlers.ScrollViewHandler.DisconnectHandler(UIKit.UIScrollView! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.ConnectHandler(Microsoft.Maui.Platform.MauiSearchBar! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiSearchBar! +override Microsoft.Maui.Handlers.SearchBarHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiSearchBar! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiShapeView! +override Microsoft.Maui.Handlers.ShapeViewHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.SliderHandler.ConnectHandler(UIKit.UISlider! platformView) -> void +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> UIKit.UISlider! +override Microsoft.Maui.Handlers.SliderHandler.DisconnectHandler(UIKit.UISlider! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.ConnectHandler(UIKit.UIStepper! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> UIKit.UIStepper! +override Microsoft.Maui.Handlers.StepperHandler.DisconnectHandler(UIKit.UIStepper! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> UIKit.UIButton! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentView! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiSwipeView! +override Microsoft.Maui.Handlers.SwipeViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwitchHandler.ConnectHandler(UIKit.UISwitch! platformView) -> void +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> UIKit.UISwitch! +override Microsoft.Maui.Handlers.SwitchHandler.DisconnectHandler(UIKit.UISwitch! platformView) -> void +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> UIKit.UIView! +override Microsoft.Maui.Handlers.TimePickerHandler.ConnectHandler(UIKit.UIDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> UIKit.UIDatePicker! +override Microsoft.Maui.Handlers.TimePickerHandler.DisconnectHandler(UIKit.UIDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> UIKit.UINavigationBar! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> WebKit.WKWebView! +override Microsoft.Maui.Handlers.WebViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> UIKit.UIWindow! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.MauiUIApplicationDelegate.BuildMenu(UIKit.IUIMenuBuilder! builder) -> void +override Microsoft.Maui.MauiUIApplicationDelegate.CanPerform(ObjCRuntime.Selector! action, Foundation.NSObject? withSender) -> bool +override Microsoft.Maui.MauiUIApplicationDelegate.RespondsToSelector(ObjCRuntime.Selector? sel) -> bool +override Microsoft.Maui.Platform.ContainerViewController.LoadView() -> void +override Microsoft.Maui.Platform.ContainerViewController.ViewDidLayoutSubviews() -> void +override Microsoft.Maui.Platform.ContentView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.ContentView.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.LayoutView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.LayoutView.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.LayoutView.SubviewAdded(UIKit.UIView! uiview) -> void +override Microsoft.Maui.Platform.LayoutView.WillRemoveSubview(UIKit.UIView! uiview) -> void +override Microsoft.Maui.Platform.MauiActivityIndicator.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiActivityIndicator.Draw(CoreGraphics.CGRect rect) -> void +override Microsoft.Maui.Platform.MauiActivityIndicator.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiCALayer.DrawInContext(CoreGraphics.CGContext! ctx) -> void +override Microsoft.Maui.Platform.MauiCALayer.LayoutSublayers() -> void +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityTraits.get -> UIKit.UIAccessibilityTrait +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityTraits.set -> void +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityValue.get -> string? +override Microsoft.Maui.Platform.MauiCheckBox.AccessibilityValue.set -> void +override Microsoft.Maui.Platform.MauiCheckBox.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiCheckBox.Enabled.get -> bool +override Microsoft.Maui.Platform.MauiCheckBox.Enabled.set -> void +override Microsoft.Maui.Platform.MauiCheckBox.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiCheckBox.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.MauiImageView.MovedToWindow() -> void +override Microsoft.Maui.Platform.MauiLabel.DrawText(CoreGraphics.CGRect rect) -> void +override Microsoft.Maui.Platform.MauiLabel.InvalidateIntrinsicContentSize() -> void +override Microsoft.Maui.Platform.MauiLabel.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.Platform.MauiPageControl.Dispose(bool disposing) -> void +override Microsoft.Maui.Platform.MauiPageControl.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiPicker.CanPerform(ObjCRuntime.Selector! action, Foundation.NSObject? withSender) -> bool +override Microsoft.Maui.Platform.MauiSearchBar.Text.get -> string? +override Microsoft.Maui.Platform.MauiSearchBar.Text.set -> void +override Microsoft.Maui.Platform.MauiSwipeView.HitTest(CoreGraphics.CGPoint point, UIKit.UIEvent? uievent) -> UIKit.UIView! +override Microsoft.Maui.Platform.MauiSwipeView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiSwipeView.TouchesCancelled(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.MauiSwipeView.TouchesEnded(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.MauiTextField.AttributedText.get -> Foundation.NSAttributedString? +override Microsoft.Maui.Platform.MauiTextField.AttributedText.set -> void +override Microsoft.Maui.Platform.MauiTextField.Text.get -> string? +override Microsoft.Maui.Platform.MauiTextField.Text.set -> void +override Microsoft.Maui.Platform.MauiTextView.AttributedText.get -> Foundation.NSAttributedString! +override Microsoft.Maui.Platform.MauiTextView.AttributedText.set -> void +override Microsoft.Maui.Platform.MauiTextView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.MauiTextView.Text.get -> string? +override Microsoft.Maui.Platform.MauiTextView.Text.set -> void +override Microsoft.Maui.Platform.MauiWKWebView.MovedToWindow() -> void +override Microsoft.Maui.Platform.NoCaretField.GetCaretRectForPosition(UIKit.UITextPosition? position) -> CoreGraphics.CGRect +override Microsoft.Maui.Platform.PageViewController.CreatePlatformView(Microsoft.Maui.IElement! view) -> UIKit.UIView! +override Microsoft.Maui.Platform.PageViewController.TraitCollectionDidChange(UIKit.UITraitCollection? previousTraitCollection) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesBegan(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesCancelled(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesEnded(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.TouchesMoved(Foundation.NSSet! touches, UIKit.UIEvent? evt) -> void +override Microsoft.Maui.Platform.WrapperView.LayoutSubviews() -> void +override Microsoft.Maui.Platform.WrapperView.SetNeedsLayout() -> void +override Microsoft.Maui.Platform.WrapperView.SizeThatFits(CoreGraphics.CGSize size) -> CoreGraphics.CGSize +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.StreamImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.UriImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.GradientPaint! gradientPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.ImagePaint! imagePaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.PatternPaint! patternPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.CreateCALayer(this Microsoft.Maui.Graphics.SolidPaint! solidPaint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToCALayer(this Microsoft.Maui.Graphics.Paint! paint, CoreGraphics.CGRect frame = default(CoreGraphics.CGRect)) -> CoreAnimation.CALayer? +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFormatting(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSourceAsync(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFlowDirection(Microsoft.Maui.Handlers.DatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFormatting(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFormatting(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapBackground(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapSourceAsync(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapBackground(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFormatting(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! view) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContentSize(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFormatting(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFlowDirection(Microsoft.Maui.Handlers.TimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapWKUIDelegate(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapMenuBar(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.TextWithinMaxLength(this Microsoft.Maui.ITextInput! textInput, string? text, Foundation.NSRange range, string! replacementString) -> bool +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.ContinueUserActivity(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.ContinueUserActivity! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.DidEnterBackground(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.DidEnterBackground! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.FinishedLaunching(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.FinishedLaunching! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.OnActivated(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnActivated! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.OnResignActivation(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.OnResignActivation! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.OpenUrl(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.OpenUrl! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.PerformActionForShortcutItem(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.PerformActionForShortcutItem! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.SceneDidDisconnect(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneDidDisconnect! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.SceneWillConnect(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.SceneWillConnect! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.WillEnterForeground(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillEnterForeground! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.WillFinishLaunching(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillFinishLaunching! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleBuilderExtensions.WillTerminate(this Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.iOSLifecycle.WillTerminate! del) -> Microsoft.Maui.LifecycleEvents.IiOSLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.iOSLifecycleExtensions.AddiOS(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, System.Action! configureDelegate) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.MauiUIApplicationDelegate.Current.get -> Microsoft.Maui.MauiUIApplicationDelegate! +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateColor(this UIKit.UIActivityIndicatorView! activityIndicatorView, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateIsRunning(this UIKit.UIActivityIndicatorView! activityIndicatorView, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this UIKit.IUIApplicationDelegate! platformApplication, Microsoft.Maui.IApplication! application, UIKit.UIApplication! uiApplication, Foundation.NSDictionary! launchOptions) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this UIKit.IUIWindowSceneDelegate! sceneDelegate, Microsoft.Maui.IApplication! application, UIKit.UIScene! scene, UIKit.UISceneSession! session, UIKit.UISceneConnectionOptions! connectionOptions) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.RequestNewWindow(this UIKit.IUIApplicationDelegate! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.Handlers.OpenWindowRequest? args) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.ToUserActivity(this Microsoft.Maui.IPersistedState? state, string! userActivityType) -> Foundation.NSUserActivity! +static Microsoft.Maui.Platform.AspectExtensions.ToUIViewContentMode(this Microsoft.Maui.Aspect aspect) -> UIKit.UIViewContentMode +static Microsoft.Maui.Platform.AttributedStringExtensions.TrimToMaxLength(this Foundation.NSAttributedString? attributedString, int maxLength) -> Foundation.NSAttributedString? +static Microsoft.Maui.Platform.AttributedStringExtensions.WithCharacterSpacing(this Foundation.NSAttributedString! attributedString, double characterSpacing) -> Foundation.NSMutableAttributedString? +static Microsoft.Maui.Platform.AttributedStringExtensions.WithDecorations(this Foundation.NSAttributedString! attributedString, Microsoft.Maui.TextDecorations decorations) -> Foundation.NSMutableAttributedString? +static Microsoft.Maui.Platform.AttributedStringExtensions.WithLineHeight(this Foundation.NSAttributedString! attributedString, double lineHeight) -> Foundation.NSMutableAttributedString? +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCharacterSpacing(this UIKit.UIButton! platformButton, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCornerRadius(this UIKit.UIButton! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateFont(this UIKit.UIButton! platformButton, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this UIKit.UIButton! platformButton, Microsoft.Maui.IButton! button, Microsoft.Maui.Thickness? defaultPadding = null) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this UIKit.UIButton! platformButton, Microsoft.Maui.Thickness padding, Microsoft.Maui.Thickness? defaultPadding = null) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeColor(this UIKit.UIButton! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeThickness(this UIKit.UIButton! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateText(this UIKit.UIButton! platformButton, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateTextColor(this UIKit.UIButton! platformButton, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateForeground(this Microsoft.Maui.Platform.MauiCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateIsChecked(this Microsoft.Maui.Platform.MauiCheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CollectionViewExtensions.UpdateHorizontalScrollBarVisibility(this UIKit.UICollectionView! collectionView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.CollectionViewExtensions.UpdateVerticalScrollBarVisibility(this UIKit.UICollectionView! collectionView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.ColorExtensions.FromPatternImageFromBundle(string! bgImage) -> UIKit.UIColor! +static Microsoft.Maui.Platform.ColorExtensions.ToCGColor(this Microsoft.Maui.Graphics.Color! color) -> CoreGraphics.CGColor! +static Microsoft.Maui.Platform.ColorExtensions.ToColor(this UIKit.UIColor! color) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color! color) -> UIKit.UIColor! +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color? color, Microsoft.Maui.Graphics.Color? defaultColor) -> UIKit.UIColor? +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color? color, UIKit.UIColor! defaultColor) -> UIKit.UIColor! +static Microsoft.Maui.Platform.CoreGraphicsExtensions.IsCloseTo(this CoreGraphics.CGSize size0, CoreGraphics.CGSize size1, System.Runtime.InteropServices.NFloat tolerance) -> bool +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToCGRect(this Microsoft.Maui.Graphics.Rect rect) -> CoreGraphics.CGRect +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToCGSize(this Microsoft.Maui.Graphics.Size size) -> CoreGraphics.CGSize +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToPoint(this CoreGraphics.CGPoint size) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToRectangle(this CoreGraphics.CGRect rect) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Platform.CoreGraphicsExtensions.ToSize(this CoreGraphics.CGSize size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Platform.Culture.CurrentCulture.get -> System.Globalization.CultureInfo! +static Microsoft.Maui.Platform.DateExtensions.ToDateTime(this Foundation.NSDate! date) -> System.DateTime +static Microsoft.Maui.Platform.DateExtensions.ToNSDate(this System.DateTime date) -> Foundation.NSDate! +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this UIKit.UIDatePicker! picker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this UIKit.UIDatePicker! picker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this UIKit.UIDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this UIKit.UIDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextAlignment(this Microsoft.Maui.Platform.MauiDatePicker! nativeDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, UIKit.UIColor? defaultTextColor) -> void +static Microsoft.Maui.Platform.ElementExtensions.HasSceneManifest(this UIKit.IUIApplicationDelegate! platformApplication) -> bool +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this UIKit.IUIApplicationDelegate! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this UIKit.UIWindow! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> UIKit.UIView! +static Microsoft.Maui.Platform.ElementExtensions.ToUIViewController(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> UIKit.UIViewController! +static Microsoft.Maui.Platform.FlowDirectionExtensions.ToFlowDirection(this UIKit.UIUserInterfaceLayoutDirection direction) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Platform.GraphicsViewExtensions.UpdateDrawable(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! PlatformGraphicsView, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.Clear(this UIKit.UIImageView! imageView) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateAspect(this UIKit.UIImageView! imageView, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateIsAnimationPlaying(this UIKit.UIImageView! imageView, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateSource(this UIKit.UIImageView! imageView, UIKit.UIImage? uIImage, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateSourceAsync(this UIKit.UIImageView! imageView, Microsoft.Maui.IImageSourcePart! image, Microsoft.Maui.IImageSourceServiceProvider! services, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.Platform.KeyboardExtensions.ApplyKeyboard(this UIKit.IUITextInput! textInput, Microsoft.Maui.Keyboard! keyboard) -> void +static Microsoft.Maui.Platform.KeyboardExtensions.ApplyKeyboard(this UIKit.IUITextInputTraits! textInput, Microsoft.Maui.Keyboard! keyboard) -> void +static Microsoft.Maui.Platform.KeyboardExtensions.ToUIReturnKeyType(this Microsoft.Maui.ReturnType returnType) -> UIKit.UIReturnKeyType +static Microsoft.Maui.Platform.LabelExtensions.UpdateCharacterSpacing(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateFont(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateFont(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager, double defaultSize) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateHorizontalTextAlignment(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateLineHeight(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdatePadding(this Microsoft.Maui.Platform.MauiLabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateTextColor(this UIKit.UILabel! platformLabel, Microsoft.Maui.ITextStyle! textStyle, UIKit.UIColor? defaultColor = null) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateTextDecorations(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateVerticalTextAlignment(this UIKit.UILabel! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LayerExtensions.InsertBackgroundLayer(this UIKit.UIView! control, CoreAnimation.CALayer! backgroundLayer, int index = -1) -> void +static Microsoft.Maui.Platform.LayerExtensions.RemoveBackgroundLayer(this UIKit.UIView! control) -> void +static Microsoft.Maui.Platform.LayoutViewExtensions.UpdateClipsToBounds(this Microsoft.Maui.Platform.LayoutView! layoutView, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Platform.MenuExtensions.SendClicked(this UIKit.UICommand! uICommand) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateSelectedIndex(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitle(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitleColor(this Microsoft.Maui.Platform.MauiPicker! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgress(this UIKit.UIProgressView! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgressColor(this UIKit.UIProgressView! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ReturnTypeExtensions.ToPlatform(this Microsoft.Maui.ReturnType returnType) -> UIKit.UIReturnKeyType +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateContent(this UIKit.UIScrollView! scrollView, Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateContentSize(this UIKit.UIScrollView! scrollView, Microsoft.Maui.Graphics.Size contentSize) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateHorizontalScrollBarVisibility(this UIKit.UIScrollView! scrollView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateIsEnabled(this UIKit.UIScrollView! nativeScrollView, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateVerticalScrollBarVisibility(this UIKit.UIScrollView! scrollView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateCancelButton(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateFont(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateFont(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsEnabled(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsReadOnly(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsTextPredictionEnabled(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateMaxLength(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdatePlaceholder(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateText(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateVerticalTextAlignment(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateVerticalTextAlignment(this UIKit.UISearchBar! uiSearchBar, Microsoft.Maui.ISearchBar! searchBar, UIKit.UITextField? textField) -> void +static Microsoft.Maui.Platform.SemanticExtensions.UpdateSemantics(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.InvalidateShape(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.UpdateShape(this Microsoft.Maui.Graphics.Platform.PlatformGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximum(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximumTrackColor(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimum(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimumTrackColor(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbColor(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbImageSourceAsync(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider, Microsoft.Maui.IImageSourceServiceProvider! provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.SliderExtensions.UpdateValue(this UIKit.UISlider! uiSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateIncrement(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMaximum(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMinimum(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateValue(this UIKit.UIStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this UIKit.UIView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.SwitchExtensions.UpdateIsOn(this UIKit.UISwitch! uiSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateThumbColor(this UIKit.UISwitch! uiSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateTrackColor(this UIKit.UISwitch! uiSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.TextAlignmentExtensions.AdjustForFlowDirection(this UIKit.UITextAlignment textAlignment, Microsoft.Maui.IView! view) -> UIKit.UITextAlignment +static Microsoft.Maui.Platform.TextAlignmentExtensions.ToPlatformHorizontal(this Microsoft.Maui.TextAlignment alignment) -> UIKit.UITextAlignment +static Microsoft.Maui.Platform.TextAlignmentExtensions.ToPlatformHorizontal(this Microsoft.Maui.TextAlignment alignment, Microsoft.Maui.IView! view) -> UIKit.UITextAlignment +static Microsoft.Maui.Platform.TextAlignmentExtensions.ToPlatformVertical(this Microsoft.Maui.TextAlignment alignment) -> UIKit.UIControlContentVerticalAlignment +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateCharacterSpacing(this UIKit.UITextField! textField, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateClearButtonVisibility(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateCursorPosition(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateFont(this UIKit.UITextField! textField, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateHorizontalTextAlignment(this UIKit.UITextField! textField, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsPassword(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsReadOnly(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsTextPredictionEnabled(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateKeyboard(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateMaxLength(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdatePlaceholder(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry, Microsoft.Maui.Graphics.Color? defaultPlaceholderColor = null) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateReturnType(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateSelectionLength(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateText(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateTextColor(this UIKit.UITextField! textField, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextFieldExtensions.UpdateVerticalTextAlignment(this UIKit.UITextField! textField, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateCharacterSpacing(this UIKit.UITextView! textView, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateCursorPosition(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateFont(this UIKit.UITextView! textView, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateHorizontalTextAlignment(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateIsReadOnly(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateIsTextPredictionEnabled(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateKeyboard(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateMaxLength(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdatePlaceholder(this Microsoft.Maui.Platform.MauiTextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdatePlaceholderColor(this Microsoft.Maui.Platform.MauiTextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateSelectionLength(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateText(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateTextColor(this UIKit.UITextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TextViewExtensions.UpdateVerticalTextAlignment(this Microsoft.Maui.Platform.MauiTextView! textView, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this UIKit.UIDatePicker! picker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTextAlignment(this Microsoft.Maui.Platform.MauiTimePicker! textField, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Microsoft.Maui.Platform.MauiTimePicker! mauiTimePicker, Microsoft.Maui.ITimePicker! timePicker, UIKit.UIDatePicker? picker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this UIKit.UIDatePicker! picker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTransformation(this UIKit.UIView! platformView, Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTransformation(this UIKit.UIView! platformView, Microsoft.Maui.IView? view, CoreAnimation.CALayer? layer, CoreGraphics.CGPoint? originalAnchor) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateCurrentPage(this UIKit.UIPageControl! pageControl, int currentPage) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateCurrentPagesIndicatorTintColor(this UIKit.UIPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateHideSingle(this UIKit.UIPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateIndicatorShape(this Microsoft.Maui.Platform.MauiPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdateIndicatorSize(this Microsoft.Maui.Platform.MauiPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdatePages(this UIKit.UIPageControl! pageControl, int pageCount) -> void +static Microsoft.Maui.Platform.UIPageControlExtensions.UpdatePagesIndicatorTintColor(this UIKit.UIPageControl! pageControl, Microsoft.Maui.IIndicatorView! indicatorView) -> void +static Microsoft.Maui.Platform.ViewExtensions.ClearSubviews(this UIKit.UIView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ConvertToImage(this UIKit.UIView! view) -> UIKit.UIImage? +static Microsoft.Maui.Platform.ViewExtensions.FindDescendantView(this UIKit.UIView! view) -> T? +static Microsoft.Maui.Platform.ViewExtensions.Focus(this UIKit.UIView! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.GetNavigationController(this UIKit.UIView! view) -> UIKit.UINavigationController? +static Microsoft.Maui.Platform.ViewExtensions.IndexOfSubview(this UIKit.UIView! platformView, UIKit.UIView! subview) -> int +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IPlatformViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Microsoft.Maui.Platform.ContentView! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this UIKit.UIView! platformView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this UIKit.UIView! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundLayerFrame(this UIKit.UIView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFrame(UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this UIKit.UIView! platformView, bool isReadOnly, bool inputTransparent) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this UIKit.UIView! platformView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this UIKit.UIView! platformView, Microsoft.Maui.Visibility visibility) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this UIKit.UIView! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.WebViewExtensions.Eval(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView, string! script) -> void +static Microsoft.Maui.Platform.WebViewExtensions.EvaluateJavaScript(this WebKit.WKWebView! webView, Microsoft.Maui.EvaluateJavaScriptAsyncRequest! request) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoBack(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoForward(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateReload(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView, Microsoft.Maui.IWebViewDelegate? webViewDelegate) -> void +static Microsoft.Maui.Platform.WindowExtensions.GetDisplayDensity(this UIKit.UIWindow! uiWindow) -> float +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.Handlers.ButtonHandler.DefaultPadding -> Microsoft.Maui.Thickness +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.CheckBoxHandler.MinimumSize.get -> float +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.EntryHandler.OnShouldReturn(UIKit.UITextField! view) -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.Handlers.WebViewHandler.MinimumSize.get -> float +virtual Microsoft.Maui.MauiUIApplicationDelegate.ContinueUserActivity(UIKit.UIApplication! application, Foundation.NSUserActivity! userActivity, UIKit.UIApplicationRestorationHandler! completionHandler) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.DidEnterBackground(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.FinishedLaunching(UIKit.UIApplication! application, Foundation.NSDictionary! launchOptions) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.GetConfiguration(UIKit.UIApplication! application, UIKit.UISceneSession! connectingSceneSession, UIKit.UISceneConnectionOptions! options) -> UIKit.UISceneConfiguration! +virtual Microsoft.Maui.MauiUIApplicationDelegate.OnActivated(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.OnResignActivation(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.OpenUrl(UIKit.UIApplication! application, Foundation.NSUrl! url, Foundation.NSDictionary! options) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.PerformActionForShortcutItem(UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.WillEnterForeground(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.WillFinishLaunching(UIKit.UIApplication! application, Foundation.NSDictionary! launchOptions) -> bool +virtual Microsoft.Maui.MauiUIApplicationDelegate.WillTerminate(UIKit.UIApplication! application) -> void +virtual Microsoft.Maui.MauiUIApplicationDelegate.Window.get -> UIKit.UIWindow? +virtual Microsoft.Maui.MauiUIApplicationDelegate.Window.set -> void +virtual Microsoft.Maui.MauiUISceneDelegate.DidDisconnect(UIKit.UIScene! scene) -> void +virtual Microsoft.Maui.MauiUISceneDelegate.GetStateRestorationActivity(UIKit.UIScene! scene) -> Foundation.NSUserActivity? +virtual Microsoft.Maui.MauiUISceneDelegate.WillConnect(UIKit.UIScene! scene, UIKit.UISceneSession! session, UIKit.UISceneConnectionOptions! connectionOptions) -> void +virtual Microsoft.Maui.MauiUISceneDelegate.Window.get -> UIKit.UIWindow? +virtual Microsoft.Maui.MauiUISceneDelegate.Window.set -> void +virtual Microsoft.Maui.Platform.ContainerViewController.CreatePlatformView(Microsoft.Maui.IElement! view) -> UIKit.UIView! +virtual Microsoft.Maui.Platform.MauiCheckBox.GetCheckBoxImage() -> UIKit.UIImage! +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object diff --git a/src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..5ecb69d73a8a --- /dev/null +++ b/src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt @@ -0,0 +1,14 @@ +#nullable enable +override Microsoft.Maui.Handlers.BorderHandler.ConnectHandler(Microsoft.Maui.Platform.ContentView! platformView) -> void +override Microsoft.Maui.Handlers.BorderHandler.DisconnectHandler(Microsoft.Maui.Platform.ContentView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ScrollViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.EditorHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.EntryHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Platform.ContentView.SetNeedsLayout() -> void +override Microsoft.Maui.Platform.LayoutView.HitTest(CoreGraphics.CGPoint point, UIKit.UIEvent? uievent) -> UIKit.UIView! +override Microsoft.Maui.Platform.LayoutView.SetNeedsLayout() -> void +override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.get -> bool +override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.set -> void +override Microsoft.Maui.Platform.MauiTextField.SelectedTextRange.get -> UIKit.UITextRange? +override Microsoft.Maui.Platform.MauiTextField.SelectedTextRange.set -> void diff --git a/src/Core/src/PublicAPI/net-tizen/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/net-tizen/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..fd26ee474777 --- /dev/null +++ b/src/Core/src/PublicAPI/net-tizen/PublicAPI.Shipped.txt @@ -0,0 +1,2781 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.ImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.MauiApplication.CreateMauiApp() -> Microsoft.Maui.Hosting.MauiApp! +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Tizen.Applications.Bundle? savedInstance) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.SavedInstance.get -> Tizen.Applications.Bundle? +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.FontCacheDirectory.get -> System.IO.DirectoryInfo? +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileImageSourceService.GetImageAsync(Microsoft.Maui.IFileImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontImageSourceService.GetImageAsync(Microsoft.Maui.IFontImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontManager.GetFont(Microsoft.Maui.Font font) -> string! +Microsoft.Maui.FontManager.GetFontFamily(string? fontFamliy) -> string! +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> ElmSharp.ProgressBar! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> Microsoft.Maui.Platform.BorderView! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Button! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> ElmSharp.Check! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentCanvas! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Entry! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Entry! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Entry! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiImageButton! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Image! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.IndicatorView! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Label! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> ElmSharp.Naviframe! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Entry! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiRadioButton! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.ScrollView! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.SearchBar! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> Tizen.UIExtensions.ElmSharp.EditfieldEntry? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiShapeView! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> ElmSharp.Slider! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentCanvas! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> ElmSharp.Check! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> Tizen.UIExtensions.ElmSharp.Entry! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> ElmSharp.Toolbar! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiWebView! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> ElmSharp.Window! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationView.get -> Tizen.UIExtensions.ElmSharp.INavigationView! +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> Tizen.UIExtensions.ElmSharp.EditfieldEntry? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> ElmSharp.EvasObject? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.OnFocused(object? sender, System.EventArgs! e) -> void +Microsoft.Maui.Handlers.ViewHandler.OnUnfocused(object? sender, System.EventArgs! e) -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> ElmSharp.EvasObject? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> Microsoft.Maui.Platform.WrapperView? +Microsoft.Maui.Handlers.ViewHandler.ContainerView.set -> void +Microsoft.Maui.Handlers.ViewHandler.Dispose() -> void +Microsoft.Maui.Handlers.ViewHandler.ForceContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.ForceContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.Parent.get -> Microsoft.Maui.IPlatformViewHandler? +Microsoft.Maui.Handlers.ViewHandler.PlatformParent.get -> ElmSharp.EvasObject! +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.SetParent(Microsoft.Maui.IPlatformViewHandler! parent) -> void +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.ViewHandler.~ViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontManager.GetFont(Microsoft.Maui.Font font) -> string! +Microsoft.Maui.IFontManager.GetFontFamily(string? font) -> string! +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> Microsoft.Maui.Platform.LayoutCanvas! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(Tizen.UIExtensions.ElmSharp.Image! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(Tizen.UIExtensions.ElmSharp.Image! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> Tizen.UIExtensions.ElmSharp.Image! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IPlatformViewHandler +Microsoft.Maui.IPlatformViewHandler.ContainerView.get -> ElmSharp.EvasObject? +Microsoft.Maui.IPlatformViewHandler.ForceContainer.get -> bool +Microsoft.Maui.IPlatformViewHandler.ForceContainer.set -> void +Microsoft.Maui.IPlatformViewHandler.GetPlatformContentGeometry() -> ElmSharp.Rect +Microsoft.Maui.IPlatformViewHandler.Parent.get -> Microsoft.Maui.IPlatformViewHandler? +Microsoft.Maui.IPlatformViewHandler.PlatformView.get -> ElmSharp.EvasObject? +Microsoft.Maui.IPlatformViewHandler.SetParent(Microsoft.Maui.IPlatformViewHandler! parent) -> void +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.TizenLifecycle +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnAppControlReceived +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnCreate +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnDeviceOrientationChanged +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnLocaleChanged +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnLowBattery +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnLowMemory +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnPause +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnPreCreate +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnRegionFormatChanged +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnResume +Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnTerminate +Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.TizenLifecycleExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiApplication +Microsoft.Maui.MauiApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.MauiApplication.Application.set -> void +Microsoft.Maui.MauiApplication.MauiApplication() -> void +Microsoft.Maui.MauiApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiApplication.Services.set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiDrawable +Microsoft.Maui.MauiDrawable.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.MauiDrawable.Background.set -> void +Microsoft.Maui.MauiDrawable.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.MauiDrawable.Border.set -> void +Microsoft.Maui.MauiDrawable.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.MauiDrawable.Clip.set -> void +Microsoft.Maui.MauiDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.MauiDrawable.MauiDrawable() -> void +Microsoft.Maui.MauiDrawable.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.MauiDrawable.Shadow.set -> void +Microsoft.Maui.MauiDrawable.ShadowThickness.get -> Microsoft.Maui.Thickness +Microsoft.Maui.MauiDrawable.ShadowThickness.set -> void +Microsoft.Maui.MauiDrawable.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.MauiDrawable.Shape.set -> void +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ActivityIndicatorExtensions +Microsoft.Maui.Platform.AspectExtensions +Microsoft.Maui.Platform.BorderView +Microsoft.Maui.Platform.BorderView.BorderView(ElmSharp.EvasObject! parent, Microsoft.Maui.IBorderView! view) -> void +Microsoft.Maui.Platform.BorderView.ContainerView.get -> Microsoft.Maui.Platform.WrapperView? +Microsoft.Maui.Platform.BorderView.ContainerView.set -> void +Microsoft.Maui.Platform.ButtonExtensions +Microsoft.Maui.Platform.CheckBoxExtensions +Microsoft.Maui.Platform.ClipperExtension +Microsoft.Maui.Platform.ColorExtensions +Microsoft.Maui.Platform.ContainerView +Microsoft.Maui.Platform.ContainerView.ContainerView(ElmSharp.EvasObject! parent, Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Platform.ContainerView.ContainerView(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.Platform.ContainerView.CurrentView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Platform.ContainerView.CurrentView.set -> void +Microsoft.Maui.Platform.ContainerView.MainView.get -> ElmSharp.EvasObject? +Microsoft.Maui.Platform.ContainerView.MainView.set -> void +Microsoft.Maui.Platform.ContainerView.Reload() -> void +Microsoft.Maui.Platform.ContentCanvas +Microsoft.Maui.Platform.ContentCanvas.ContentCanvas(ElmSharp.EvasObject! parent, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Platform.ContentCanvas.Measure(double availableWidth, double availableHeight) -> Tizen.UIExtensions.Common.Size +Microsoft.Maui.Platform.ContentCanvas.OnLayoutUpdated(object? sender, Tizen.UIExtensions.Common.LayoutEventArgs! e) -> void +Microsoft.Maui.Platform.DatePickerExtensions +Microsoft.Maui.Platform.DPExtensions +Microsoft.Maui.Platform.DrawClipEventArgs +Microsoft.Maui.Platform.DrawClipEventArgs.Canvas.get -> Microsoft.Maui.Graphics.ICanvas! +Microsoft.Maui.Platform.DrawClipEventArgs.Canvas.set -> void +Microsoft.Maui.Platform.DrawClipEventArgs.DirtyRect.get -> Microsoft.Maui.Graphics.RectF +Microsoft.Maui.Platform.DrawClipEventArgs.DirtyRect.set -> void +Microsoft.Maui.Platform.DrawClipEventArgs.DrawClipEventArgs(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Platform.EditorExtensions +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.EntryExtensions +Microsoft.Maui.Platform.GraphicsViewExtensions +Microsoft.Maui.Platform.ImageExtensions +Microsoft.Maui.Platform.ImageSourcePartExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.IWrapperViewDrawables +Microsoft.Maui.Platform.IWrapperViewDrawables.BackgroundDrawable.get -> Microsoft.Maui.Graphics.IDrawable? +Microsoft.Maui.Platform.IWrapperViewDrawables.BackgroundDrawable.set -> void +Microsoft.Maui.Platform.IWrapperViewDrawables.BorderDrawable.get -> Microsoft.Maui.Graphics.IDrawable? +Microsoft.Maui.Platform.IWrapperViewDrawables.BorderDrawable.set -> void +Microsoft.Maui.Platform.IWrapperViewDrawables.ShadowDrawable.get -> Microsoft.Maui.Graphics.IDrawable? +Microsoft.Maui.Platform.IWrapperViewDrawables.ShadowDrawable.set -> void +Microsoft.Maui.Platform.KeyboardExtensions +Microsoft.Maui.Platform.LabelExtensions +Microsoft.Maui.Platform.LayoutCanvas +Microsoft.Maui.Platform.LayoutCanvas.LayoutCanvas(ElmSharp.EvasObject! parent, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Platform.LayoutCanvas.Measure(double availableWidth, double availableHeight) -> Tizen.UIExtensions.Common.Size +Microsoft.Maui.Platform.LayoutCanvas.OnLayoutUpdated(object? sender, Tizen.UIExtensions.Common.LayoutEventArgs! e) -> void +Microsoft.Maui.Platform.LayoutCanvasExtensions +Microsoft.Maui.Platform.MauiBackgroundImage +Microsoft.Maui.Platform.MauiBackgroundImage.MauiBackgroundImage(Microsoft.Maui.Platform.WrapperView! parent) -> void +Microsoft.Maui.Platform.MauiBoxView +Microsoft.Maui.Platform.MauiBoxView.MauiBoxView(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.MauiImageButton +Microsoft.Maui.Platform.MauiImageButton.Clicked -> System.EventHandler? +Microsoft.Maui.Platform.MauiImageButton.ImageView.get -> Tizen.UIExtensions.ElmSharp.Image! +Microsoft.Maui.Platform.MauiImageButton.MauiImageButton(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.MauiImageButton.Pressed -> System.EventHandler? +Microsoft.Maui.Platform.MauiImageButton.Released -> System.EventHandler? +Microsoft.Maui.Platform.MauiIndicatorViewExtensions +Microsoft.Maui.Platform.MauiRadioButton +Microsoft.Maui.Platform.MauiRadioButton.FontAttributes.get -> Tizen.UIExtensions.Common.FontAttributes +Microsoft.Maui.Platform.MauiRadioButton.FontAttributes.set -> void +Microsoft.Maui.Platform.MauiRadioButton.FontFamily.get -> string! +Microsoft.Maui.Platform.MauiRadioButton.FontFamily.set -> void +Microsoft.Maui.Platform.MauiRadioButton.FontSize.get -> double +Microsoft.Maui.Platform.MauiRadioButton.FontSize.set -> void +Microsoft.Maui.Platform.MauiRadioButton.MauiRadioButton(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.MauiRadioButton.TextColor.get -> Tizen.UIExtensions.Common.Color +Microsoft.Maui.Platform.MauiRadioButton.TextColor.set -> void +Microsoft.Maui.Platform.MauiShapeView +Microsoft.Maui.Platform.MauiShapeView.MauiShapeView(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.MauiWebView +Microsoft.Maui.Platform.MauiWebView.MauiWebView(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.MauiWebView.WebView.get -> Tizen.WebView.WebView! +Microsoft.Maui.Platform.ModalStack +Microsoft.Maui.Platform.ModalStack.Insert(ElmSharp.EvasObject! before, ElmSharp.EvasObject! view) -> void +Microsoft.Maui.Platform.ModalStack.ModalStack(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.ModalStack.Pop() -> void +Microsoft.Maui.Platform.ModalStack.PopToRoot() -> void +Microsoft.Maui.Platform.ModalStack.Push(ElmSharp.EvasObject! view) -> void +Microsoft.Maui.Platform.ModalStack.Remove(ElmSharp.EvasObject! view) -> void +Microsoft.Maui.Platform.ModalStack.Reset() -> void +Microsoft.Maui.Platform.ModalStack.Stack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Platform.PickerExtensions +Microsoft.Maui.Platform.PlatformTouchGraphicsView +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Connect(Microsoft.Maui.IGraphicsView! graphicsView) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Disconnect() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.PlatformTouchGraphicsView(ElmSharp.EvasObject? parent, Microsoft.Maui.Graphics.IDrawable? drawable = null) -> void +Microsoft.Maui.Platform.ProgressBarExtensions +Microsoft.Maui.Platform.ScrollViewExtensions +Microsoft.Maui.Platform.SearchBarExtensions +Microsoft.Maui.Platform.ShapeViewExtensions +Microsoft.Maui.Platform.SKClipperView +Microsoft.Maui.Platform.SKClipperView.ClippingRequired.get -> bool +Microsoft.Maui.Platform.SKClipperView.ClippingRequired.set -> void +Microsoft.Maui.Platform.SKClipperView.DeviceScalingFactor.get -> float +Microsoft.Maui.Platform.SKClipperView.DeviceScalingFactor.set -> void +Microsoft.Maui.Platform.SKClipperView.DrawClip -> System.EventHandler? +Microsoft.Maui.Platform.SKClipperView.Invalidate() -> void +Microsoft.Maui.Platform.SKClipperView.SKClipperView(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.SliderExtensions +Microsoft.Maui.Platform.StepperExtensions +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.SwitchExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.TimePickerExtensions +Microsoft.Maui.Platform.TransformationExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WebViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Content.get -> ElmSharp.EvasObject? +Microsoft.Maui.Platform.WrapperView.Content.set -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.UpdateBackground(Microsoft.Maui.Graphics.Paint? paint) -> void +Microsoft.Maui.Platform.WrapperView.UpdateBorder(Microsoft.Maui.IBorderStroke! border) -> void +Microsoft.Maui.Platform.WrapperView.UpdateShape(Microsoft.Maui.Graphics.IShape? shape) -> void +Microsoft.Maui.Platform.WrapperView.WrapperView(ElmSharp.EvasObject! parent) -> void +Microsoft.Maui.Platform.WrapperViewDrawables +Microsoft.Maui.Platform.WrapperViewDrawables.BackgroundDrawable.get -> Microsoft.Maui.Graphics.IDrawable? +Microsoft.Maui.Platform.WrapperViewDrawables.BackgroundDrawable.set -> void +Microsoft.Maui.Platform.WrapperViewDrawables.BorderDrawable.get -> Microsoft.Maui.Graphics.IDrawable? +Microsoft.Maui.Platform.WrapperViewDrawables.BorderDrawable.set -> void +Microsoft.Maui.Platform.WrapperViewDrawables.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Platform.WrapperViewDrawables.Invalidated -> System.EventHandler? +Microsoft.Maui.Platform.WrapperViewDrawables.SendInvalidated() -> void +Microsoft.Maui.Platform.WrapperViewDrawables.ShadowDrawable.get -> Microsoft.Maui.Graphics.IDrawable? +Microsoft.Maui.Platform.WrapperViewDrawables.ShadowDrawable.set -> void +Microsoft.Maui.Platform.WrapperViewDrawables.WrapperViewDrawables() -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RadioButtonExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.GetImageAsync(Microsoft.Maui.IStreamImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.GetImageAsync(Microsoft.Maui.IUriImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> ElmSharp.EvasObject? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Animations.PlatformTicker.IsRunning.get -> bool +override Microsoft.Maui.Animations.PlatformTicker.Start() -> void +override Microsoft.Maui.Animations.PlatformTicker.Stop() -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.FileImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.FontImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> ElmSharp.ProgressBar! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> Tizen.Applications.CoreApplication! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> Microsoft.Maui.Platform.BorderView! +override Microsoft.Maui.Handlers.BorderHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.BorderHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.BorderHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.ButtonHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.Button! platformView) -> void +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Button! +override Microsoft.Maui.Handlers.ButtonHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Button! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.ConnectHandler(ElmSharp.Check! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> ElmSharp.Check! +override Microsoft.Maui.Handlers.CheckBoxHandler.DisconnectHandler(ElmSharp.Check! platformView) -> void +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentCanvas! +override Microsoft.Maui.Handlers.ContentViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ContentViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Entry! +override Microsoft.Maui.Handlers.DatePickerHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Entry! +override Microsoft.Maui.Handlers.EditorHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Entry! +override Microsoft.Maui.Handlers.EntryHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.ConnectHandler(Microsoft.Maui.Platform.MauiImageButton! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiImageButton! +override Microsoft.Maui.Handlers.ImageButtonHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiImageButton! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Image! +override Microsoft.Maui.Handlers.ImageHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Image! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.IndicatorViewHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.IndicatorView! platformView) -> void +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.IndicatorView! +override Microsoft.Maui.Handlers.IndicatorViewHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.IndicatorView! platformView) -> void +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Label! +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> Microsoft.Maui.Platform.LayoutCanvas! +override Microsoft.Maui.Handlers.LayoutHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.LayoutHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.LayoutHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.NavigationViewHandler.ConnectHandler(ElmSharp.Naviframe! platformView) -> void +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> ElmSharp.Naviframe! +override Microsoft.Maui.Handlers.NavigationViewHandler.DisconnectHandler(ElmSharp.Naviframe! platformView) -> void +override Microsoft.Maui.Handlers.PageHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentCanvas! +override Microsoft.Maui.Handlers.PickerHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Entry! +override Microsoft.Maui.Handlers.PickerHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> ElmSharp.ProgressBar! +override Microsoft.Maui.Handlers.RadioButtonHandler.ConnectHandler(Microsoft.Maui.Platform.MauiRadioButton! platformView) -> void +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiRadioButton! +override Microsoft.Maui.Handlers.RadioButtonHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiRadioButton! platformView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.ScrollViewHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.ScrollView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.ScrollView! +override Microsoft.Maui.Handlers.ScrollViewHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.ScrollView! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ScrollViewHandler.GetPlatformContentGeometry() -> ElmSharp.Rect +override Microsoft.Maui.Handlers.SearchBarHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.SearchBar! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.SearchBar! +override Microsoft.Maui.Handlers.SearchBarHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.SearchBar! platformView) -> void +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiShapeView! +override Microsoft.Maui.Handlers.ShapeViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.SliderHandler.ConnectHandler(ElmSharp.Slider! platformView) -> void +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> ElmSharp.Slider! +override Microsoft.Maui.Handlers.SliderHandler.DisconnectHandler(ElmSharp.Slider! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.ConnectHandler(ElmSharp.Spinner! platformView) -> void +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> ElmSharp.Spinner! +override Microsoft.Maui.Handlers.StepperHandler.DisconnectHandler(ElmSharp.Spinner! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentCanvas! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.SwipeViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwitchHandler.ConnectHandler(ElmSharp.Check! platformView) -> void +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> ElmSharp.Check! +override Microsoft.Maui.Handlers.SwitchHandler.DisconnectHandler(ElmSharp.Check! platformView) -> void +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> ElmSharp.EvasObject! +override Microsoft.Maui.Handlers.TimePickerHandler.ConnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> Tizen.UIExtensions.ElmSharp.Entry! +override Microsoft.Maui.Handlers.TimePickerHandler.DisconnectHandler(Tizen.UIExtensions.ElmSharp.Entry! platformView) -> void +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> ElmSharp.Toolbar! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.ViewHandler.OnPlatformViewDeleted() -> void +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiWebView! platformView) -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiWebView! +override Microsoft.Maui.Handlers.WebViewHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiWebView! platformView) -> void +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> ElmSharp.Window! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.MauiApplication.OnAppControlReceived(Tizen.Applications.AppControlReceivedEventArgs! e) -> void +override Microsoft.Maui.MauiApplication.OnCreate() -> void +override Microsoft.Maui.MauiApplication.OnDeviceOrientationChanged(Tizen.Applications.DeviceOrientationEventArgs! e) -> void +override Microsoft.Maui.MauiApplication.OnLocaleChanged(Tizen.Applications.LocaleChangedEventArgs! e) -> void +override Microsoft.Maui.MauiApplication.OnLowBattery(Tizen.Applications.LowBatteryEventArgs! e) -> void +override Microsoft.Maui.MauiApplication.OnLowMemory(Tizen.Applications.LowMemoryEventArgs! e) -> void +override Microsoft.Maui.MauiApplication.OnPause() -> void +override Microsoft.Maui.MauiApplication.OnPreCreate() -> void +override Microsoft.Maui.MauiApplication.OnRegionFormatChanged(Tizen.Applications.RegionFormatChangedEventArgs! e) -> void +override Microsoft.Maui.MauiApplication.OnResume() -> void +override Microsoft.Maui.MauiApplication.OnTerminate() -> void +override Microsoft.Maui.Platform.MauiBackgroundImage.OnUnrealize() -> void +override Microsoft.Maui.Platform.MauiRadioButton.Text.get -> string! +override Microsoft.Maui.Platform.MauiRadioButton.Text.set -> void +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.StreamImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.UriImageSourceService.GetImageAsync(Microsoft.Maui.IImageSource! imageSource, Tizen.UIExtensions.ElmSharp.Image! image, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.HandleUIChange() -> void +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> Microsoft.Maui.MauiDrawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> Microsoft.Maui.MauiDrawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> Microsoft.Maui.MauiDrawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> Microsoft.Maui.MauiDrawable? +static Microsoft.Maui.Graphics.PaintExtensions.CreateDrawable(this Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> Microsoft.Maui.MauiDrawable? +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Graphics.PaintExtensions.ToDrawable(this Microsoft.Maui.Graphics.Paint! paint) -> Microsoft.Maui.MauiDrawable? +static Microsoft.Maui.Graphics.PaintExtensions.ToPlatform(this Microsoft.Maui.Graphics.Paint! paint) -> Tizen.UIExtensions.Common.Color +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSourceAsync(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.ButtonHandler.MapLineBreakMode(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapBackground(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! view) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapBackground(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFormatting(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapBackground(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFormatting(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.EditorHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapBackground(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapSourceAsync(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapBackground(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFormatting(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.MapBarBackground(Microsoft.Maui.Handlers.INavigationViewHandler! handler, Tizen.UIExtensions.ElmSharp.INavigationView! view) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.MapTitleIcon(Microsoft.Maui.Handlers.INavigationViewHandler! handler, Tizen.UIExtensions.ElmSharp.INavigationView! view) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.MapTitleView(Microsoft.Maui.Handlers.INavigationViewHandler! handler, Tizen.UIExtensions.ElmSharp.INavigationView! view) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigationView! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.MapBackground(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.ProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.ProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshViewBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFormatting(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapKeyboard(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.Handlers.StepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.Handlers.StepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.Handlers.StepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.Handlers.StepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnAppControlReceived(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnAppControlReceived! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnCreate(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnCreate! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnDeviceOrientationChanged(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnDeviceOrientationChanged! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnLocaleChanged(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnLocaleChanged! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnLowBattery(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnLowBattery! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnLowMemory(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnLowMemory! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnPause(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnPause! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnPreCreate(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnPreCreate! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnRegionFormatChanged(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnRegionFormatChanged! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnResume(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnResume! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleBuilderExtensions.OnTerminate(this Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.TizenLifecycle.OnTerminate! del) -> Microsoft.Maui.LifecycleEvents.ITizenLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.TizenLifecycleExtensions.AddTizen(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, System.Action! configureDelegate) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.MauiApplication.Current.get -> Microsoft.Maui.MauiApplication! +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateColor(this ElmSharp.ProgressBar! activityIndicatorView, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateIsRunning(this ElmSharp.ProgressBar! activityIndicatorView, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.AspectExtensions.ToPlatform(this Microsoft.Maui.Aspect aspect) -> Tizen.UIExtensions.Common.Aspect +static Microsoft.Maui.Platform.ButtonExtensions.UpdateText(this Tizen.UIExtensions.ElmSharp.Button! platformButton, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateTextColor(this Tizen.UIExtensions.ElmSharp.Button! platformButton, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateForeground(this ElmSharp.Check! platformCheck, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateIsChecked(this ElmSharp.Check! platformCheck, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.ClipperExtension.SetClipperCanvas(this ElmSharp.EvasObject! target, Microsoft.Maui.Platform.SKClipperView! clipper) -> void +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color! c) -> Tizen.UIExtensions.Common.Color +static Microsoft.Maui.Platform.ColorExtensions.ToPlatformEFL(this Microsoft.Maui.Graphics.Color! c) -> ElmSharp.Color +static Microsoft.Maui.Platform.ColorExtensions.WithAlpha(this Microsoft.Maui.Graphics.Color! color, double alpha) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Platform.ColorExtensions.WithPremultiplied(this Microsoft.Maui.Graphics.Color! color, double alpha) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Tizen.UIExtensions.ElmSharp.Entry! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFormat(this Tizen.UIExtensions.ElmSharp.Entry! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DPExtensions.ConvertToDPFont(int eflPt) -> double +static Microsoft.Maui.Platform.DPExtensions.ConvertToEflFontPoint(double sp) -> int +static Microsoft.Maui.Platform.DPExtensions.ConvertToPixel(double dp) -> int +static Microsoft.Maui.Platform.DPExtensions.ConvertToScaledDP(double pixel) -> double +static Microsoft.Maui.Platform.DPExtensions.ConvertToScaledDP(int pixel) -> double +static Microsoft.Maui.Platform.DPExtensions.ConvertToScaledPixel(double dp) -> int +static Microsoft.Maui.Platform.DPExtensions.ToDP(this ElmSharp.Rect rect) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Platform.DPExtensions.ToDP(this ElmSharp.Size size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Platform.DPExtensions.ToDP(this Tizen.UIExtensions.Common.Rect rect) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Platform.DPExtensions.ToDP(this Tizen.UIExtensions.Common.Size size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Platform.DPExtensions.ToDPFont(this int eflPt) -> double +static Microsoft.Maui.Platform.DPExtensions.ToEflFontPoint(this double sp) -> int +static Microsoft.Maui.Platform.DPExtensions.ToEFLPixel(this Microsoft.Maui.Graphics.Rect rect) -> ElmSharp.Rect +static Microsoft.Maui.Platform.DPExtensions.ToEFLPixel(this Microsoft.Maui.Graphics.Size size) -> ElmSharp.Size +static Microsoft.Maui.Platform.DPExtensions.ToPixel(this double dp) -> int +static Microsoft.Maui.Platform.DPExtensions.ToPixel(this Microsoft.Maui.Graphics.Rect rect) -> Tizen.UIExtensions.Common.Rect +static Microsoft.Maui.Platform.DPExtensions.ToPixel(this Microsoft.Maui.Graphics.Size size) -> Tizen.UIExtensions.Common.Size +static Microsoft.Maui.Platform.DPExtensions.ToPoint(this ElmSharp.Point point) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Platform.DPExtensions.ToPointF(this ElmSharp.Point point) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Platform.DPExtensions.ToScaledDP(this double pixel) -> double +static Microsoft.Maui.Platform.DPExtensions.ToScaledDP(this float pixel) -> float +static Microsoft.Maui.Platform.EditorExtensions.UpdatePlaceholderColor(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this Tizen.Applications.CoreUIApplication! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this ElmSharp.Window! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToContainerView(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> ElmSharp.EvasObject! +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> ElmSharp.EvasObject! +static Microsoft.Maui.Platform.EntryExtensions.GetSelectRegion(this Tizen.UIExtensions.ElmSharp.Entry! entry, out int start, out int end) -> void +static Microsoft.Maui.Platform.EntryExtensions.ToInputPanelReturnKeyType(this Microsoft.Maui.ReturnType returnType) -> ElmSharp.InputPanelReturnKeyType +static Microsoft.Maui.Platform.EntryExtensions.ToPlatform(this Microsoft.Maui.TextAlignment alignment) -> Tizen.UIExtensions.Common.TextAlignment +static Microsoft.Maui.Platform.EntryExtensions.ToPlatformDouble(this Microsoft.Maui.TextAlignment alignment) -> double +static Microsoft.Maui.Platform.EntryExtensions.UpdateClearButtonVisibility(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateFont(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateHorizontalTextAlignment(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextAlignment! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateIsPassword(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateIsReadOnly(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateIsTextPredictionEnabled(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateKeyboard(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateMaxLength(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdatePlaceholder(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdatePlaceholderColor(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateReturnType(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateSelectionLength(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateText(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.IText! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateTextColor(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextStyle! entry) -> void +static Microsoft.Maui.Platform.EntryExtensions.UpdateVerticalTextAlignment(this Tizen.UIExtensions.ElmSharp.Entry! platformEntry, Microsoft.Maui.ITextAlignment! entry) -> void +static Microsoft.Maui.Platform.GraphicsViewExtensions.UpdateDrawable(this Microsoft.Maui.Graphics.Skia.Views.SkiaGraphicsView! platformGraphicsView, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Platform.ImageExtensions.Clear(this Tizen.UIExtensions.ElmSharp.Image! platformImage) -> void +static Microsoft.Maui.Platform.ImageExtensions.UpdateAspect(this Tizen.UIExtensions.ElmSharp.Image! platformImage, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Platform.ImageExtensions.UpdateIsAnimationPlaying(this Tizen.UIExtensions.ElmSharp.Image! platformImage, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.ImageSourcePartExtensions.UpdateSourceAsync(this Microsoft.Maui.IImageSourcePart! image, Tizen.UIExtensions.ElmSharp.Image! destinationContext, Microsoft.Maui.IImageSourceServiceProvider! services, System.Action! setImage, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.Platform.KeyboardExtensions.ToAutoCapital(this Microsoft.Maui.KeyboardFlags keyboardFlags) -> ElmSharp.AutoCapital +static Microsoft.Maui.Platform.KeyboardExtensions.ToInputHints(this Microsoft.Maui.Keyboard! keyboard, bool isSpellCheckEnabled, bool isTextPredictionEnabled) -> ElmSharp.InputHints +static Microsoft.Maui.Platform.KeyboardExtensions.ToPlatform(this Microsoft.Maui.Keyboard! keyboard) -> Tizen.UIExtensions.Common.Keyboard +static Microsoft.Maui.Platform.KeyboardExtensions.UpdateKeyboard(this Tizen.UIExtensions.ElmSharp.Entry! control, Microsoft.Maui.Keyboard! keyboard, bool isSpellCheckEnabled, bool isTextPredictionEnabled) -> void +static Microsoft.Maui.Platform.LabelExtensions.GetFontAttributes(this Microsoft.Maui.Font font) -> Tizen.UIExtensions.Common.FontAttributes +static Microsoft.Maui.Platform.LabelExtensions.ToPlatform(this Microsoft.Maui.LineBreakMode mode) -> Tizen.UIExtensions.Common.LineBreakMode +static Microsoft.Maui.Platform.LabelExtensions.ToPlatform(this Microsoft.Maui.TextDecorations td) -> Tizen.UIExtensions.Common.TextDecorations +static Microsoft.Maui.Platform.LabelExtensions.UpdateFont(this Tizen.UIExtensions.ElmSharp.Label! platformLabel, Microsoft.Maui.ILabel! label, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateHorizontalTextAlignment(this Tizen.UIExtensions.ElmSharp.Label! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateText(this Tizen.UIExtensions.ElmSharp.Label! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateTextColor(this Tizen.UIExtensions.ElmSharp.Label! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateTextDecorations(this Tizen.UIExtensions.ElmSharp.Label! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LabelExtensions.UpdateVerticalTextAlignment(this Tizen.UIExtensions.ElmSharp.Label! platformLabel, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.LayoutCanvasExtensions.UpdateClipsToBounds(this Microsoft.Maui.Platform.LayoutCanvas! layoutCanvas, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Platform.MauiIndicatorViewExtensions.UpdateIndicatorCount(this Tizen.UIExtensions.ElmSharp.IndicatorView! platformView, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Platform.MauiIndicatorViewExtensions.UpdatePosition(this Tizen.UIExtensions.ElmSharp.IndicatorView! platformView, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateSelectedIndex(this Tizen.UIExtensions.ElmSharp.Entry! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitle(this Tizen.UIExtensions.ElmSharp.Entry! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitleColor(this Tizen.UIExtensions.ElmSharp.Entry! platformPicker, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgress(this ElmSharp.ProgressBar! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgressColor(this ElmSharp.ProgressBar! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.ToPlatform(this Microsoft.Maui.ScrollBarVisibility visibility) -> ElmSharp.ScrollBarVisiblePolicy +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateHorizontalScrollBarVisibility(this Tizen.UIExtensions.ElmSharp.ScrollView! scrollView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateOrientation(this Tizen.UIExtensions.ElmSharp.ScrollView! scrollView, Microsoft.Maui.ScrollOrientation scrollOrientation) -> void +static Microsoft.Maui.Platform.ScrollViewExtensions.UpdateVerticalScrollBarVisibility(this Tizen.UIExtensions.ElmSharp.ScrollView! scrollView, Microsoft.Maui.ScrollBarVisibility scrollBarVisibility) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateCancelButtonColor(this Tizen.UIExtensions.ElmSharp.SearchBar! platformView, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.InvalidateShape(this Microsoft.Maui.Platform.MauiShapeView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.ShapeViewExtensions.UpdateShape(this Microsoft.Maui.Platform.MauiShapeView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximum(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximumTrackColor(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximumTrackColor(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider, ElmSharp.Color? defaultMaxTrackColor) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimum(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimumTrackColor(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimumTrackColor(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider, ElmSharp.Color? defaultMinTrackColor) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbColor(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbColor(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider, ElmSharp.Color? defaultThumbColor) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateValue(this ElmSharp.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateIncrement(this ElmSharp.Spinner! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMaximum(this ElmSharp.Spinner! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMinimum(this ElmSharp.Spinner! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateValue(this ElmSharp.Spinner! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.SwitchExtensions.UpdateIsOn(this ElmSharp.Check! platformCheck, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateThumbColor(this ElmSharp.Check! platformCheck, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateTrackColor(this ElmSharp.Check! platformCheck, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFormat(this Tizen.UIExtensions.ElmSharp.Entry! platformTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Tizen.UIExtensions.ElmSharp.Entry! platformTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TransformationExtensions.Perspective3D(this ElmSharp.EvasMap! map, int px, int py, int z0, int foc) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTransformation(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.Platform.ViewExtensions.Focus(this ElmSharp.EvasObject! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IPlatformViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.ToPlatformVisibility(this Microsoft.Maui.Visibility visibility) -> bool +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateSemantics(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateSize(ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this ElmSharp.EvasObject! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.WebViewExtensions.Eval(this Microsoft.Maui.Platform.MauiWebView! platformWebView, Microsoft.Maui.IWebView! webView, string! script) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoBack(this Microsoft.Maui.Platform.MauiWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoForward(this Microsoft.Maui.Platform.MauiWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateReload(this Microsoft.Maui.Platform.MauiWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this Microsoft.Maui.Platform.MauiWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this Microsoft.Maui.Platform.MauiWebView! platformWebView, Microsoft.Maui.IWebView! webView, Microsoft.Maui.IWebViewDelegate? webViewDelegate) -> void +static Microsoft.Maui.Platform.WindowExtensions.GetBaseLayout(this ElmSharp.Window! window) -> ElmSharp.Layout! +static Microsoft.Maui.Platform.WindowExtensions.GetDisplayDensity(this ElmSharp.Window! window) -> float +static Microsoft.Maui.Platform.WindowExtensions.GetModalStack(this ElmSharp.Window! window) -> Microsoft.Maui.Platform.ModalStack! +static Microsoft.Maui.Platform.WindowExtensions.Initialize(this ElmSharp.Window! platformWindow) -> void +static Microsoft.Maui.Platform.WindowExtensions.SetBackButtonPressedHandler(this ElmSharp.Window! window, System.Func! handler) -> void +static Microsoft.Maui.Platform.WindowExtensions.SetBaseLayout(this ElmSharp.Window! window, ElmSharp.Layout! layout) -> void +static Microsoft.Maui.Platform.WindowExtensions.SetModalStack(this ElmSharp.Window! window, Microsoft.Maui.Platform.ModalStack! modalStack) -> void +static Microsoft.Maui.Platform.WindowExtensions.SetOverlay(this ElmSharp.Window! window, ElmSharp.EvasObject! content) -> void +static Microsoft.Maui.Platform.WindowExtensions.SetWindowCloseRequestHandler(this ElmSharp.Window! window, System.Action! handler) -> void +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.RadioButtonExtensions.UpdateIsChecked(this Microsoft.Maui.Platform.MauiRadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.RadioButtonExtensions.UpdateTextColor(this Microsoft.Maui.Platform.MauiRadioButton! platformRadioButton, Microsoft.Maui.ITextStyle! radioButton) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.ActivityIndicatorHandler.DefaultColor.get -> ElmSharp.Color +virtual Microsoft.Maui.Handlers.DatePickerHandler.OnDateTimeChanged(object? sender, Tizen.UIExtensions.Common.DateChangedEventArgs! dcea) -> void +virtual Microsoft.Maui.Handlers.DatePickerHandler.OnPickerClosed(object? sender, System.EventArgs! args) -> void +virtual Microsoft.Maui.Handlers.DatePickerHandler.OnPickerOpened(object? sender, System.EventArgs! args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ProgressBarHandler.DefaultColor.get -> ElmSharp.Color +virtual Microsoft.Maui.Handlers.ShapeViewHandler.MinimumSize.get -> double +virtual Microsoft.Maui.Handlers.TimePickerHandler.OnDateTimeChanged(object? sender, Tizen.UIExtensions.Common.DateChangedEventArgs! dcea) -> void +virtual Microsoft.Maui.Handlers.TimePickerHandler.OnPickerClosed(object? sender, System.EventArgs! args) -> void +virtual Microsoft.Maui.Handlers.TimePickerHandler.OnPickerOpened(object? sender, System.EventArgs! args) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.OnFocused() -> void +virtual Microsoft.Maui.Handlers.ViewHandler.OnPlatformViewDeleted() -> void +virtual Microsoft.Maui.Handlers.ViewHandler.OnUnfocused() -> void +virtual Microsoft.Maui.Handlers.ViewHandler.ComputeAbsolutePoint(Microsoft.Maui.Graphics.Rect frame) -> Microsoft.Maui.Graphics.Point +virtual Microsoft.Maui.Handlers.ViewHandler.ComputeAbsoluteX(Microsoft.Maui.Graphics.Rect frame) -> double +virtual Microsoft.Maui.Handlers.ViewHandler.ComputeAbsoluteY(Microsoft.Maui.Graphics.Rect frame) -> double +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.GetPlatformContentGeometry() -> ElmSharp.Rect +virtual Microsoft.Maui.Handlers.ViewHandler.Measure(double availableWidth, double availableHeight) -> Microsoft.Maui.Graphics.Size +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.Handlers.WebViewHandler.MinimumSize.get -> double +virtual Microsoft.Maui.Platform.MauiRadioButton.Measure(double availableWidth, double availableHeight) -> Tizen.UIExtensions.Common.Size +virtual Microsoft.Maui.Platform.SKClipperView.OnPaintSurface(object? sender, SkiaSharp.Views.Tizen.SKPaintSurfaceEventArgs! e) -> void +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object diff --git a/src/Core/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Core/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Core/src/PublicAPI/net-windows/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/net-windows/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..291decf3a2c8 --- /dev/null +++ b/src/Core/src/PublicAPI/net-windows/PublicAPI.Shipped.txt @@ -0,0 +1,2886 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.ImageSourceService.GetImageSourceAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.MauiWinUIApplication.CreateMauiApp() -> Microsoft.Maui.Hosting.MauiApp! +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.UI.Xaml.LaunchActivatedEventArgs? launchActivatedEventArgs) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.LaunchActivatedEventArgs.get -> Microsoft.UI.Xaml.LaunchActivatedEventArgs? +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.Core_XamlTypeInfo.XamlMetaDataProvider +Microsoft.Maui.Core_XamlTypeInfo.XamlMetaDataProvider.XamlMetaDataProvider() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileImageSourceService.GetImageSourceAsync(Microsoft.Maui.IFileImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontImageSourceService.GetImageSourceAsync(Microsoft.Maui.IFontImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFontFamily.get -> Microsoft.UI.Xaml.Media.FontFamily! +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontManager.GetFontFamily(Microsoft.Maui.Font font) -> Microsoft.UI.Xaml.Media.FontFamily! +Microsoft.Maui.FontManager.GetFontSize(Microsoft.Maui.Font font, double defaultFontSize = 0) -> double +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.ProgressRing! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentPanel! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.Button! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.CheckBox! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> Microsoft.Maui.Platform.ContentPanel! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.CalendarDatePicker! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.TextBox! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.TextBox! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> Microsoft.Maui.Platform.RootNavigationView! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.Button! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.Image! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiPageControl! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.TextBlock! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.MenuBar! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.MenuBarItem! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.MenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.MenuFlyoutSubItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.Frame! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.ComboBox! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.ProgressBar! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.RadioButton! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.RefreshContainer! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.ScrollViewer! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.AutoSuggestBox! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> Microsoft.UI.Xaml.Controls.AutoSuggestBox? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> Microsoft.Maui.Graphics.Win2D.W2DGraphicsView! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.Slider! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiStepper! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.SwipeItem! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> Microsoft.UI.Xaml.FrameworkElement! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.SwipeControl! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.ToggleSwitch! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.TimePicker! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> Microsoft.Maui.Platform.MauiToolbar! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> Microsoft.UI.Xaml.Controls.WebView2! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> Microsoft.UI.Xaml.Window! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! child) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.LaunchArgs.get -> Microsoft.UI.Xaml.LaunchActivatedEventArgs? +Microsoft.Maui.Handlers.OpenWindowRequest.LaunchArgs.init -> void +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null, Microsoft.UI.Xaml.LaunchActivatedEventArgs? LaunchArgs = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> Microsoft.UI.Xaml.Controls.AutoSuggestBox? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFontFamily.get -> Microsoft.UI.Xaml.Media.FontFamily! +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontManager.GetFontFamily(Microsoft.Maui.Font font) -> Microsoft.UI.Xaml.Media.FontFamily! +Microsoft.Maui.IFontManager.GetFontSize(Microsoft.Maui.Font font, double defaultFontSize = 0) -> double +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService.GetImageSourceAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> Microsoft.Maui.Platform.LayoutPanel! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(Microsoft.UI.Xaml.Media.ImageSource! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(Microsoft.UI.Xaml.Media.ImageSource! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> Microsoft.UI.Xaml.Media.ImageSource! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IPlatformViewHandler +Microsoft.Maui.IPlatformViewHandler.ContainerView.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.IPlatformViewHandler.PlatformView.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.WindowsLifecycle +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnActivated +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnClosed +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnLaunched +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnLaunching +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnPlatformMessage +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnPlatformWindowSubclassed +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnResumed +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnVisibilityChanged +Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnWindowCreated +Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.WindowsLifecycleExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiWinUIApplication +Microsoft.Maui.MauiWinUIApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.MauiWinUIApplication.Application.set -> void +Microsoft.Maui.MauiWinUIApplication.LaunchActivatedEventArgs.get -> Microsoft.UI.Xaml.LaunchActivatedEventArgs! +Microsoft.Maui.MauiWinUIApplication.LaunchActivatedEventArgs.set -> void +Microsoft.Maui.MauiWinUIApplication.MauiWinUIApplication() -> void +Microsoft.Maui.MauiWinUIApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.MauiWinUIApplication.Services.set -> void +Microsoft.Maui.MauiWinUIWindow +Microsoft.Maui.MauiWinUIWindow.MauiWinUIWindow() -> void +Microsoft.Maui.MauiWinUIWindow.WindowHandle.get -> System.IntPtr +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ActivityIndicatorExtensions +Microsoft.Maui.Platform.AlignmentExtensions +Microsoft.Maui.Platform.ApplicationExtensions +Microsoft.Maui.Platform.AspectExtensions +Microsoft.Maui.Platform.BorderExtensions +Microsoft.Maui.Platform.ButtonExtensions +Microsoft.Maui.Platform.CharacterSpacingExtensions +Microsoft.Maui.Platform.CheckBoxExtensions +Microsoft.Maui.Platform.ColorConverter +Microsoft.Maui.Platform.ColorConverter.ColorConverter() -> void +Microsoft.Maui.Platform.ColorConverter.Convert(object! value, System.Type! targetType, object! parameter, string! language) -> object! +Microsoft.Maui.Platform.ColorConverter.ConvertBack(object! value, System.Type! targetType, object! parameter, string! language) -> object! +Microsoft.Maui.Platform.ColorExtensions +Microsoft.Maui.Platform.ContentPanel +Microsoft.Maui.Platform.ContentPanel.ContentPanel() -> void +Microsoft.Maui.Platform.ContentPanel.UpdateBackground(Microsoft.Maui.Graphics.Paint? background) -> void +Microsoft.Maui.Platform.ContentPanel.UpdateBorderShape(Microsoft.Maui.Graphics.IShape! borderShape) -> void +Microsoft.Maui.Platform.ControlExtensions +Microsoft.Maui.Platform.DatePickerExtensions +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.FontExtensions +Microsoft.Maui.Platform.GraphicsExtensions +Microsoft.Maui.Platform.GraphicsViewExtensions +Microsoft.Maui.Platform.ImageExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.ImageViewExtensions +Microsoft.Maui.Platform.KeyboardExtensions +Microsoft.Maui.Platform.LayoutPanel +Microsoft.Maui.Platform.LayoutPanel.ClipsToBounds.get -> bool +Microsoft.Maui.Platform.LayoutPanel.ClipsToBounds.set -> void +Microsoft.Maui.Platform.LayoutPanel.LayoutPanel() -> void +Microsoft.Maui.Platform.LayoutPanel.UpdateInputTransparent(bool inputTransparent, Microsoft.UI.Xaml.Media.Brush? background) -> void +Microsoft.Maui.Platform.LayoutPanelExtensions +Microsoft.Maui.Platform.MauiAutoSuggestBox +Microsoft.Maui.Platform.MauiButton +Microsoft.Maui.Platform.MauiButton.MauiButton() -> void +Microsoft.Maui.Platform.MauiButtonAutomationPeer +Microsoft.Maui.Platform.MauiButtonAutomationPeer.MauiButtonAutomationPeer(Microsoft.UI.Xaml.Controls.Button! owner) -> void +Microsoft.Maui.Platform.MauiCancelButton +Microsoft.Maui.Platform.MauiCancelButton.IsReady.get -> bool +Microsoft.Maui.Platform.MauiCancelButton.MauiCancelButton() -> void +Microsoft.Maui.Platform.MauiCancelButton.ReadyChanged -> System.EventHandler +Microsoft.Maui.Platform.MauiNavigationView +Microsoft.Maui.Platform.MauiNavigationView.MauiNavigationView() -> void +Microsoft.Maui.Platform.MauiNavigationView.NavigationViewBackButtonMargin.get -> Microsoft.UI.Xaml.Thickness +Microsoft.Maui.Platform.MauiNavigationView.NavigationViewBackButtonMargin.set -> void +Microsoft.Maui.Platform.MauiPageControl +Microsoft.Maui.Platform.MauiPageControl.MauiPageControl() -> void +Microsoft.Maui.Platform.MauiPageControl.SetIndicatorView(Microsoft.Maui.IIndicatorView! indicatorView) -> void +Microsoft.Maui.Platform.MauiPasswordTextBox +Microsoft.Maui.Platform.MauiPasswordTextBox.IsObfuscationDelayed.get -> bool +Microsoft.Maui.Platform.MauiPasswordTextBox.IsObfuscationDelayed.set -> void +Microsoft.Maui.Platform.MauiPasswordTextBox.IsPassword.get -> bool +Microsoft.Maui.Platform.MauiPasswordTextBox.IsPassword.set -> void +Microsoft.Maui.Platform.MauiPasswordTextBox.MauiPasswordTextBox() -> void +Microsoft.Maui.Platform.MauiPasswordTextBox.Password.get -> string! +Microsoft.Maui.Platform.MauiPasswordTextBox.Password.set -> void +Microsoft.Maui.Platform.MauiStepper +Microsoft.Maui.Platform.MauiStepper.Increment.get -> double +Microsoft.Maui.Platform.MauiStepper.Increment.set -> void +Microsoft.Maui.Platform.MauiStepper.MauiStepper() -> void +Microsoft.Maui.Platform.MauiStepper.Maximum.get -> double +Microsoft.Maui.Platform.MauiStepper.Maximum.set -> void +Microsoft.Maui.Platform.MauiStepper.Minimum.get -> double +Microsoft.Maui.Platform.MauiStepper.Minimum.set -> void +Microsoft.Maui.Platform.MauiStepper.Value.get -> double +Microsoft.Maui.Platform.MauiStepper.Value.set -> void +Microsoft.Maui.Platform.MauiStepper.ValueChanged -> System.EventHandler +Microsoft.Maui.Platform.MauiTextBox +Microsoft.Maui.Platform.MauiToolbar +Microsoft.Maui.Platform.MauiToolbar.InitializeComponent() -> void +Microsoft.Maui.Platform.MauiToolbar.IsBackButtonVisible.get -> Microsoft.UI.Xaml.Controls.NavigationViewBackButtonVisible +Microsoft.Maui.Platform.MauiToolbar.IsBackButtonVisible.set -> void +Microsoft.Maui.Platform.MauiToolbar.IsBackEnabled.get -> bool +Microsoft.Maui.Platform.MauiToolbar.IsBackEnabled.set -> void +Microsoft.Maui.Platform.MauiToolbar.MauiToolbar() -> void +Microsoft.Maui.Platform.MauiWebView +Microsoft.Maui.Platform.MauiWebView.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.Platform.MauiWebView.LoadUrl(string? url) -> void +Microsoft.Maui.Platform.MauiWebView.MauiWebView() -> void +Microsoft.Maui.Platform.NavigationRootManager +Microsoft.Maui.Platform.NavigationRootManager.NavigationRootManager(Microsoft.UI.Xaml.Window! platformWindow) -> void +Microsoft.Maui.Platform.NavigationRootManager.RootView.get -> Microsoft.UI.Xaml.FrameworkElement! +Microsoft.Maui.Platform.NavigationViewExtensions +Microsoft.Maui.Platform.PickerExtensions +Microsoft.Maui.Platform.PlatformTouchGraphicsView +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Connect(Microsoft.Maui.IGraphicsView! graphicsView) -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Disconnect() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.Invalidate() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.PlatformTouchGraphicsView() -> void +Microsoft.Maui.Platform.PlatformTouchGraphicsView.UpdateDrawable(Microsoft.Maui.IGraphicsView! graphicsView) -> void +Microsoft.Maui.Platform.PrimitiveExtensions +Microsoft.Maui.Platform.ProgressBarExtensions +Microsoft.Maui.Platform.RadioButtonExtensions +Microsoft.Maui.Platform.RootNavigationView +Microsoft.Maui.Platform.RootNavigationView.RootNavigationView() -> void +Microsoft.Maui.Platform.RootPanel +Microsoft.Maui.Platform.RootPanel.RootPanel() -> void +Microsoft.Maui.Platform.ScrollViewerExtensions +Microsoft.Maui.Platform.SearchBarExtensions +Microsoft.Maui.Platform.ShapesExtensions +Microsoft.Maui.Platform.SizeExtensions +Microsoft.Maui.Platform.SliderExtensions +Microsoft.Maui.Platform.StackNavigationManager +Microsoft.Maui.Platform.StackNavigationManager.CurrentPage.get -> Microsoft.Maui.IView! +Microsoft.Maui.Platform.StackNavigationManager.MauiContext.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.Platform.StackNavigationManager.NavigationFrame.get -> Microsoft.UI.Xaml.Controls.Frame! +Microsoft.Maui.Platform.StackNavigationManager.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.Platform.StackNavigationManager.NavigationStack.set -> void +Microsoft.Maui.Platform.StackNavigationManager.StackNavigationManager(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.Platform.StackNavigationManager.WindowManager.get -> Microsoft.Maui.Platform.NavigationRootManager! +Microsoft.Maui.Platform.StepperExtensions +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.SwitchExtensions +Microsoft.Maui.Platform.TextAlignmentToHorizontalAlignmentConverter +Microsoft.Maui.Platform.TextAlignmentToHorizontalAlignmentConverter.Convert(object! value, System.Type! targetType, object! parameter, string! language) -> object! +Microsoft.Maui.Platform.TextAlignmentToHorizontalAlignmentConverter.ConvertBack(object! value, System.Type! targetType, object! parameter, string! language) -> object! +Microsoft.Maui.Platform.TextAlignmentToHorizontalAlignmentConverter.TextAlignmentToHorizontalAlignmentConverter() -> void +Microsoft.Maui.Platform.TextBlockExtensions +Microsoft.Maui.Platform.TextBoxExtensions +Microsoft.Maui.Platform.TextElementExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.TimePickerExtensions +Microsoft.Maui.Platform.TransformationExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WebViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WindowRootView +Microsoft.Maui.Platform.WindowRootView.AppTitleBarTemplate.get -> Microsoft.UI.Xaml.DataTemplate? +Microsoft.Maui.Platform.WindowRootView.AppTitleBarTemplate.set -> void +Microsoft.Maui.Platform.WindowRootView.BackRequested -> Windows.Foundation.TypedEventHandler? +Microsoft.Maui.Platform.WindowRootView.NavigationViewControl.get -> Microsoft.Maui.Platform.RootNavigationView? +Microsoft.Maui.Platform.WindowRootView.WindowRootView() -> void +Microsoft.Maui.Platform.WindowsPlatformMessageEventArgs +Microsoft.Maui.Platform.WindowsPlatformMessageEventArgs.Hwnd.get -> System.IntPtr +Microsoft.Maui.Platform.WindowsPlatformMessageEventArgs.LParam.get -> System.IntPtr +Microsoft.Maui.Platform.WindowsPlatformMessageEventArgs.MessageId.get -> uint +Microsoft.Maui.Platform.WindowsPlatformMessageEventArgs.WindowsPlatformMessageEventArgs(System.IntPtr hwnd, uint messageId, System.IntPtr wParam, System.IntPtr lParam) -> void +Microsoft.Maui.Platform.WindowsPlatformMessageEventArgs.WParam.get -> System.IntPtr +Microsoft.Maui.Platform.WindowsPlatformWindowSubclassedEventArgs +Microsoft.Maui.Platform.WindowsPlatformWindowSubclassedEventArgs.Hwnd.get -> System.IntPtr +Microsoft.Maui.Platform.WindowsPlatformWindowSubclassedEventArgs.WindowsPlatformWindowSubclassedEventArgs(System.IntPtr hwnd) -> void +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Child.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Dispose() -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.WrapperView() -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.GetImageSourceAsync(Microsoft.Maui.IStreamImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.GetImageSourceAsync(Microsoft.Maui.IUriImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> Microsoft.UI.Xaml.FrameworkElement? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Animations.PlatformTicker.Start() -> void +override Microsoft.Maui.Animations.PlatformTicker.Stop() -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.FileImageSourceService.GetImageSourceAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.FontImageSourceService.GetImageSourceAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.ProgressRing! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Application! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentPanel! +override Microsoft.Maui.Handlers.BorderHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.ButtonHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.Button! platformView) -> void +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.Button! +override Microsoft.Maui.Handlers.ButtonHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.Button! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.CheckBox! platformView) -> void +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.CheckBox! +override Microsoft.Maui.Handlers.CheckBoxHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.CheckBox! platformView) -> void +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.ContentPanel! +override Microsoft.Maui.Handlers.ContentViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.CalendarDatePicker! +override Microsoft.Maui.Handlers.DatePickerHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.TextBox! platformView) -> void +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.TextBox! +override Microsoft.Maui.Handlers.EditorHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.TextBox! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.TextBox! platformView) -> void +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.TextBox! +override Microsoft.Maui.Handlers.EntryHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.TextBox! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.ConnectHandler(Microsoft.Maui.Platform.RootNavigationView! platformView) -> void +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.RootNavigationView! +override Microsoft.Maui.Handlers.FlyoutViewHandler.DisconnectHandler(Microsoft.Maui.Platform.RootNavigationView! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.PlatformTouchGraphicsView! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(Microsoft.Maui.Platform.PlatformTouchGraphicsView! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.Button! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.Button! +override Microsoft.Maui.Handlers.ImageButtonHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.Button! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.Image! +override Microsoft.Maui.Handlers.ImageHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.Image! platformView) -> void +override Microsoft.Maui.Handlers.ImageHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.IndicatorViewHandler.ConnectHandler(Microsoft.Maui.Platform.MauiPageControl! platformView) -> void +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiPageControl! +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.TextBlock! +override Microsoft.Maui.Handlers.LabelHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.LabelHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.LabelHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> Microsoft.Maui.Platform.LayoutPanel! +override Microsoft.Maui.Handlers.LayoutHandler.DisconnectHandler(Microsoft.Maui.Platform.LayoutPanel! platformView) -> void +override Microsoft.Maui.Handlers.LayoutHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Controls.MenuBar! +override Microsoft.Maui.Handlers.MenuBarHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Controls.MenuBarItem! +override Microsoft.Maui.Handlers.MenuBarItemHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.MenuFlyoutItem! PlatformView) -> void +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Controls.MenuFlyoutItem! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.MenuFlyoutItem! PlatformView) -> void +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.MenuFlyoutSubItem! PlatformView) -> void +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Controls.MenuFlyoutSubItem! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.MenuFlyoutSubItem! PlatformView) -> void +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +override Microsoft.Maui.Handlers.NavigationViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.Frame! platformView) -> void +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.Frame! +override Microsoft.Maui.Handlers.NavigationViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.Frame! platformView) -> void +override Microsoft.Maui.Handlers.PickerHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ComboBox! platformView) -> void +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.ComboBox! +override Microsoft.Maui.Handlers.PickerHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ComboBox! platformView) -> void +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.ProgressBar! +override Microsoft.Maui.Handlers.RadioButtonHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.RadioButton! platformView) -> void +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.RadioButton! +override Microsoft.Maui.Handlers.RadioButtonHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.RadioButton! platformView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.RefreshContainer! nativeView) -> void +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.RefreshContainer! +override Microsoft.Maui.Handlers.RefreshViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.RefreshContainer! nativeView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ScrollViewer! platformView) -> void +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.ScrollViewer! +override Microsoft.Maui.Handlers.ScrollViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ScrollViewer! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformView) -> void +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.AutoSuggestBox! +override Microsoft.Maui.Handlers.SearchBarHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformView) -> void +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> Microsoft.Maui.Graphics.Win2D.W2DGraphicsView! +override Microsoft.Maui.Handlers.ShapeViewHandler.NeedsContainer.get -> bool +override Microsoft.Maui.Handlers.SliderHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.Slider! platformView) -> void +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.Slider! +override Microsoft.Maui.Handlers.SliderHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.Slider! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.SwipeItem! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Controls.SwipeItem! +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.SwipeItem! platformView) -> void +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.FrameworkElement! +override Microsoft.Maui.Handlers.SwipeViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.SwipeControl! platformView) -> void +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.SwipeControl! +override Microsoft.Maui.Handlers.SwipeViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.SwipeControl! platformView) -> void +override Microsoft.Maui.Handlers.SwipeViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.SwitchHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.ToggleSwitch! platformView) -> void +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.ToggleSwitch! +override Microsoft.Maui.Handlers.SwitchHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.ToggleSwitch! platformView) -> void +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.FrameworkElement! +override Microsoft.Maui.Handlers.TimePickerHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.TimePicker! platformView) -> void +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.TimePicker! +override Microsoft.Maui.Handlers.TimePickerHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.TimePicker! platformView) -> void +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> Microsoft.Maui.Platform.MauiToolbar! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.WebView2! platformView) -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.WebView2! +override Microsoft.Maui.Handlers.WebViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.WebView2! platformView) -> void +override Microsoft.Maui.Handlers.WindowHandler.ConnectHandler(Microsoft.UI.Xaml.Window! platformView) -> void +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Window! +override Microsoft.Maui.Handlers.WindowHandler.DisconnectHandler(Microsoft.UI.Xaml.Window! platformView) -> void +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.MauiWinUIApplication.OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs! args) -> void +override Microsoft.Maui.Platform.ContentPanel.ArrangeOverride(Windows.Foundation.Size finalSize) -> Windows.Foundation.Size +override Microsoft.Maui.Platform.ContentPanel.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Platform.LayoutPanel.ArrangeOverride(Windows.Foundation.Size finalSize) -> Windows.Foundation.Size +override Microsoft.Maui.Platform.LayoutPanel.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Platform.MauiButton.OnCreateAutomationPeer() -> Microsoft.UI.Xaml.Automation.Peers.AutomationPeer! +override Microsoft.Maui.Platform.MauiButtonAutomationPeer.GetChildrenCore() -> System.Collections.Generic.IList? +override Microsoft.Maui.Platform.MauiButtonAutomationPeer.GetLabeledByCore() -> Microsoft.UI.Xaml.Automation.Peers.AutomationPeer? +override Microsoft.Maui.Platform.MauiCancelButton.OnApplyTemplate() -> void +override Microsoft.Maui.Platform.MauiNavigationView.OnApplyTemplate() -> void +override Microsoft.Maui.Platform.MauiPasswordTextBox.OnKeyDown(Microsoft.UI.Xaml.Input.KeyRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.MauiStepper.OnApplyTemplate() -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnPointerCanceled(Microsoft.UI.Xaml.Input.PointerRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnPointerEntered(Microsoft.UI.Xaml.Input.PointerRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnPointerExited(Microsoft.UI.Xaml.Input.PointerRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnPointerMoved(Microsoft.UI.Xaml.Input.PointerRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnPointerPressed(Microsoft.UI.Xaml.Input.PointerRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.PlatformTouchGraphicsView.OnPointerReleased(Microsoft.UI.Xaml.Input.PointerRoutedEventArgs! e) -> void +override Microsoft.Maui.Platform.RootPanel.ArrangeOverride(Windows.Foundation.Size finalSize) -> Windows.Foundation.Size +override Microsoft.Maui.Platform.RootPanel.MeasureOverride(Windows.Foundation.Size availableSize) -> Windows.Foundation.Size +override Microsoft.Maui.Platform.WindowRootView.OnApplyTemplate() -> void +override Microsoft.Maui.Platform.WindowRootView.OnContentChanged(object! oldContent, object! newContent) -> void +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.StreamImageSourceService.GetImageSourceAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.UriImageSourceService.GetImageSourceAsync(Microsoft.Maui.IImageSource! imageSource, float scale = 1, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task?>! +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.HandleUIChange() -> void +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.CreateBrush(this Microsoft.Maui.Graphics.ImagePaint! imagePaint) -> Microsoft.UI.Xaml.Media.Brush? +static Microsoft.Maui.Graphics.PaintExtensions.CreateBrush(this Microsoft.Maui.Graphics.LinearGradientPaint! linearGradientPaint) -> Microsoft.UI.Xaml.Media.Brush? +static Microsoft.Maui.Graphics.PaintExtensions.CreateBrush(this Microsoft.Maui.Graphics.PatternPaint! patternPaint) -> Microsoft.UI.Xaml.Media.Brush? +static Microsoft.Maui.Graphics.PaintExtensions.CreateBrush(this Microsoft.Maui.Graphics.RadialGradientPaint! radialGradientPaint) -> Microsoft.UI.Xaml.Media.Brush? +static Microsoft.Maui.Graphics.PaintExtensions.CreateBrush(this Microsoft.Maui.Graphics.SolidPaint! solidPaint) -> Microsoft.UI.Xaml.Media.Brush? +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Graphics.PaintExtensions.ToPlatform(this Microsoft.Maui.Graphics.Paint! paint) -> Microsoft.UI.Xaml.Media.Brush? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapBackground(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapHeight(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapWidth(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapBackground(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapBackground(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapBackground(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapDetail(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapFlyout(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapFlyoutBehavior(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapFlyoutWidth(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapIsGestureEnabled(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! view) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.MapIsPresented(Microsoft.Maui.Handlers.IFlyoutViewHandler! handler, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapBackground(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapBackground(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapSourceAsync(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapBackground(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! view) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapOpacity(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! view) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapIsEnabled(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! view) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapText(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! view) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MapIsEnabled(Microsoft.Maui.Handlers.IMenuFlyoutItemHandler! handler, Microsoft.Maui.IMenuFlyoutItem! view) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MapSource(Microsoft.Maui.Handlers.IMenuFlyoutItemHandler! handler, Microsoft.Maui.IMenuFlyoutItem! view) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MapText(Microsoft.Maui.Handlers.IMenuFlyoutItemHandler! handler, Microsoft.Maui.IMenuFlyoutItem! view) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapIsEnabled(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuFlyoutSubItem! view) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapSource(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuFlyoutSubItem! view) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapText(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuFlyoutSubItem! view) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapBackground(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapBackground(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshViewBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapBackground(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.Handlers.ISliderHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapToolbar(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapFlowDirection(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapMenuBar(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapToolbar(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! view) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnActivated(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnActivated! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnClosed(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnClosed! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnLaunched(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnLaunched! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnLaunching(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnLaunching! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnPlatformMessage(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnPlatformMessage! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnPlatformWindowSubclassed(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnPlatformWindowSubclassed! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnResumed(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnResumed! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnVisibilityChanged(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnVisibilityChanged! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleBuilderExtensions.OnWindowCreated(this Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! lifecycle, Microsoft.Maui.LifecycleEvents.WindowsLifecycle.OnWindowCreated! del) -> Microsoft.Maui.LifecycleEvents.IWindowsLifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.WindowsLifecycleExtensions.AddWindows(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, System.Action! configureDelegate) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.MauiWinUIApplication.Current.get -> Microsoft.Maui.MauiWinUIApplication! +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateColor(this Microsoft.UI.Xaml.Controls.ProgressRing! platformActivityIndicator, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateColor(this Microsoft.UI.Xaml.Controls.ProgressRing! platformActivityIndicator, Microsoft.Maui.IActivityIndicator! activityIndicator, object? foregroundDefault) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateHeight(this Microsoft.UI.Xaml.Controls.ProgressRing! platformActivityIndicator, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateIsRunning(this Microsoft.UI.Xaml.Controls.ProgressRing! platformActivityIndicator, Microsoft.Maui.IActivityIndicator! virtualView) -> void +static Microsoft.Maui.Platform.ActivityIndicatorExtensions.UpdateWidth(this Microsoft.UI.Xaml.Controls.ProgressRing! platformActivityIndicator, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Platform.AlignmentExtensions.ToPlatform(this Microsoft.Maui.TextAlignment alignment, bool isLtr = true) -> Microsoft.UI.Xaml.TextAlignment +static Microsoft.Maui.Platform.AlignmentExtensions.ToPlatformHorizontalAlignment(this Microsoft.Maui.TextAlignment alignment) -> Microsoft.UI.Xaml.HorizontalAlignment +static Microsoft.Maui.Platform.AlignmentExtensions.ToPlatformVerticalAlignment(this Microsoft.Maui.TextAlignment alignment) -> Microsoft.UI.Xaml.VerticalAlignment +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this Microsoft.UI.Xaml.Application! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.Handlers.OpenWindowRequest? args) -> void +static Microsoft.Maui.Platform.ApplicationExtensions.CreatePlatformWindow(this Microsoft.UI.Xaml.Application! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.UI.Xaml.LaunchActivatedEventArgs? args) -> void +static Microsoft.Maui.Platform.AspectExtensions.ToStretch(this Microsoft.Maui.Aspect aspect) -> Microsoft.UI.Xaml.Media.Stretch +static Microsoft.Maui.Platform.BorderExtensions.UpdateBackground(this Microsoft.UI.Xaml.Shapes.Path! borderPath, Microsoft.Maui.Graphics.Paint? background) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateBorderDashOffset(this Microsoft.UI.Xaml.Shapes.Path! borderPath, double borderDashOffset) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateBorderShape(this Microsoft.UI.Xaml.Shapes.Path! borderPath, Microsoft.Maui.Graphics.IShape? borderShape, double width, double height) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateStroke(this Microsoft.UI.Xaml.Shapes.Path! borderPath, Microsoft.Maui.Graphics.Paint? borderBrush) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateStrokeDashPattern(this Microsoft.UI.Xaml.Shapes.Path! borderPath, float[]? borderDashArray) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateStrokeLineCap(this Microsoft.UI.Xaml.Shapes.Path! borderPath, Microsoft.Maui.Graphics.LineCap strokeLineCap) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateStrokeLineJoin(this Microsoft.UI.Xaml.Shapes.Path! borderPath, Microsoft.Maui.Graphics.LineJoin strokeLineJoin) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateStrokeMiterLimit(this Microsoft.UI.Xaml.Shapes.Path! borderPath, double strokeMiterLimit) -> void +static Microsoft.Maui.Platform.BorderExtensions.UpdateStrokeThickness(this Microsoft.UI.Xaml.Shapes.Path! borderPath, double borderWidth) -> void +static Microsoft.Maui.Platform.ButtonExtensions.GetContent(this Microsoft.UI.Xaml.Controls.Primitives.ButtonBase! platformButton) -> T? +static Microsoft.Maui.Platform.ButtonExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.Primitives.ButtonBase! platformButton, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateCornerRadius(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateImageSource(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.UI.Xaml.Media.ImageSource? nativeImageSource) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdatePadding(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.IPadding! padding) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeColor(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateStrokeThickness(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateText(this Microsoft.UI.Xaml.Controls.Button! platformButton, Microsoft.Maui.IText! text) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateText(this Microsoft.UI.Xaml.Controls.Button! platformButton, string! text) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.Primitives.ButtonBase! platformButton, Microsoft.Maui.Graphics.Color! textColor) -> void +static Microsoft.Maui.Platform.ButtonExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.Primitives.ButtonBase! platformButton, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Platform.CharacterSpacingExtensions.ToEm(this double pt) -> int +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateForeground(this Microsoft.UI.Xaml.Controls.CheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.CheckBoxExtensions.UpdateIsChecked(this Microsoft.UI.Xaml.Controls.CheckBox! platformCheckBox, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Platform.ColorExtensions.GetContrastingColor(this Windows.UI.Color color) -> Windows.UI.Color +static Microsoft.Maui.Platform.ColorExtensions.IsDefault(this Microsoft.Maui.Graphics.Color? color) -> bool +static Microsoft.Maui.Platform.ColorExtensions.ToColor(this Microsoft.UI.Xaml.Media.SolidColorBrush! solidColorBrush) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Platform.ColorExtensions.ToColor(this Windows.UI.Color color) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Platform.ColorExtensions.ToPlatform(this Microsoft.Maui.Graphics.Color! color) -> Microsoft.UI.Xaml.Media.Brush! +static Microsoft.Maui.Platform.ColorExtensions.ToWindowsColor(this Microsoft.Maui.Graphics.Color! color) -> Windows.UI.Color +static Microsoft.Maui.Platform.ControlExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.Border! platformControl, Microsoft.Maui.Graphics.Paint? paint, Microsoft.UI.Xaml.Media.Brush? defaultBrush = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.Control! platformControl, Microsoft.Maui.Graphics.Paint? paint, Microsoft.UI.Xaml.Media.Brush? defaultBrush = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.Control! platformControl, Microsoft.Maui.IView! view, Microsoft.UI.Xaml.Media.Brush? defaultBrush = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.Panel! platformControl, Microsoft.Maui.Graphics.Paint? paint, Microsoft.UI.Xaml.Media.Brush? defaultBrush = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateBackgroundImageSourceAsync(this Microsoft.UI.Xaml.Controls.Control! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ControlExtensions.UpdateBackgroundImageSourceAsync(this Microsoft.UI.Xaml.Controls.Panel! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ControlExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.Control! nativeControl, Microsoft.Maui.ITextStyle! text) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.Control! platformButton, Microsoft.Maui.ITextStyle! textStyle, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.Control! platformControl, Microsoft.Maui.Font font, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateForegroundColor(this Microsoft.UI.Xaml.Controls.Control! platformControl, Microsoft.Maui.Graphics.Color! color, Microsoft.UI.Xaml.Media.Brush? defaultBrush = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateIsEnabled(this Microsoft.UI.Xaml.Controls.Control! platformControl, bool isEnabled) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdatePadding(this Microsoft.UI.Xaml.Controls.Control! platformControl, Microsoft.Maui.IPadding! padding, Microsoft.UI.Xaml.Thickness? defaultThickness = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdatePadding(this Microsoft.UI.Xaml.Controls.Control! platformControl, Microsoft.Maui.Thickness padding, Microsoft.UI.Xaml.Thickness? defaultThickness = null) -> void +static Microsoft.Maui.Platform.ControlExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.Control! nativeControl, Microsoft.Maui.ITextStyle! text) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateDate(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, System.DateTime dateTime) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMaximumDate(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateMinimumDate(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.DatePickerExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.CalendarDatePicker! platformDatePicker, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this Microsoft.UI.Xaml.Application! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this Microsoft.UI.Xaml.Window! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.UI.Xaml.FrameworkElement! +static Microsoft.Maui.Platform.FontExtensions.ToFontStyle(this Microsoft.Maui.Font fontAttributes) -> Windows.UI.Text.FontStyle +static Microsoft.Maui.Platform.FontExtensions.ToFontWeight(this Microsoft.Maui.Font font) -> Windows.UI.Text.FontWeight +static Microsoft.Maui.Platform.GraphicsExtensions.AsPoint(this Microsoft.Maui.Graphics.PointF target) -> Windows.Foundation.Point +static Microsoft.Maui.Platform.GraphicsExtensions.AsPoint(this Microsoft.Maui.Graphics.PointF target, float ppu) -> Windows.Foundation.Point +static Microsoft.Maui.Platform.GraphicsViewExtensions.UpdateDrawable(this Microsoft.Maui.Graphics.Win2D.W2DGraphicsView! PlatformGraphicsView, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Platform.ImageExtensions.GetImageSourceSize(this Microsoft.UI.Xaml.Media.ImageSource! source, Microsoft.UI.Xaml.FrameworkElement? element = null) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Platform.ImageExtensions.ToIconSource(this Microsoft.Maui.IImageSource! source, Microsoft.Maui.IMauiContext! mauiContext) -> Microsoft.UI.Xaml.Controls.IconSource? +static Microsoft.Maui.Platform.ImageViewExtensions.Clear(this Microsoft.UI.Xaml.Controls.Image! imageView) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateAspect(this Microsoft.UI.Xaml.Controls.Image! imageView, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Platform.ImageViewExtensions.UpdateIsAnimationPlaying(this Microsoft.UI.Xaml.Controls.Image! imageView, Microsoft.Maui.IImageSourcePart! image) -> void +static Microsoft.Maui.Platform.KeyboardExtensions.ToInputScope(this Microsoft.Maui.Keyboard! self) -> Microsoft.UI.Xaml.Input.InputScope! +static Microsoft.Maui.Platform.KeyboardExtensions.ToInputScopeName(this Microsoft.Maui.Keyboard! self) -> Microsoft.UI.Xaml.Input.InputScopeName! +static Microsoft.Maui.Platform.LayoutPanelExtensions.UpdateClipsToBounds(this Microsoft.Maui.Platform.LayoutPanel! layoutPanel, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Platform.MauiAutoSuggestBox.GetIsReadOnly(Microsoft.UI.Xaml.DependencyObject! obj) -> bool +static Microsoft.Maui.Platform.MauiAutoSuggestBox.InvalidateAttachedProperties(Microsoft.UI.Xaml.DependencyObject! obj) -> void +static Microsoft.Maui.Platform.MauiAutoSuggestBox.SetIsReadOnly(Microsoft.UI.Xaml.DependencyObject! obj, bool value) -> void +static Microsoft.Maui.Platform.MauiTextBox.GetIsDeleteButtonEnabled(Microsoft.UI.Xaml.DependencyObject! obj) -> bool +static Microsoft.Maui.Platform.MauiTextBox.GetVerticalTextAlignment(Microsoft.UI.Xaml.DependencyObject! obj) -> Microsoft.UI.Xaml.VerticalAlignment +static Microsoft.Maui.Platform.MauiTextBox.InvalidateAttachedProperties(Microsoft.UI.Xaml.DependencyObject! obj) -> void +static Microsoft.Maui.Platform.MauiTextBox.SetIsDeleteButtonEnabled(Microsoft.UI.Xaml.DependencyObject! obj, bool value) -> void +static Microsoft.Maui.Platform.MauiTextBox.SetVerticalTextAlignment(Microsoft.UI.Xaml.DependencyObject! obj, Microsoft.UI.Xaml.VerticalAlignment value) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateFlyoutBehavior(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateFlyoutVerticalScrollMode(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.UI.Xaml.Controls.ScrollMode scrollMode) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateFlyoutWidth(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.IFlyoutView! flyoutView) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdatePaneBackground(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateTopNavAreaBackground(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateTopNavigationViewItemBackgroundSelectedColor(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateTopNavigationViewItemBackgroundUnselectedColor(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.NavigationViewExtensions.UpdateTopNavigationViewItemTextColor(this Microsoft.Maui.Platform.MauiNavigationView! navigationView, Microsoft.Maui.Graphics.Paint? paint) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateHorizontalTextAlignment(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateSelectedIndex(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateTitle(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PickerExtensions.UpdateVerticalTextAlignment(this Microsoft.UI.Xaml.Controls.ComboBox! nativeComboBox, Microsoft.Maui.IPicker! picker) -> void +static Microsoft.Maui.Platform.PrimitiveExtensions.ToPlatform(this Microsoft.Maui.Graphics.Point point) -> Windows.Foundation.Point +static Microsoft.Maui.Platform.PrimitiveExtensions.ToPlatform(this Microsoft.Maui.Thickness thickness) -> Microsoft.UI.Xaml.Thickness +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgress(this Microsoft.UI.Xaml.Controls.ProgressBar! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.ProgressBarExtensions.UpdateProgressColor(this Microsoft.UI.Xaml.Controls.ProgressBar! platformProgressBar, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.RadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! button) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateContent(this Microsoft.UI.Xaml.Controls.RadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateCornerRadius(this Microsoft.UI.Xaml.Controls.RadioButton! nativeRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateIsChecked(this Microsoft.UI.Xaml.Controls.RadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateStrokeColor(this Microsoft.UI.Xaml.Controls.RadioButton! platformRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateStrokeThickness(this Microsoft.UI.Xaml.Controls.RadioButton! nativeRadioButton, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Platform.RadioButtonExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.RadioButton! platformRadioButton, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Platform.ScrollViewerExtensions.ToWindowsScrollBarVisibility(this Microsoft.Maui.ScrollBarVisibility visibility) -> Microsoft.UI.Xaml.Controls.ScrollBarVisibility +static Microsoft.Maui.Platform.ScrollViewerExtensions.UpdateContent(this Microsoft.UI.Xaml.Controls.ScrollViewer! scrollViewer, Microsoft.Maui.IView? content, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ScrollViewerExtensions.UpdateScrollBarVisibility(this Microsoft.UI.Xaml.Controls.ScrollViewer! scrollViewer, Microsoft.Maui.ScrollOrientation orientation, Microsoft.Maui.ScrollBarVisibility horizontalScrollBarVisibility) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateHorizontalTextAlignment(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsEnabled(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsReadOnly(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateIsTextPredictionEnabled(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateMaxLength(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdatePlaceholder(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdatePlaceholderColor(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateText(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.SearchBarExtensions.UpdateVerticalTextAlignment(this Microsoft.UI.Xaml.Controls.AutoSuggestBox! platformControl, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Platform.ShapesExtensions.InvalidateShape(this Microsoft.Maui.Graphics.Win2D.W2DGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.ShapesExtensions.UpdateShape(this Microsoft.Maui.Graphics.Win2D.W2DGraphicsView! platformView, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Platform.SizeExtensions.ToPlatform(this Microsoft.Maui.Graphics.Size size) -> Windows.Foundation.Size +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximum(this Microsoft.UI.Xaml.Controls.Slider! nativeSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMaximumTrackColor(this Microsoft.UI.Xaml.Controls.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimum(this Microsoft.UI.Xaml.Controls.Slider! nativeSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateMinimumTrackColor(this Microsoft.UI.Xaml.Controls.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateThumbColor(this Microsoft.UI.Xaml.Controls.Slider! platformSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.SliderExtensions.UpdateValue(this Microsoft.UI.Xaml.Controls.Slider! nativeSlider, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateBackground(this Microsoft.Maui.Platform.MauiStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateInterval(this Microsoft.Maui.Platform.MauiStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMaximum(this Microsoft.Maui.Platform.MauiStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateMinimum(this Microsoft.Maui.Platform.MauiStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StepperExtensions.UpdateValue(this Microsoft.Maui.Platform.MauiStepper! platformStepper, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.SwipeViewExtensions.ToPlatform(this Microsoft.Maui.SwipeBehaviorOnInvoked swipeBehaviorOnInvoked) -> Microsoft.UI.Xaml.Controls.SwipeBehaviorOnInvoked +static Microsoft.Maui.Platform.SwipeViewExtensions.ToPlatform(this Microsoft.Maui.SwipeMode swipeMode) -> Microsoft.UI.Xaml.Controls.SwipeMode +static Microsoft.Maui.Platform.SwipeViewExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.SwipeItem! platformControl, Microsoft.Maui.Graphics.Paint? paint, Microsoft.UI.Xaml.Media.Brush? defaultBrush = null) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.SwipeItem! platformControl, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateIsToggled(this Microsoft.UI.Xaml.Controls.ToggleSwitch! toggleSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateThumbColor(this Microsoft.UI.Xaml.Controls.ToggleSwitch! toggleSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.SwitchExtensions.UpdateTrackColor(this Microsoft.UI.Xaml.Controls.ToggleSwitch! toggleSwitch, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ITextStyle! label) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.Font font, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.IText! text, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateHorizontalTextAlignment(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateLineHeight(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdatePadding(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateText(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ITextStyle! text) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateTextDecorations(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextBlockExtensions.UpdateVerticalTextAlignment(this Microsoft.UI.Xaml.Controls.TextBlock! platformControl, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateBackground(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateClearButtonVisibility(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateCursorPosition(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.TextBox! platformControl, Microsoft.Maui.IText! text, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateHorizontalTextAlignment(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateIsPassword(this Microsoft.UI.Xaml.Controls.TextBox! platformControl, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateIsReadOnly(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! textInput) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateIsTextPredictionEnabled(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! textInput) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateKeyboard(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! textInput) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateMaxLength(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! textInput) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdatePlaceholder(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.IPlaceholder! placeholder) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdatePlaceholderColor(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.IPlaceholder! placeholder) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateReturnType(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! textInput) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateSelectionLength(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! entry) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateText(this Microsoft.UI.Xaml.Controls.TextBox! platformControl, Microsoft.Maui.ITextInput! textInput) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Platform.TextBoxExtensions.UpdateVerticalTextAlignment(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextAlignment! textAlignment) -> void +static Microsoft.Maui.Platform.TextElementExtensions.UpdateFont(this Microsoft.UI.Xaml.Documents.TextElement! platformControl, Microsoft.Maui.Font font, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateCharacterSpacing(this Microsoft.UI.Xaml.Controls.TimePicker! platformTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateFont(this Microsoft.UI.Xaml.Controls.TimePicker! platformTimePicker, Microsoft.Maui.ITimePicker! timePicker, Microsoft.Maui.IFontManager! fontManager) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTextColor(this Microsoft.UI.Xaml.Controls.TimePicker! platformTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TimePickerExtensions.UpdateTime(this Microsoft.UI.Xaml.Controls.TimePicker! nativeTimePicker, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Platform.TransformationExtensions.UpdateTransformation(this Microsoft.UI.Xaml.FrameworkElement! frameworkElement, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.Focus(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IPlatformViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.TryMoveFocus(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.UI.Xaml.Input.FocusNavigationDirection direction) -> void +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Microsoft.Maui.Platform.ContentPanel! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this Microsoft.Maui.Platform.LayoutPanel! layoutPanel, Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this Microsoft.UI.Xaml.FrameworkElement! nativeView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateSemantics(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this Microsoft.UI.Xaml.FrameworkElement! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.WebViewExtensions.Eval(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView, string! script) -> void +static Microsoft.Maui.Platform.WebViewExtensions.EvaluateJavaScript(this Microsoft.UI.Xaml.Controls.WebView2! webView, Microsoft.Maui.EvaluateJavaScriptAsyncRequest! request) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoBack(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateGoForward(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateReload(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Platform.WebViewExtensions.UpdateSource(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView, Microsoft.Maui.IWebViewDelegate? webViewDelegate) -> void +static Microsoft.Maui.Platform.WindowExtensions.GetAppWindow(this Microsoft.UI.Xaml.Window! platformWindow) -> Microsoft.UI.Windowing.AppWindow? +static Microsoft.Maui.Platform.WindowExtensions.GetDisplayDensity(this Microsoft.UI.Xaml.Window! platformWindow) -> float +static Microsoft.Maui.Platform.WindowExtensions.GetWindow(this Microsoft.UI.Xaml.Window! platformWindow) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.Platform.WindowExtensions.GetWindowHandle(this Microsoft.UI.Xaml.Window! platformWindow) -> System.IntPtr +static Microsoft.Maui.Platform.WindowExtensions.UpdateTitle(this Microsoft.UI.Xaml.Window! platformWindow, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.Platform.MauiAutoSuggestBox.IsReadOnlyProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiNavigationView.NavigationViewBackButtonMarginProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiPasswordTextBox.IsObfuscationDelayedProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiPasswordTextBox.IsPasswordProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiPasswordTextBox.PasswordProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiTextBox.IsDeleteButtonEnabledProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiTextBox.VerticalTextAlignmentProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiToolbar.IsBackButtonVisibleProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.MauiToolbar.IsBackEnabledProperty -> Microsoft.UI.Xaml.DependencyProperty! +static readonly Microsoft.Maui.Platform.WindowRootView.AppTitleBarTemplateProperty -> Microsoft.UI.Xaml.DependencyProperty! +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ImageButtonHandler.OnImageFailed(object! sender, Microsoft.UI.Xaml.ExceptionRoutedEventArgs! exceptionRoutedEventArgs) -> void +virtual Microsoft.Maui.Handlers.NavigationViewHandler.CreateNavigationManager() -> Microsoft.Maui.Platform.StackNavigationManager! +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.MauiWinUIWindow.OnActivated(object! sender, Microsoft.UI.Xaml.WindowActivatedEventArgs! args) -> void +virtual Microsoft.Maui.MauiWinUIWindow.OnClosed(object! sender, Microsoft.UI.Xaml.WindowEventArgs! args) -> void +virtual Microsoft.Maui.MauiWinUIWindow.OnVisibilityChanged(object! sender, Microsoft.UI.Xaml.WindowVisibilityChangedEventArgs! args) -> void +virtual Microsoft.Maui.Platform.MauiCancelButton.OnReadyChanged() -> void +virtual Microsoft.Maui.Platform.NavigationRootManager.Connect(Microsoft.UI.Xaml.UIElement! platformView) -> void +virtual Microsoft.Maui.Platform.NavigationRootManager.Disconnect() -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.Connect(Microsoft.Maui.IStackNavigation! navigationView, Microsoft.UI.Xaml.Controls.Frame! navigationFrame) -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.Disconnect(Microsoft.Maui.IStackNavigation! navigationView, Microsoft.UI.Xaml.Controls.Frame! navigationFrame) -> void +virtual Microsoft.Maui.Platform.StackNavigationManager.GetDestinationPageType() -> System.Type! +virtual Microsoft.Maui.Platform.StackNavigationManager.GetNavigationTransition(Microsoft.Maui.NavigationRequest! args) -> Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo? +virtual Microsoft.Maui.Platform.StackNavigationManager.NavigateTo(Microsoft.Maui.NavigationRequest! args) -> void +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~Microsoft.Maui.Core_XamlTypeInfo.XamlMetaDataProvider.GetXamlType(string fullName) -> Microsoft.UI.Xaml.Markup.IXamlType +~Microsoft.Maui.Core_XamlTypeInfo.XamlMetaDataProvider.GetXamlType(System.Type type) -> Microsoft.UI.Xaml.Markup.IXamlType +~Microsoft.Maui.Core_XamlTypeInfo.XamlMetaDataProvider.GetXmlnsDefinitions() -> Microsoft.UI.Xaml.Markup.XmlnsDefinition[] +~Microsoft.Maui.Platform.MauiCancelButton.BackgroundBrush.get -> Microsoft.UI.Xaml.Media.Brush +~Microsoft.Maui.Platform.MauiCancelButton.BackgroundBrush.set -> void +~Microsoft.Maui.Platform.MauiCancelButton.ForegroundBrush.get -> Microsoft.UI.Xaml.Media.Brush +~Microsoft.Maui.Platform.MauiCancelButton.ForegroundBrush.set -> void +~Microsoft.Maui.Platform.MauiStepper.ButtonBackground.get -> Microsoft.UI.Xaml.Media.Brush +~Microsoft.Maui.Platform.MauiStepper.ButtonBackground.set -> void +~Microsoft.Maui.Platform.MauiStepper.ButtonBackgroundColor.get -> Microsoft.Maui.Graphics.Color +~Microsoft.Maui.Platform.MauiStepper.ButtonBackgroundColor.set -> void +~Microsoft.Maui.Platform.MauiToolbar.Connect(int connectionId, object target) -> void +~Microsoft.Maui.Platform.MauiToolbar.GetBindingConnector(int connectionId, object target) -> Microsoft.UI.Xaml.Markup.IComponentConnector +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Handlers.StepperHandler.ConnectHandler(Microsoft.Maui.Platform.MauiStepper platformView) -> void +~override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> Microsoft.Maui.Platform.MauiStepper +~override Microsoft.Maui.Handlers.StepperHandler.DisconnectHandler(Microsoft.Maui.Platform.MauiStepper platformView) -> void +~static Microsoft.Maui.Handlers.StepperHandler.MapBackground(Microsoft.Maui.Handlers.IStepperHandler handler, Microsoft.Maui.IStepper view) -> void +~static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.Handlers.IStepperHandler handler, Microsoft.Maui.IStepper stepper) -> void +~static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.Handlers.IStepperHandler handler, Microsoft.Maui.IStepper stepper) -> void +~static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.Handlers.IStepperHandler handler, Microsoft.Maui.IStepper stepper) -> void +~static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.Handlers.IStepperHandler handler, Microsoft.Maui.IStepper stepper) -> void +~static Microsoft.Maui.Platform.GraphicsExtensions.AsPathGeometry(this Microsoft.Maui.Graphics.PathF target, float scale = 1) -> Microsoft.UI.Xaml.Media.PathGeometry diff --git a/src/Core/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..13d7507c379a --- /dev/null +++ b/src/Core/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt @@ -0,0 +1,3 @@ +#nullable enable +override Microsoft.Maui.Handlers.EditorHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +override Microsoft.Maui.Handlers.EntryHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void diff --git a/src/Core/src/PublicAPI/net/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/net/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..f7e4bc1e158d --- /dev/null +++ b/src/Core/src/PublicAPI/net/PublicAPI.Shipped.txt @@ -0,0 +1,2342 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> object? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> object? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> object? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> object! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(object! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(object! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> object! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.WrapperView() -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> object? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(object! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(object! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapBackground(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshViewBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContentSize(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapBackground(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this object! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this object! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> object! +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.ViewExtensions.Focus(this object! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAnchorX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAnchorY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this object! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClipsToBounds(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this object! nativeView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotation(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotationX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotationY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateScale(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateSemantics(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateTranslationX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateTranslationY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object diff --git a/src/Core/src/PublicAPI/net/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/net/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Core/src/PublicAPI/net/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Core/src/PublicAPI/netstandard/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/netstandard/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..f7e4bc1e158d --- /dev/null +++ b/src/Core/src/PublicAPI/netstandard/PublicAPI.Shipped.txt @@ -0,0 +1,2342 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> object? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> object? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> object? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> object! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(object! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(object! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> object! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Current.get -> Microsoft.Maui.IPlatformApplication? +Microsoft.Maui.IPlatformApplication.Current.set -> void +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.WrapperView() -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> object? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(object! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(object! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapBackground(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshViewBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContentSize(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapBackground(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this object! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this object! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> object! +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.ViewExtensions.Focus(this object! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAnchorX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAnchorY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this object! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClipsToBounds(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this object! nativeView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotation(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotationX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotationY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateScale(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateSemantics(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateTranslationX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateTranslationY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object diff --git a/src/Core/src/PublicAPI/netstandard/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/netstandard/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Core/src/PublicAPI/netstandard/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..16c33cf6dcee --- /dev/null +++ b/src/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -0,0 +1,2340 @@ +#nullable enable +abstract Microsoft.Maui.Handlers.ElementHandler.CreatePlatformElement() -> TPlatformView! +abstract Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +abstract Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +abstract Microsoft.Maui.Handlers.ViewHandler.CreatePlatformView() -> TPlatformView! +abstract Microsoft.Maui.Layouts.LayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +abstract Microsoft.Maui.Layouts.LayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +const Microsoft.Maui.Primitives.Dimension.Maximum = Infinity -> double +const Microsoft.Maui.Primitives.Dimension.Minimum = 0 -> double +const Microsoft.Maui.Primitives.Dimension.Unset = NaN -> double +Microsoft.Maui.ActivationState +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context) -> void +Microsoft.Maui.ActivationState.ActivationState(Microsoft.Maui.IMauiContext! context, Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.ActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.ActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.Animations.Animation +Microsoft.Maui.Animations.Animation.Add(double beginAt, double duration, Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.Animation.Animation() -> void +Microsoft.Maui.Animations.Animation.Animation(System.Action! callback, double start = 0, double duration = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.Animation.Animation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.Animation.AnimationManager.get -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.animationManger -> Microsoft.Maui.Animations.IAnimationManager? +Microsoft.Maui.Animations.Animation.childrenAnimations -> System.Collections.Generic.List! +Microsoft.Maui.Animations.Animation.Commit(Microsoft.Maui.Animations.IAnimationManager! animationManger) -> void +Microsoft.Maui.Animations.Animation.CreateAutoReversing() -> Microsoft.Maui.Animations.Animation! +Microsoft.Maui.Animations.Animation.CurrentTime.get -> double +Microsoft.Maui.Animations.Animation.CurrentTime.set -> void +Microsoft.Maui.Animations.Animation.Dispose() -> void +Microsoft.Maui.Animations.Animation.Duration.get -> double +Microsoft.Maui.Animations.Animation.Duration.set -> void +Microsoft.Maui.Animations.Animation.Easing.get -> Microsoft.Maui.Easing! +Microsoft.Maui.Animations.Animation.Easing.set -> void +Microsoft.Maui.Animations.Animation.Finished.get -> System.Action? +Microsoft.Maui.Animations.Animation.Finished.set -> void +Microsoft.Maui.Animations.Animation.GetEnumerator() -> System.Collections.IEnumerator! +Microsoft.Maui.Animations.Animation.HasFinished.get -> bool +Microsoft.Maui.Animations.Animation.HasFinished.set -> void +Microsoft.Maui.Animations.Animation.IsDisposed.get -> bool +Microsoft.Maui.Animations.Animation.IsPaused.get -> bool +Microsoft.Maui.Animations.Animation.Name.get -> string? +Microsoft.Maui.Animations.Animation.Name.set -> void +Microsoft.Maui.Animations.Animation.Pause() -> void +Microsoft.Maui.Animations.Animation.Progress.get -> double +Microsoft.Maui.Animations.Animation.Progress.set -> void +Microsoft.Maui.Animations.Animation.RemoveFromParent() -> void +Microsoft.Maui.Animations.Animation.Repeats.get -> bool +Microsoft.Maui.Animations.Animation.Repeats.set -> void +Microsoft.Maui.Animations.Animation.Resume() -> void +Microsoft.Maui.Animations.Animation.StartDelay.get -> double +Microsoft.Maui.Animations.Animation.StartDelay.set -> void +Microsoft.Maui.Animations.Animation.Step.get -> System.Action? +Microsoft.Maui.Animations.Animation.Step.set -> void +Microsoft.Maui.Animations.Animation.Tick(double milliseconds) -> void +Microsoft.Maui.Animations.AnimationLerpingExtensions +Microsoft.Maui.Animations.AnimationManager +Microsoft.Maui.Animations.AnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.AnimationManager(Microsoft.Maui.Animations.ITicker! ticker) -> void +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.AnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.AnimationManager.Dispose() -> void +Microsoft.Maui.Animations.AnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.AnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.AnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimationManager +Microsoft.Maui.Animations.IAnimationManager.Add(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.get -> bool +Microsoft.Maui.Animations.IAnimationManager.AutoStartTicker.set -> void +Microsoft.Maui.Animations.IAnimationManager.Remove(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.get -> double +Microsoft.Maui.Animations.IAnimationManager.SpeedModifier.set -> void +Microsoft.Maui.Animations.IAnimationManager.Ticker.get -> Microsoft.Maui.Animations.ITicker! +Microsoft.Maui.Animations.IAnimator +Microsoft.Maui.Animations.IAnimator.AddAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.IAnimator.RemoveAnimation(Microsoft.Maui.Animations.Animation! animation) -> void +Microsoft.Maui.Animations.ITicker +Microsoft.Maui.Animations.ITicker.Fire.get -> System.Action? +Microsoft.Maui.Animations.ITicker.Fire.set -> void +Microsoft.Maui.Animations.ITicker.IsRunning.get -> bool +Microsoft.Maui.Animations.ITicker.MaxFps.get -> int +Microsoft.Maui.Animations.ITicker.MaxFps.set -> void +Microsoft.Maui.Animations.ITicker.Start() -> void +Microsoft.Maui.Animations.ITicker.Stop() -> void +Microsoft.Maui.Animations.ITicker.SystemEnabled.get -> bool +Microsoft.Maui.Animations.Lerp +Microsoft.Maui.Animations.Lerp.Calculate.get -> Microsoft.Maui.Animations.Lerp.LerpDelegate? +Microsoft.Maui.Animations.Lerp.Calculate.set -> void +Microsoft.Maui.Animations.Lerp.Lerp() -> void +Microsoft.Maui.Animations.Lerp.LerpDelegate +Microsoft.Maui.Animations.LerpingAnimation +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.CurrentValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.EndValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.EndValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.Lerp.get -> Microsoft.Maui.Animations.Lerp? +Microsoft.Maui.Animations.LerpingAnimation.Lerp.set -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation() -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Action! callback, double start = 0, double end = 1, Microsoft.Maui.Easing? easing = null, System.Action? finished = null) -> void +Microsoft.Maui.Animations.LerpingAnimation.LerpingAnimation(System.Collections.Generic.List! animations) -> void +Microsoft.Maui.Animations.LerpingAnimation.StartValue.get -> object? +Microsoft.Maui.Animations.LerpingAnimation.StartValue.set -> void +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.get -> System.Action? +Microsoft.Maui.Animations.LerpingAnimation.ValueChanged.set -> void +Microsoft.Maui.Animations.PlatformTicker +Microsoft.Maui.Animations.PlatformTicker.PlatformTicker() -> void +Microsoft.Maui.Animations.Ticker +Microsoft.Maui.Animations.Ticker.Fire.get -> System.Action? +Microsoft.Maui.Animations.Ticker.Fire.set -> void +Microsoft.Maui.Animations.Ticker.Ticker() -> void +Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFill = 1 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.AspectFit = 0 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Center = 3 -> Microsoft.Maui.Aspect +Microsoft.Maui.Aspect.Fill = 2 -> Microsoft.Maui.Aspect +Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.Never = 0 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.ClearButtonVisibility.WhileEditing = 1 -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Chained.get -> Microsoft.Maui.CommandMapper? +Microsoft.Maui.CommandMapper.Chained.set -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapper.this[string! key].get -> System.Action! +Microsoft.Maui.CommandMapper.this[string! key].set -> void +Microsoft.Maui.CommandMapper +Microsoft.Maui.CommandMapper.CommandMapper() -> void +Microsoft.Maui.CommandMapper.CommandMapper(Microsoft.Maui.CommandMapper! chained) -> void +Microsoft.Maui.CommandMapperExtensions +Microsoft.Maui.Converters.CornerRadiusTypeConverter +Microsoft.Maui.Converters.CornerRadiusTypeConverter.CornerRadiusTypeConverter() -> void +Microsoft.Maui.Converters.EasingTypeConverter +Microsoft.Maui.Converters.EasingTypeConverter.EasingTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignContentTypeConverter +Microsoft.Maui.Converters.FlexAlignContentTypeConverter.FlexAlignContentTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter +Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.FlexAlignItemsTypeConverter() -> void +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter +Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.FlexAlignSelfTypeConverter() -> void +Microsoft.Maui.Converters.FlexBasisTypeConverter +Microsoft.Maui.Converters.FlexBasisTypeConverter.FlexBasisTypeConverter() -> void +Microsoft.Maui.Converters.FlexDirectionTypeConverter +Microsoft.Maui.Converters.FlexDirectionTypeConverter.FlexDirectionTypeConverter() -> void +Microsoft.Maui.Converters.FlexJustifyTypeConverter +Microsoft.Maui.Converters.FlexJustifyTypeConverter.FlexJustifyTypeConverter() -> void +Microsoft.Maui.Converters.FlexWrapTypeConverter +Microsoft.Maui.Converters.FlexWrapTypeConverter.FlexWrapTypeConverter() -> void +Microsoft.Maui.Converters.KeyboardTypeConverter +Microsoft.Maui.Converters.KeyboardTypeConverter.KeyboardTypeConverter() -> void +Microsoft.Maui.Converters.ThicknessTypeConverter +Microsoft.Maui.Converters.ThicknessTypeConverter.ThicknessTypeConverter() -> void +Microsoft.Maui.CornerRadius +Microsoft.Maui.CornerRadius.BottomLeft.get -> double +Microsoft.Maui.CornerRadius.BottomRight.get -> double +Microsoft.Maui.CornerRadius.CornerRadius() -> void +Microsoft.Maui.CornerRadius.CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight) -> void +Microsoft.Maui.CornerRadius.CornerRadius(double uniformRadius) -> void +Microsoft.Maui.CornerRadius.Deconstruct(out double topLeft, out double topRight, out double bottomLeft, out double bottomRight) -> void +Microsoft.Maui.CornerRadius.TopLeft.get -> double +Microsoft.Maui.CornerRadius.TopRight.get -> double +Microsoft.Maui.Crc64 +Microsoft.Maui.CustomKeyboard +Microsoft.Maui.CustomKeyboard.Flags.get -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Dispatching.Dispatcher +Microsoft.Maui.Dispatching.Dispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.Dispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.Dispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.DispatcherExtensions +Microsoft.Maui.Dispatching.DispatcherProvider +Microsoft.Maui.Dispatching.DispatcherProvider.DispatcherProvider() -> void +Microsoft.Maui.Dispatching.DispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcher +Microsoft.Maui.Dispatching.IDispatcher.CreateTimer() -> Microsoft.Maui.Dispatching.IDispatcherTimer! +Microsoft.Maui.Dispatching.IDispatcher.Dispatch(System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.DispatchDelayed(System.TimeSpan delay, System.Action! action) -> bool +Microsoft.Maui.Dispatching.IDispatcher.IsDispatchRequired.get -> bool +Microsoft.Maui.Dispatching.IDispatcherProvider +Microsoft.Maui.Dispatching.IDispatcherProvider.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +Microsoft.Maui.Dispatching.IDispatcherTimer +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.get -> System.TimeSpan +Microsoft.Maui.Dispatching.IDispatcherTimer.Interval.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRepeating.set -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.IsRunning.get -> bool +Microsoft.Maui.Dispatching.IDispatcherTimer.Start() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Stop() -> void +Microsoft.Maui.Dispatching.IDispatcherTimer.Tick -> System.EventHandler! +Microsoft.Maui.DisplayDensityRequest +Microsoft.Maui.DisplayDensityRequest.DisplayDensityRequest() -> void +Microsoft.Maui.Easing +Microsoft.Maui.Easing.Ease(double v) -> double +Microsoft.Maui.Easing.Easing(System.Func! easingFunc) -> void +Microsoft.Maui.EmbeddedFont +Microsoft.Maui.EmbeddedFont.EmbeddedFont() -> void +Microsoft.Maui.EmbeddedFont.FontName.get -> string? +Microsoft.Maui.EmbeddedFont.FontName.set -> void +Microsoft.Maui.EmbeddedFont.ResourceStream.get -> System.IO.Stream? +Microsoft.Maui.EmbeddedFont.ResourceStream.set -> void +Microsoft.Maui.EmbeddedFontLoader +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader() -> void +Microsoft.Maui.EmbeddedFontLoader.EmbeddedFontLoader(System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.EmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.EvaluateJavaScriptAsyncRequest +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.EvaluateJavaScriptAsyncRequest(string! script) -> void +Microsoft.Maui.EvaluateJavaScriptAsyncRequest.Script.get -> string! +Microsoft.Maui.FileImageSourceService +Microsoft.Maui.FileImageSourceService.FileImageSourceService() -> void +Microsoft.Maui.FileImageSourceService.FileImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader +Microsoft.Maui.FileSystemEmbeddedFontLoader.FileSystemEmbeddedFontLoader(string! rootPath, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FileSystemEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.Multiply = 1 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcAtop = 2 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FilterMode.SrcIn = 0 -> Microsoft.Maui.FilterMode +Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.LeftToRight = 1 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.MatchParent = 0 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlowDirection.RightToLeft = 2 -> Microsoft.Maui.FlowDirection +Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Disabled = 0 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Flyout = 1 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FlyoutBehavior.Locked = 2 -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.FocusRequest +Microsoft.Maui.FocusRequest.FocusRequest(bool isFocused) -> void +Microsoft.Maui.FocusRequest.IsFocused.get -> bool +Microsoft.Maui.FocusRequest.IsFocused.set -> void +Microsoft.Maui.Font +Microsoft.Maui.Font.AutoScalingEnabled.get -> bool +Microsoft.Maui.Font.Family.get -> string? +Microsoft.Maui.Font.Font() -> void +Microsoft.Maui.Font.IsDefault.get -> bool +Microsoft.Maui.Font.Size.get -> double +Microsoft.Maui.Font.Slant.get -> Microsoft.Maui.FontSlant +Microsoft.Maui.Font.Weight.get -> Microsoft.Maui.FontWeight +Microsoft.Maui.Font.WithAutoScaling(bool enabled) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSize(double size) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithSlant(Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight) -> Microsoft.Maui.Font +Microsoft.Maui.Font.WithWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant) -> Microsoft.Maui.Font +Microsoft.Maui.FontFile +Microsoft.Maui.FontFile.Extension.get -> string? +Microsoft.Maui.FontFile.Extension.set -> void +Microsoft.Maui.FontFile.FileName.get -> string? +Microsoft.Maui.FontFile.FileName.set -> void +Microsoft.Maui.FontFile.FileNameWithExtension() -> string! +Microsoft.Maui.FontFile.FileNameWithExtension(string? extension) -> string! +Microsoft.Maui.FontFile.FontFile() -> void +Microsoft.Maui.FontFile.GetPostScriptNameWithSpaces() -> string! +Microsoft.Maui.FontFile.PostScriptName.get -> string? +Microsoft.Maui.FontFile.PostScriptName.set -> void +Microsoft.Maui.FontImageSourceService +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager) -> void +Microsoft.Maui.FontImageSourceService.FontImageSourceService(Microsoft.Maui.IFontManager! fontManager, Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.FontImageSourceService.FontManager.get -> Microsoft.Maui.IFontManager! +Microsoft.Maui.FontManager +Microsoft.Maui.FontManager.DefaultFontSize.get -> double +Microsoft.Maui.FontManager.FontManager(Microsoft.Maui.IFontRegistrar! fontRegistrar, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar +Microsoft.Maui.FontRegistrar.FontRegistrar(Microsoft.Maui.IEmbeddedFontLoader! fontLoader, System.IServiceProvider? serviceProvider = null) -> void +Microsoft.Maui.FontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.FontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Default = 0 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Italic = 1 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontSlant.Oblique = 2 -> Microsoft.Maui.FontSlant +Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Black = 900 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Bold = 700 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Heavy = 800 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Light = 300 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Medium = 500 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Regular = 400 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Semibold = 600 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Thin = 100 -> Microsoft.Maui.FontWeight +Microsoft.Maui.FontWeight.Ultralight = 200 -> Microsoft.Maui.FontWeight +Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Canceled = 3 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Completed = 2 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Running = 1 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.GestureStatus.Started = 0 -> Microsoft.Maui.GestureStatus +Microsoft.Maui.Graphics.IShape +Microsoft.Maui.Graphics.IShape.PathForBounds(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.PathF! +Microsoft.Maui.Graphics.PaintExtensions +Microsoft.Maui.Graphics.ShapeDrawable +Microsoft.Maui.Graphics.ShapeDrawable.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable() -> void +Microsoft.Maui.Graphics.ShapeDrawable.ShapeDrawable(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateRenderTransform(System.Numerics.Matrix3x2? renderTransform) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateShapeView(Microsoft.Maui.IShapeView? shape) -> void +Microsoft.Maui.Graphics.ShapeDrawable.UpdateWindingMode(Microsoft.Maui.Graphics.WindingMode windingMode) -> void +Microsoft.Maui.GridLength +Microsoft.Maui.GridLength.GridLength() -> void +Microsoft.Maui.GridLength.GridLength(double value) -> void +Microsoft.Maui.GridLength.GridLength(double value, Microsoft.Maui.GridUnitType type) -> void +Microsoft.Maui.GridLength.GridUnitType.get -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridLength.IsAbsolute.get -> bool +Microsoft.Maui.GridLength.IsAuto.get -> bool +Microsoft.Maui.GridLength.IsStar.get -> bool +Microsoft.Maui.GridLength.Value.get -> double +Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Absolute = 0 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Auto = 2 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.GridUnitType.Star = 1 -> Microsoft.Maui.GridUnitType +Microsoft.Maui.Handlers.ActivityIndicatorHandler +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler() -> void +Microsoft.Maui.Handlers.ActivityIndicatorHandler.ActivityIndicatorHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ApplicationHandler +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler() -> void +Microsoft.Maui.Handlers.ApplicationHandler.ApplicationHandler(Microsoft.Maui.IPropertyMapper? mapper, Microsoft.Maui.CommandMapper? commandMapper) -> void +Microsoft.Maui.Handlers.BorderHandler +Microsoft.Maui.Handlers.BorderHandler.BorderHandler() -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.BorderHandler.BorderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler() -> void +Microsoft.Maui.Handlers.ButtonHandler.ButtonHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.CheckBoxHandler +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler() -> void +Microsoft.Maui.Handlers.CheckBoxHandler.CheckBoxHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ContentViewHandler +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler() -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ContentViewHandler.ContentViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.DatePickerHandler +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler() -> void +Microsoft.Maui.Handlers.DatePickerHandler.DatePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.EditorHandler +Microsoft.Maui.Handlers.EditorHandler.EditorHandler() -> void +Microsoft.Maui.Handlers.EditorHandler.EditorHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ElementHandler.Services.get -> System.IServiceProvider? +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.Handlers.ElementHandler +Microsoft.Maui.Handlers.ElementHandler.ElementHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ElementHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ElementHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.EntryHandler +Microsoft.Maui.Handlers.EntryHandler.EntryHandler() -> void +Microsoft.Maui.Handlers.EntryHandler.EntryHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.FlyoutViewHandler +Microsoft.Maui.Handlers.FlyoutViewHandler.FlyoutViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler() -> void +Microsoft.Maui.Handlers.GraphicsViewHandler.GraphicsViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.IActivityIndicatorHandler +Microsoft.Maui.Handlers.IActivityIndicatorHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IActivityIndicatorHandler.VirtualView.get -> Microsoft.Maui.IActivityIndicator! +Microsoft.Maui.Handlers.IBorderHandler +Microsoft.Maui.Handlers.IBorderHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IBorderHandler.VirtualView.get -> Microsoft.Maui.IBorderView! +Microsoft.Maui.Handlers.IButtonHandler +Microsoft.Maui.Handlers.IButtonHandler.ImageSourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IButtonHandler.VirtualView.get -> Microsoft.Maui.IButton! +Microsoft.Maui.Handlers.ICheckBoxHandler +Microsoft.Maui.Handlers.ICheckBoxHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ICheckBoxHandler.VirtualView.get -> Microsoft.Maui.ICheckBox! +Microsoft.Maui.Handlers.IContentViewHandler +Microsoft.Maui.Handlers.IContentViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IContentViewHandler.VirtualView.get -> Microsoft.Maui.IContentView! +Microsoft.Maui.Handlers.IDatePickerHandler +Microsoft.Maui.Handlers.IDatePickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IDatePickerHandler.VirtualView.get -> Microsoft.Maui.IDatePicker! +Microsoft.Maui.Handlers.IEditorHandler +Microsoft.Maui.Handlers.IEditorHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IEditorHandler.VirtualView.get -> Microsoft.Maui.IEditor! +Microsoft.Maui.Handlers.IEntryHandler +Microsoft.Maui.Handlers.IEntryHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IEntryHandler.VirtualView.get -> Microsoft.Maui.IEntry! +Microsoft.Maui.Handlers.IFlyoutViewHandler +Microsoft.Maui.Handlers.IFlyoutViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IFlyoutViewHandler.VirtualView.get -> Microsoft.Maui.IFlyoutView! +Microsoft.Maui.Handlers.IGraphicsViewHandler +Microsoft.Maui.Handlers.IGraphicsViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IGraphicsViewHandler.VirtualView.get -> Microsoft.Maui.IGraphicsView! +Microsoft.Maui.Handlers.IImageButtonHandler +Microsoft.Maui.Handlers.IImageButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IImageButtonHandler.VirtualView.get -> Microsoft.Maui.IImageButton! +Microsoft.Maui.Handlers.IImageHandler +Microsoft.Maui.Handlers.IImageHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IImageHandler.VirtualView.get -> Microsoft.Maui.IImage! +Microsoft.Maui.Handlers.IIndicatorViewHandler +Microsoft.Maui.Handlers.IIndicatorViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IIndicatorViewHandler.VirtualView.get -> Microsoft.Maui.IIndicatorView! +Microsoft.Maui.Handlers.ILabelHandler +Microsoft.Maui.Handlers.ILabelHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ILabelHandler.VirtualView.get -> Microsoft.Maui.ILabel! +Microsoft.Maui.Handlers.ImageButtonHandler +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler() -> void +Microsoft.Maui.Handlers.ImageButtonHandler.ImageButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageButtonHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.ImageHandler +Microsoft.Maui.Handlers.ImageHandler.ImageHandler() -> void +Microsoft.Maui.Handlers.ImageHandler.ImageHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ImageHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.IMenuBarHandler +Microsoft.Maui.Handlers.IMenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.IMenuBarHandler.VirtualView.get -> Microsoft.Maui.IMenuBar! +Microsoft.Maui.Handlers.IMenuBarItemHandler +Microsoft.Maui.Handlers.IMenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuBarItemHandler.VirtualView.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuFlyoutItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutItem! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSubItem! +Microsoft.Maui.Handlers.INavigationViewHandler +Microsoft.Maui.Handlers.INavigationViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.INavigationViewHandler.VirtualView.get -> Microsoft.Maui.IStackNavigationView! +Microsoft.Maui.Handlers.IndicatorViewHandler +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler() -> void +Microsoft.Maui.Handlers.IndicatorViewHandler.IndicatorViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.IPageHandler +Microsoft.Maui.Handlers.IPickerHandler +Microsoft.Maui.Handlers.IPickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IPickerHandler.VirtualView.get -> Microsoft.Maui.IPicker! +Microsoft.Maui.Handlers.IProgressBarHandler +Microsoft.Maui.Handlers.IProgressBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IProgressBarHandler.VirtualView.get -> Microsoft.Maui.IProgress! +Microsoft.Maui.Handlers.IRadioButtonHandler +Microsoft.Maui.Handlers.IRadioButtonHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IRadioButtonHandler.VirtualView.get -> Microsoft.Maui.IRadioButton! +Microsoft.Maui.Handlers.IRefreshViewHandler +Microsoft.Maui.Handlers.IRefreshViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IRefreshViewHandler.VirtualView.get -> Microsoft.Maui.IRefreshView! +Microsoft.Maui.Handlers.IScrollViewHandler +Microsoft.Maui.Handlers.IScrollViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IScrollViewHandler.VirtualView.get -> Microsoft.Maui.IScrollView! +Microsoft.Maui.Handlers.ISearchBarHandler +Microsoft.Maui.Handlers.ISearchBarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISearchBarHandler.QueryEditor.get -> object? +Microsoft.Maui.Handlers.ISearchBarHandler.VirtualView.get -> Microsoft.Maui.ISearchBar! +Microsoft.Maui.Handlers.IShapeViewHandler +Microsoft.Maui.Handlers.IShapeViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IShapeViewHandler.VirtualView.get -> Microsoft.Maui.IShapeView! +Microsoft.Maui.Handlers.ISliderHandler +Microsoft.Maui.Handlers.ISliderHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISliderHandler.VirtualView.get -> Microsoft.Maui.ISlider! +Microsoft.Maui.Handlers.IStepperHandler +Microsoft.Maui.Handlers.IStepperHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IStepperHandler.VirtualView.get -> Microsoft.Maui.IStepper! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemMenuItem! +Microsoft.Maui.Handlers.ISwipeItemViewHandler +Microsoft.Maui.Handlers.ISwipeItemViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeItemViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeItemView! +Microsoft.Maui.Handlers.ISwipeViewHandler +Microsoft.Maui.Handlers.ISwipeViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwipeViewHandler.VirtualView.get -> Microsoft.Maui.ISwipeView! +Microsoft.Maui.Handlers.ISwitchHandler +Microsoft.Maui.Handlers.ISwitchHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ISwitchHandler.VirtualView.get -> Microsoft.Maui.ISwitch! +Microsoft.Maui.Handlers.ITabbedViewHandler +Microsoft.Maui.Handlers.ITabbedViewHandler.VirtualView.get -> Microsoft.Maui.ITabbedView! +Microsoft.Maui.Handlers.ITimePickerHandler +Microsoft.Maui.Handlers.ITimePickerHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.ITimePickerHandler.VirtualView.get -> Microsoft.Maui.ITimePicker! +Microsoft.Maui.Handlers.IToolbarHandler +Microsoft.Maui.Handlers.IToolbarHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IToolbarHandler.VirtualView.get -> Microsoft.Maui.IToolbar! +Microsoft.Maui.Handlers.IWebViewHandler +Microsoft.Maui.Handlers.IWebViewHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IWebViewHandler.VirtualView.get -> Microsoft.Maui.IWebView! +Microsoft.Maui.Handlers.IWindowHandler +Microsoft.Maui.Handlers.IWindowHandler.PlatformView.get -> object! +Microsoft.Maui.Handlers.IWindowHandler.VirtualView.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.Handlers.LabelHandler +Microsoft.Maui.Handlers.LabelHandler.LabelHandler() -> void +Microsoft.Maui.Handlers.LabelHandler.LabelHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler +Microsoft.Maui.Handlers.LayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.Clear() -> void +Microsoft.Maui.Handlers.LayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler() -> void +Microsoft.Maui.Handlers.LayoutHandler.LayoutHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.LayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.LayoutHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.LayoutHandlerUpdate(int Index, Microsoft.Maui.IView! View) -> void +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.get -> Microsoft.Maui.IView! +Microsoft.Maui.Handlers.LayoutHandlerUpdate.View.init -> void +Microsoft.Maui.Handlers.MenuBarHandler +Microsoft.Maui.Handlers.MenuBarHandler.Add(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarHandler.Insert(int index, Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler() -> void +Microsoft.Maui.Handlers.MenuBarHandler.MenuBarHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarHandler.Remove(Microsoft.Maui.IMenuBarItem! view) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarHandlerUpdate(int Index, Microsoft.Maui.IMenuBarItem! MenuBarItem) -> void +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.get -> Microsoft.Maui.IMenuBarItem! +Microsoft.Maui.Handlers.MenuBarHandlerUpdate.MenuBarItem.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandler +Microsoft.Maui.Handlers.MenuBarItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler() -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.MenuBarItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuBarItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuBarItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuBarItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutItemHandler +Microsoft.Maui.Handlers.MenuFlyoutItemHandler.MenuFlyoutItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Add(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Clear() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Insert(int index, Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler() -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MenuFlyoutSubItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Remove(Microsoft.Maui.IMenuElement! view) -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.get -> int +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.Index.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.get -> Microsoft.Maui.IMenuElement! +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuElement.init -> void +Microsoft.Maui.Handlers.MenuFlyoutSubItemHandlerUpdate.MenuFlyoutSubItemHandlerUpdate(int Index, Microsoft.Maui.IMenuElement! MenuElement) -> void +Microsoft.Maui.Handlers.NavigationViewHandler +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler() -> void +Microsoft.Maui.Handlers.NavigationViewHandler.NavigationViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest +Microsoft.Maui.Handlers.OpenWindowRequest.OpenWindowRequest(Microsoft.Maui.IPersistedState? State = null) -> void +Microsoft.Maui.Handlers.OpenWindowRequest.State.get -> Microsoft.Maui.IPersistedState? +Microsoft.Maui.Handlers.OpenWindowRequest.State.init -> void +Microsoft.Maui.Handlers.PageHandler +Microsoft.Maui.Handlers.PageHandler.PageHandler() -> void +Microsoft.Maui.Handlers.PageHandler.PageHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.PickerHandler +Microsoft.Maui.Handlers.PickerHandler.PickerHandler() -> void +Microsoft.Maui.Handlers.PickerHandler.PickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ProgressBarHandler +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler() -> void +Microsoft.Maui.Handlers.ProgressBarHandler.ProgressBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.RadioButtonHandler +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler() -> void +Microsoft.Maui.Handlers.RadioButtonHandler.RadioButtonHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.RefreshViewHandler +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler() -> void +Microsoft.Maui.Handlers.RefreshViewHandler.RefreshViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ScrollViewHandler +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler() -> void +Microsoft.Maui.Handlers.ScrollViewHandler.ScrollViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SearchBarHandler +Microsoft.Maui.Handlers.SearchBarHandler.QueryEditor.get -> object? +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler() -> void +Microsoft.Maui.Handlers.SearchBarHandler.SearchBarHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.ShapeViewHandler +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler() -> void +Microsoft.Maui.Handlers.ShapeViewHandler.ShapeViewHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SliderHandler +Microsoft.Maui.Handlers.SliderHandler.SliderHandler() -> void +Microsoft.Maui.Handlers.SliderHandler.SliderHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.StepperHandler +Microsoft.Maui.Handlers.StepperHandler.StepperHandler() -> void +Microsoft.Maui.Handlers.StepperHandler.StepperHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SourceLoader.get -> Microsoft.Maui.Platform.ImageSourcePartLoader! +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler() -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.SwipeItemMenuItemHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler() -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeItemViewHandler.SwipeItemViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler() -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.SwipeViewHandler.SwipeViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.SwitchHandler +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler() -> void +Microsoft.Maui.Handlers.SwitchHandler.SwitchHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.TabbedViewHandler +Microsoft.Maui.Handlers.TabbedViewHandler.TabbedViewHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler() -> void +Microsoft.Maui.Handlers.TimePickerHandler.TimePickerHandler(Microsoft.Maui.IPropertyMapper! mapper) -> void +Microsoft.Maui.Handlers.ToolbarHandler +Microsoft.Maui.Handlers.ToolbarHandler.ToolbarHandler() -> void +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.ContainerView.get -> object? +Microsoft.Maui.Handlers.ViewHandler.HasContainer.get -> bool +Microsoft.Maui.Handlers.ViewHandler.HasContainer.set -> void +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> object? +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.Handlers.ViewHandler +Microsoft.Maui.Handlers.ViewHandler.PlatformView.get -> TPlatformView! +Microsoft.Maui.Handlers.ViewHandler.ViewHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.ViewHandler.VirtualView.get -> TVirtualView! +Microsoft.Maui.Handlers.WebViewHandler +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler() -> void +Microsoft.Maui.Handlers.WebViewHandler.WebViewHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler +Microsoft.Maui.Handlers.WindowHandler.WindowHandler() -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null) -> void +Microsoft.Maui.Handlers.WindowHandler.WindowHandler(Microsoft.Maui.IPropertyMapper? mapper = null, Microsoft.Maui.CommandMapper? commandMapper = null) -> void +Microsoft.Maui.Hosting.AppHostBuilderExtensions +Microsoft.Maui.Hosting.EssentialsExtensions +Microsoft.Maui.Hosting.FontCollectionExtensions +Microsoft.Maui.Hosting.FontDescriptor +Microsoft.Maui.Hosting.FontDescriptor.Alias.get -> string? +Microsoft.Maui.Hosting.FontDescriptor.Assembly.get -> System.Reflection.Assembly? +Microsoft.Maui.Hosting.FontDescriptor.Filename.get -> string! +Microsoft.Maui.Hosting.FontDescriptor.FontDescriptor(string! filename, string? alias, System.Reflection.Assembly? assembly) -> void +Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions +Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IEssentialsBuilder +Microsoft.Maui.Hosting.IEssentialsBuilder.AddAppAction(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.OnAppAction(System.Action! action) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseMapServiceToken(string! token) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IEssentialsBuilder.UseVersionTracking() -> Microsoft.Maui.Hosting.IEssentialsBuilder! +Microsoft.Maui.Hosting.IFontCollection +Microsoft.Maui.Hosting.IImageSourceServiceCollection +Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions +Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions +Microsoft.Maui.Hosting.IMauiHandlersCollection +Microsoft.Maui.Hosting.IMauiInitializeScopedService +Microsoft.Maui.Hosting.IMauiInitializeScopedService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiInitializeService +Microsoft.Maui.Hosting.IMauiInitializeService.Initialize(System.IServiceProvider! services) -> void +Microsoft.Maui.Hosting.IMauiServiceCollection +Microsoft.Maui.Hosting.IMauiServiceCollection.TryGetService(System.Type! serviceType, out Microsoft.Extensions.DependencyInjection.ServiceDescriptor? descriptor) -> bool +Microsoft.Maui.Hosting.MauiApp +Microsoft.Maui.Hosting.MauiApp.Configuration.get -> Microsoft.Extensions.Configuration.IConfiguration! +Microsoft.Maui.Hosting.MauiApp.Dispose() -> void +Microsoft.Maui.Hosting.MauiApp.Services.get -> System.IServiceProvider! +Microsoft.Maui.Hosting.MauiAppBuilder +Microsoft.Maui.Hosting.MauiAppBuilder.Build() -> Microsoft.Maui.Hosting.MauiApp! +Microsoft.Maui.Hosting.MauiAppBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! +Microsoft.Maui.Hosting.MauiAppBuilder.ConfigureContainer(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory! factory, System.Action? configure = null) -> void +Microsoft.Maui.Hosting.MauiAppBuilder.Logging.get -> Microsoft.Extensions.Logging.ILoggingBuilder! +Microsoft.Maui.Hosting.MauiAppBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions +Microsoft.Maui.HotReload.HotReloadExtensions +Microsoft.Maui.HotReload.IHotReloadableView +Microsoft.Maui.HotReload.IHotReloadableView.Reload() -> void +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.get -> Microsoft.Maui.HotReload.IReloadHandler! +Microsoft.Maui.HotReload.IHotReloadableView.ReloadHandler.set -> void +Microsoft.Maui.HotReload.IHotReloadableView.TransferState(Microsoft.Maui.IView! newView) -> void +Microsoft.Maui.HotReload.IReloadHandler +Microsoft.Maui.HotReload.IReloadHandler.Reload() -> void +Microsoft.Maui.HotReload.MauiHotReloadHelper +Microsoft.Maui.HotReload.OnHotReloadAttribute +Microsoft.Maui.HotReload.OnHotReloadAttribute.OnHotReloadAttribute() -> void +Microsoft.Maui.IAbsoluteLayout +Microsoft.Maui.IAbsoluteLayout.GetLayoutBounds(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IAbsoluteLayout.GetLayoutFlags(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.IActivationState +Microsoft.Maui.IActivationState.Context.get -> Microsoft.Maui.IMauiContext! +Microsoft.Maui.IActivationState.State.get -> Microsoft.Maui.IPersistedState! +Microsoft.Maui.IActivityIndicator +Microsoft.Maui.IActivityIndicator.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IActivityIndicator.IsRunning.get -> bool +Microsoft.Maui.IAdorner +Microsoft.Maui.IAdorner.Density.get -> float +Microsoft.Maui.IAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.IApplication +Microsoft.Maui.IApplication.CloseWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.CreateWindow(Microsoft.Maui.IActivationState? activationState) -> Microsoft.Maui.IWindow! +Microsoft.Maui.IApplication.OpenWindow(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.IApplication.ThemeChanged() -> void +Microsoft.Maui.IApplication.Windows.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IBorder +Microsoft.Maui.IBorder.Border.get -> Microsoft.Maui.IBorderStroke! +Microsoft.Maui.IBorderStroke +Microsoft.Maui.IBorderStroke.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IBorderView +Microsoft.Maui.IButton +Microsoft.Maui.IButton.Clicked() -> void +Microsoft.Maui.IButton.Pressed() -> void +Microsoft.Maui.IButton.Released() -> void +Microsoft.Maui.IButtonStroke +Microsoft.Maui.IButtonStroke.CornerRadius.get -> int +Microsoft.Maui.IButtonStroke.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IButtonStroke.StrokeThickness.get -> double +Microsoft.Maui.ICheckBox +Microsoft.Maui.ICheckBox.Foreground.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ICheckBox.IsChecked.get -> bool +Microsoft.Maui.ICheckBox.IsChecked.set -> void +Microsoft.Maui.IContainer +Microsoft.Maui.IContentView +Microsoft.Maui.IContentView.Content.get -> object? +Microsoft.Maui.IContentView.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IContentView.PresentedContent.get -> Microsoft.Maui.IView? +Microsoft.Maui.IDatePicker +Microsoft.Maui.IDatePicker.Date.get -> System.DateTime +Microsoft.Maui.IDatePicker.Date.set -> void +Microsoft.Maui.IDatePicker.Format.get -> string! +Microsoft.Maui.IDatePicker.Format.set -> void +Microsoft.Maui.IDatePicker.MaximumDate.get -> System.DateTime +Microsoft.Maui.IDatePicker.MinimumDate.get -> System.DateTime +Microsoft.Maui.IEditor +Microsoft.Maui.IEditor.Completed() -> void +Microsoft.Maui.IElement +Microsoft.Maui.IElement.Handler.get -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IElement.Handler.set -> void +Microsoft.Maui.IElement.Parent.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IElementHandler +Microsoft.Maui.IElementHandler.DisconnectHandler() -> void +Microsoft.Maui.IElementHandler.Invoke(string! command, object? args = null) -> void +Microsoft.Maui.IElementHandler.MauiContext.get -> Microsoft.Maui.IMauiContext? +Microsoft.Maui.IElementHandler.PlatformView.get -> object? +Microsoft.Maui.IElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +Microsoft.Maui.IElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +Microsoft.Maui.IElementHandler.UpdateValue(string! property) -> void +Microsoft.Maui.IElementHandler.VirtualView.get -> Microsoft.Maui.IElement? +Microsoft.Maui.IEmbeddedFontLoader +Microsoft.Maui.IEmbeddedFontLoader.LoadFont(Microsoft.Maui.EmbeddedFont! font) -> string? +Microsoft.Maui.IEntry +Microsoft.Maui.IEntry.ClearButtonVisibility.get -> Microsoft.Maui.ClearButtonVisibility +Microsoft.Maui.IEntry.Completed() -> void +Microsoft.Maui.IEntry.IsPassword.get -> bool +Microsoft.Maui.IEntry.ReturnType.get -> Microsoft.Maui.ReturnType +Microsoft.Maui.IFileImageSource +Microsoft.Maui.IFileImageSource.File.get -> string! +Microsoft.Maui.IFlexLayout +Microsoft.Maui.IFlexLayout.AlignContent.get -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.IFlexLayout.AlignItems.get -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.IFlexLayout.Direction.get -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.IFlexLayout.GetAlignSelf(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.IFlexLayout.GetBasis(Microsoft.Maui.IView! view) -> Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.IFlexLayout.GetFlexFrame(Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IFlexLayout.GetGrow(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.GetOrder(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IFlexLayout.GetShrink(Microsoft.Maui.IView! view) -> float +Microsoft.Maui.IFlexLayout.JustifyContent.get -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.IFlexLayout.Layout(double width, double height) -> void +Microsoft.Maui.IFlexLayout.Position.get -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.IFlexLayout.Wrap.get -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.IFlyoutView +Microsoft.Maui.IFlyoutView.Detail.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.Flyout.get -> Microsoft.Maui.IView! +Microsoft.Maui.IFlyoutView.FlyoutBehavior.get -> Microsoft.Maui.FlyoutBehavior +Microsoft.Maui.IFlyoutView.FlyoutWidth.get -> double +Microsoft.Maui.IFlyoutView.IsGestureEnabled.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.get -> bool +Microsoft.Maui.IFlyoutView.IsPresented.set -> void +Microsoft.Maui.IFontImageSource +Microsoft.Maui.IFontImageSource.Color.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IFontImageSource.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.IFontImageSource.Glyph.get -> string! +Microsoft.Maui.IFontManager +Microsoft.Maui.IFontManager.DefaultFontSize.get -> double +Microsoft.Maui.IFontRegistrar +Microsoft.Maui.IFontRegistrar.GetFont(string! font) -> string? +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias) -> void +Microsoft.Maui.IFontRegistrar.Register(string! filename, string? alias, System.Reflection.Assembly! assembly) -> void +Microsoft.Maui.IGraphicsView +Microsoft.Maui.IGraphicsView.CancelInteraction() -> void +Microsoft.Maui.IGraphicsView.DragInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.Drawable.get -> Microsoft.Maui.Graphics.IDrawable! +Microsoft.Maui.IGraphicsView.EndHoverInteraction() -> void +Microsoft.Maui.IGraphicsView.EndInteraction(Microsoft.Maui.Graphics.PointF[]! points, bool isInsideBounds) -> void +Microsoft.Maui.IGraphicsView.Invalidate() -> void +Microsoft.Maui.IGraphicsView.MoveHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartHoverInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGraphicsView.StartInteraction(Microsoft.Maui.Graphics.PointF[]! points) -> void +Microsoft.Maui.IGridColumnDefinition +Microsoft.Maui.IGridColumnDefinition.Width.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IGridLayout +Microsoft.Maui.IGridLayout.ColumnDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.ColumnSpacing.get -> double +Microsoft.Maui.IGridLayout.GetColumn(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetColumnSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRow(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.GetRowSpan(Microsoft.Maui.IView! view) -> int +Microsoft.Maui.IGridLayout.RowDefinitions.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IGridLayout.RowSpacing.get -> double +Microsoft.Maui.IGridRowDefinition +Microsoft.Maui.IGridRowDefinition.Height.get -> Microsoft.Maui.GridLength +Microsoft.Maui.IImage +Microsoft.Maui.IImage.Aspect.get -> Microsoft.Maui.Aspect +Microsoft.Maui.IImage.IsOpaque.get -> bool +Microsoft.Maui.IImageButton +Microsoft.Maui.IImageSource +Microsoft.Maui.IImageSource.IsEmpty.get -> bool +Microsoft.Maui.IImageSourcePart +Microsoft.Maui.IImageSourcePart.IsAnimationPlaying.get -> bool +Microsoft.Maui.IImageSourcePart.Source.get -> Microsoft.Maui.IImageSource? +Microsoft.Maui.IImageSourcePart.UpdateIsLoading(bool isLoading) -> void +Microsoft.Maui.IImageSourcePartEvents +Microsoft.Maui.IImageSourcePartEvents.LoadingCompleted(bool successful) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingFailed(System.Exception! exception) -> void +Microsoft.Maui.IImageSourcePartEvents.LoadingStarted() -> void +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceService +Microsoft.Maui.IImageSourceServiceProvider +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceService(System.Type! imageSource) -> Microsoft.Maui.IImageSourceService? +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceServiceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.GetImageSourceType(System.Type! imageSource) -> System.Type! +Microsoft.Maui.IImageSourceServiceProvider.HostServiceProvider.get -> System.IServiceProvider! +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.IImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.IImageSourceServiceResult +Microsoft.Maui.IImageSourceServiceResult.Value.get -> T +Microsoft.Maui.IIndicatorView +Microsoft.Maui.IIndicatorView.Count.get -> int +Microsoft.Maui.IIndicatorView.HideSingle.get -> bool +Microsoft.Maui.IIndicatorView.IndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IIndicatorView.IndicatorSize.get -> double +Microsoft.Maui.IIndicatorView.IndicatorsShape.get -> Microsoft.Maui.Graphics.IShape! +Microsoft.Maui.IIndicatorView.MaximumVisible.get -> int +Microsoft.Maui.IIndicatorView.Position.get -> int +Microsoft.Maui.IIndicatorView.Position.set -> void +Microsoft.Maui.IIndicatorView.SelectedIndicatorColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IItemDelegate +Microsoft.Maui.IItemDelegate.GetCount() -> int +Microsoft.Maui.IItemDelegate.GetItem(int index) -> T +Microsoft.Maui.ILabel +Microsoft.Maui.ILabel.LineHeight.get -> double +Microsoft.Maui.ILabel.TextDecorations.get -> Microsoft.Maui.TextDecorations +Microsoft.Maui.ILayout +Microsoft.Maui.ILayout.ClipsToBounds.get -> bool +Microsoft.Maui.ILayout.CrossPlatformArrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayout.CrossPlatformMeasure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.ILayoutHandler +Microsoft.Maui.ILayoutHandler.Add(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Clear() -> void +Microsoft.Maui.ILayoutHandler.Insert(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.PlatformView.get -> object! +Microsoft.Maui.ILayoutHandler.Remove(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.Update(int index, Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.UpdateZIndex(Microsoft.Maui.IView! view) -> void +Microsoft.Maui.ILayoutHandler.VirtualView.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.ImageSourceExtensions +Microsoft.Maui.ImageSourceService +Microsoft.Maui.ImageSourceService.ImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ImageSourceService.Logger.get -> Microsoft.Extensions.Logging.ILogger? +Microsoft.Maui.ImageSourceServiceLoadResult +Microsoft.Maui.ImageSourceServiceLoadResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult() -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.ImageSourceServiceLoadResult(System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceLoadResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceLoadResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceProviderExtensions +Microsoft.Maui.ImageSourceServiceResult +Microsoft.Maui.ImageSourceServiceResult.Dispose() -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(object! image, bool resolutionDependent, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.ImageSourceServiceResult(object! image, System.Action? dispose = null) -> void +Microsoft.Maui.ImageSourceServiceResult.IsDisposed.get -> bool +Microsoft.Maui.ImageSourceServiceResult.IsResolutionDependent.get -> bool +Microsoft.Maui.ImageSourceServiceResult.Value.get -> object! +Microsoft.Maui.IMauiContext +Microsoft.Maui.IMauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.IMauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.IMauiFactory +Microsoft.Maui.IMauiHandlersFactory +Microsoft.Maui.IMauiHandlersFactory.GetCollection() -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +Microsoft.Maui.IMauiHandlersFactory.GetHandler(System.Type! type) -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandler() -> Microsoft.Maui.IElementHandler? +Microsoft.Maui.IMauiHandlersFactory.GetHandlerType(System.Type! iview) -> System.Type? +Microsoft.Maui.IMenuBar +Microsoft.Maui.IMenuBar.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarElement +Microsoft.Maui.IMenuBarElement.MenuBar.get -> Microsoft.Maui.IMenuBar? +Microsoft.Maui.IMenuBarItem +Microsoft.Maui.IMenuBarItem.IsEnabled.get -> bool +Microsoft.Maui.IMenuBarItem.Text.get -> string! +Microsoft.Maui.IMenuElement +Microsoft.Maui.IMenuElement.Clicked() -> void +Microsoft.Maui.IMenuElement.IsEnabled.get -> bool +Microsoft.Maui.IMenuFlyoutItem +Microsoft.Maui.IMenuFlyoutSubItem +Microsoft.Maui.IPadding +Microsoft.Maui.IPadding.Padding.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IPersistedState +Microsoft.Maui.IPicker +Microsoft.Maui.IPicker.Items.get -> System.Collections.Generic.IList! +Microsoft.Maui.IPicker.SelectedIndex.get -> int +Microsoft.Maui.IPicker.SelectedIndex.set -> void +Microsoft.Maui.IPicker.Title.get -> string! +Microsoft.Maui.IPicker.TitleColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPickerExtension +Microsoft.Maui.IPlaceholder +Microsoft.Maui.IPlaceholder.Placeholder.get -> string! +Microsoft.Maui.IPlaceholder.PlaceholderColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPlaceholder.PlaceholderColor.set -> void +Microsoft.Maui.IPlatformApplication +Microsoft.Maui.IPlatformApplication.Application.get -> Microsoft.Maui.IApplication! +Microsoft.Maui.IPlatformApplication.Services.get -> System.IServiceProvider! +Microsoft.Maui.IProgress +Microsoft.Maui.IProgress.Progress.get -> double +Microsoft.Maui.IProgress.ProgressColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.IPropertyMapper.GetProperty(string! key) -> System.Action? +Microsoft.Maui.IPropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView) -> void +Microsoft.Maui.IPropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! elementHandler, Microsoft.Maui.IElement! virtualView, string! property) -> void +Microsoft.Maui.IPropertyMapper +Microsoft.Maui.IPropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.IPropertyMapperView +Microsoft.Maui.IPropertyMapperView.GetPropertyMapperOverrides() -> Microsoft.Maui.PropertyMapper! +Microsoft.Maui.IRadioButton +Microsoft.Maui.IRadioButton.IsChecked.get -> bool +Microsoft.Maui.IRadioButton.IsChecked.set -> void +Microsoft.Maui.IRange +Microsoft.Maui.IRange.Maximum.get -> double +Microsoft.Maui.IRange.Minimum.get -> double +Microsoft.Maui.IRange.Value.get -> double +Microsoft.Maui.IRange.Value.set -> void +Microsoft.Maui.IRefreshView +Microsoft.Maui.IRefreshView.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IRefreshView.IsRefreshing.get -> bool +Microsoft.Maui.IRefreshView.IsRefreshing.set -> void +Microsoft.Maui.IRefreshView.RefreshColor.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IReplaceableView +Microsoft.Maui.IReplaceableView.ReplacedView.get -> Microsoft.Maui.IView! +Microsoft.Maui.ISafeAreaView +Microsoft.Maui.ISafeAreaView.IgnoreSafeArea.get -> bool +Microsoft.Maui.IScrollView +Microsoft.Maui.IScrollView.ContentSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IScrollView.HorizontalOffset.get -> double +Microsoft.Maui.IScrollView.HorizontalOffset.set -> void +Microsoft.Maui.IScrollView.HorizontalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.IScrollView.Orientation.get -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.IScrollView.RequestScrollTo(double horizontalOffset, double verticalOffset, bool instant) -> void +Microsoft.Maui.IScrollView.ScrollFinished() -> void +Microsoft.Maui.IScrollView.VerticalOffset.get -> double +Microsoft.Maui.IScrollView.VerticalOffset.set -> void +Microsoft.Maui.IScrollView.VerticalScrollBarVisibility.get -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ISearchBar +Microsoft.Maui.ISearchBar.CancelButtonColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISearchBar.SearchButtonPressed() -> void +Microsoft.Maui.IShadow +Microsoft.Maui.IShadow.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IShadow.Opacity.get -> float +Microsoft.Maui.IShadow.Paint.get -> Microsoft.Maui.Graphics.Paint! +Microsoft.Maui.IShadow.Radius.get -> float +Microsoft.Maui.IShapeView +Microsoft.Maui.IShapeView.Aspect.get -> Microsoft.Maui.PathAspect +Microsoft.Maui.IShapeView.Fill.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IShapeView.Shape.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.ISlider +Microsoft.Maui.ISlider.DragCompleted() -> void +Microsoft.Maui.ISlider.DragStarted() -> void +Microsoft.Maui.ISlider.MaximumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.MinimumTrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISlider.ThumbImageSource.get -> Microsoft.Maui.IImageSource! +Microsoft.Maui.IStackLayout +Microsoft.Maui.IStackLayout.Spacing.get -> double +Microsoft.Maui.IStackNavigation +Microsoft.Maui.IStackNavigation.NavigationFinished(System.Collections.Generic.IReadOnlyList! newStack) -> void +Microsoft.Maui.IStackNavigation.RequestNavigation(Microsoft.Maui.NavigationRequest! eventArgs) -> void +Microsoft.Maui.IStackNavigationView +Microsoft.Maui.IStepper +Microsoft.Maui.IStepper.Interval.get -> double +Microsoft.Maui.IStreamImageSource +Microsoft.Maui.IStreamImageSource.GetStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.IStroke +Microsoft.Maui.IStroke.Stroke.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IStroke.StrokeDashOffset.get -> float +Microsoft.Maui.IStroke.StrokeDashPattern.get -> float[]? +Microsoft.Maui.IStroke.StrokeLineCap.get -> Microsoft.Maui.Graphics.LineCap +Microsoft.Maui.IStroke.StrokeLineJoin.get -> Microsoft.Maui.Graphics.LineJoin +Microsoft.Maui.IStroke.StrokeMiterLimit.get -> float +Microsoft.Maui.IStroke.StrokeThickness.get -> double +Microsoft.Maui.ISwipeItem +Microsoft.Maui.ISwipeItem.AutomationId.get -> string! +Microsoft.Maui.ISwipeItem.OnInvoked() -> void +Microsoft.Maui.ISwipeItemMenuItem +Microsoft.Maui.ISwipeItemMenuItem.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.ISwipeItemMenuItem.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.ISwipeItems +Microsoft.Maui.ISwipeItems.Mode.get -> Microsoft.Maui.SwipeMode +Microsoft.Maui.ISwipeItems.SwipeBehaviorOnInvoked.get -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.ISwipeItemView +Microsoft.Maui.ISwipeView +Microsoft.Maui.ISwipeView.BottomItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.IsOpen.get -> bool +Microsoft.Maui.ISwipeView.IsOpen.set -> void +Microsoft.Maui.ISwipeView.LeftItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.RequestClose(Microsoft.Maui.SwipeViewCloseRequest! swipeCloseRequest) -> void +Microsoft.Maui.ISwipeView.RequestOpen(Microsoft.Maui.SwipeViewOpenRequest! swipeOpenRequest) -> void +Microsoft.Maui.ISwipeView.RightItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwipeView.SwipeChanging(Microsoft.Maui.SwipeViewSwipeChanging! swipeChanging) -> void +Microsoft.Maui.ISwipeView.SwipeEnded(Microsoft.Maui.SwipeViewSwipeEnded! swipeEnded) -> void +Microsoft.Maui.ISwipeView.SwipeStarted(Microsoft.Maui.SwipeViewSwipeStarted! swipeStarted) -> void +Microsoft.Maui.ISwipeView.SwipeTransitionMode.get -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.ISwipeView.Threshold.get -> double +Microsoft.Maui.ISwipeView.TopItems.get -> Microsoft.Maui.ISwipeItems! +Microsoft.Maui.ISwitch +Microsoft.Maui.ISwitch.IsOn.get -> bool +Microsoft.Maui.ISwitch.IsOn.set -> void +Microsoft.Maui.ISwitch.ThumbColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ISwitch.TrackColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITabbedView +Microsoft.Maui.ItemDelegateList +Microsoft.Maui.ItemDelegateList.Count.get -> int +Microsoft.Maui.ItemDelegateList.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.ItemDelegateList.ItemDelegate.get -> Microsoft.Maui.IItemDelegate! +Microsoft.Maui.ItemDelegateList.ItemDelegateList(Microsoft.Maui.IItemDelegate! itemDelegate) -> void +Microsoft.Maui.ItemDelegateList.this[int index].get -> T +Microsoft.Maui.ITemplatedIndicatorView +Microsoft.Maui.ITemplatedIndicatorView.IndicatorsLayoutOverride.get -> Microsoft.Maui.ILayout? +Microsoft.Maui.IText +Microsoft.Maui.IText.Text.get -> string! +Microsoft.Maui.ITextAlignment +Microsoft.Maui.ITextAlignment.HorizontalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextAlignment.VerticalTextAlignment.get -> Microsoft.Maui.TextAlignment +Microsoft.Maui.ITextButton +Microsoft.Maui.ITextInput +Microsoft.Maui.ITextInput.CursorPosition.get -> int +Microsoft.Maui.ITextInput.CursorPosition.set -> void +Microsoft.Maui.ITextInput.IsReadOnly.get -> bool +Microsoft.Maui.ITextInput.IsTextPredictionEnabled.get -> bool +Microsoft.Maui.ITextInput.Keyboard.get -> Microsoft.Maui.Keyboard! +Microsoft.Maui.ITextInput.MaxLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.get -> int +Microsoft.Maui.ITextInput.SelectionLength.set -> void +Microsoft.Maui.ITextInput.Text.get -> string! +Microsoft.Maui.ITextInput.Text.set -> void +Microsoft.Maui.ITextInputExtensions +Microsoft.Maui.ITextStyle +Microsoft.Maui.ITextStyle.CharacterSpacing.get -> double +Microsoft.Maui.ITextStyle.Font.get -> Microsoft.Maui.Font +Microsoft.Maui.ITextStyle.TextColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.ITimePicker +Microsoft.Maui.ITimePicker.Format.get -> string! +Microsoft.Maui.ITimePicker.Time.get -> System.TimeSpan +Microsoft.Maui.ITimePicker.Time.set -> void +Microsoft.Maui.ITitledElement +Microsoft.Maui.ITitledElement.Title.get -> string? +Microsoft.Maui.IToolbar +Microsoft.Maui.IToolbar.BackButtonVisible.get -> bool +Microsoft.Maui.IToolbar.BackButtonVisible.set -> void +Microsoft.Maui.IToolbar.IsVisible.get -> bool +Microsoft.Maui.IToolbar.IsVisible.set -> void +Microsoft.Maui.IToolbar.Title.get -> string! +Microsoft.Maui.IToolbarElement +Microsoft.Maui.IToolbarElement.Toolbar.get -> Microsoft.Maui.IToolbar? +Microsoft.Maui.ITransform +Microsoft.Maui.ITransform.AnchorX.get -> double +Microsoft.Maui.ITransform.AnchorY.get -> double +Microsoft.Maui.ITransform.Rotation.get -> double +Microsoft.Maui.ITransform.RotationX.get -> double +Microsoft.Maui.ITransform.RotationY.get -> double +Microsoft.Maui.ITransform.Scale.get -> double +Microsoft.Maui.ITransform.ScaleX.get -> double +Microsoft.Maui.ITransform.ScaleY.get -> double +Microsoft.Maui.ITransform.TranslationX.get -> double +Microsoft.Maui.ITransform.TranslationY.get -> double +Microsoft.Maui.IUriImageSource +Microsoft.Maui.IUriImageSource.CacheValidity.get -> System.TimeSpan +Microsoft.Maui.IUriImageSource.CachingEnabled.get -> bool +Microsoft.Maui.IUriImageSource.Uri.get -> System.Uri! +Microsoft.Maui.IView +Microsoft.Maui.IView.Arrange(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.AutomationId.get -> string! +Microsoft.Maui.IView.Background.get -> Microsoft.Maui.Graphics.Paint? +Microsoft.Maui.IView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.IView.DesiredSize.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IView.Focus() -> bool +Microsoft.Maui.IView.Frame.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.IView.Frame.set -> void +Microsoft.Maui.IView.Handler.get -> Microsoft.Maui.IViewHandler? +Microsoft.Maui.IView.Handler.set -> void +Microsoft.Maui.IView.Height.get -> double +Microsoft.Maui.IView.HorizontalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.InputTransparent.get -> bool +Microsoft.Maui.IView.InvalidateArrange() -> void +Microsoft.Maui.IView.InvalidateMeasure() -> void +Microsoft.Maui.IView.IsEnabled.get -> bool +Microsoft.Maui.IView.IsFocused.get -> bool +Microsoft.Maui.IView.IsFocused.set -> void +Microsoft.Maui.IView.Margin.get -> Microsoft.Maui.Thickness +Microsoft.Maui.IView.MaximumHeight.get -> double +Microsoft.Maui.IView.MaximumWidth.get -> double +Microsoft.Maui.IView.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IView.MinimumHeight.get -> double +Microsoft.Maui.IView.MinimumWidth.get -> double +Microsoft.Maui.IView.Opacity.get -> double +Microsoft.Maui.IView.Semantics.get -> Microsoft.Maui.Semantics? +Microsoft.Maui.IView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.IView.Unfocus() -> void +Microsoft.Maui.IView.VerticalLayoutAlignment.get -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.IView.Visibility.get -> Microsoft.Maui.Visibility +Microsoft.Maui.IView.Width.get -> double +Microsoft.Maui.IView.ZIndex.get -> int +Microsoft.Maui.IViewExtensions +Microsoft.Maui.IViewHandler +Microsoft.Maui.IViewHandler.ContainerView.get -> object? +Microsoft.Maui.IViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.IViewHandler.HasContainer.get -> bool +Microsoft.Maui.IViewHandler.HasContainer.set -> void +Microsoft.Maui.IViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect frame) -> void +Microsoft.Maui.IViewHandler.VirtualView.get -> Microsoft.Maui.IView? +Microsoft.Maui.IVisualDiagnosticsOverlay +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! view) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.IVisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IVisualTreeElement +Microsoft.Maui.IVisualTreeElement.GetVisualChildren() -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.IVisualTreeElement.GetVisualParent() -> Microsoft.Maui.IVisualTreeElement? +Microsoft.Maui.IWebView +Microsoft.Maui.IWebView.CanGoBack.get -> bool +Microsoft.Maui.IWebView.CanGoBack.set -> void +Microsoft.Maui.IWebView.CanGoForward.get -> bool +Microsoft.Maui.IWebView.CanGoForward.set -> void +Microsoft.Maui.IWebView.Cookies.get -> System.Net.CookieContainer! +Microsoft.Maui.IWebView.Eval(string! script) -> void +Microsoft.Maui.IWebView.EvaluateJavaScriptAsync(string! script) -> System.Threading.Tasks.Task! +Microsoft.Maui.IWebView.GoBack() -> void +Microsoft.Maui.IWebView.GoForward() -> void +Microsoft.Maui.IWebView.Navigated(Microsoft.Maui.WebNavigationEvent evnt, string! url, Microsoft.Maui.WebNavigationResult result) -> void +Microsoft.Maui.IWebView.Navigating(Microsoft.Maui.WebNavigationEvent evnt, string! url) -> bool +Microsoft.Maui.IWebView.Reload() -> void +Microsoft.Maui.IWebView.Source.get -> Microsoft.Maui.IWebViewSource! +Microsoft.Maui.IWebViewDelegate +Microsoft.Maui.IWebViewDelegate.LoadHtml(string? html, string? baseUrl) -> void +Microsoft.Maui.IWebViewDelegate.LoadUrl(string? url) -> void +Microsoft.Maui.IWebViewSource +Microsoft.Maui.IWebViewSource.Load(Microsoft.Maui.IWebViewDelegate! webViewDelegate) -> void +Microsoft.Maui.IWindow +Microsoft.Maui.IWindow.Activated() -> void +Microsoft.Maui.IWindow.AddOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.BackButtonClicked() -> bool +Microsoft.Maui.IWindow.Backgrounding(Microsoft.Maui.IPersistedState! state) -> void +Microsoft.Maui.IWindow.Content.get -> Microsoft.Maui.IView! +Microsoft.Maui.IWindow.Created() -> void +Microsoft.Maui.IWindow.Deactivated() -> void +Microsoft.Maui.IWindow.Destroying() -> void +Microsoft.Maui.IWindow.DisplayDensityChanged(float displayDensity) -> void +Microsoft.Maui.IWindow.FlowDirection.get -> Microsoft.Maui.FlowDirection +Microsoft.Maui.IWindow.Overlays.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindow.RemoveOverlay(Microsoft.Maui.IWindowOverlay! overlay) -> bool +Microsoft.Maui.IWindow.RequestDisplayDensity() -> float +Microsoft.Maui.IWindow.Resumed() -> void +Microsoft.Maui.IWindow.Stopped() -> void +Microsoft.Maui.IWindow.VisualDiagnosticsOverlay.get -> Microsoft.Maui.IVisualDiagnosticsOverlay! +Microsoft.Maui.IWindowOverlay +Microsoft.Maui.IWindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.Deinitialize() -> bool +Microsoft.Maui.IWindowOverlay.Density.get -> float +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.IWindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.IWindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.IWindowOverlay.HandleUIChange() -> void +Microsoft.Maui.IWindowOverlay.Initialize() -> bool +Microsoft.Maui.IWindowOverlay.Invalidate() -> void +Microsoft.Maui.IWindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.get -> bool +Microsoft.Maui.IWindowOverlay.IsVisible.set -> void +Microsoft.Maui.IWindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! element) -> bool +Microsoft.Maui.IWindowOverlay.RemoveWindowElements() -> void +Microsoft.Maui.IWindowOverlay.Tapped -> System.EventHandler! +Microsoft.Maui.IWindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.IWindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.IWindowOverlayElement +Microsoft.Maui.IWindowOverlayElement.Contains(Microsoft.Maui.Graphics.Point point) -> bool +Microsoft.Maui.Keyboard +Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.All = -1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeCharacter = 16 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeNone = 32 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeSentence = 1 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.CapitalizeWord = 8 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.None = 0 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Spellcheck = 2 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.KeyboardFlags.Suggestions = 4 -> Microsoft.Maui.KeyboardFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.All = -1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional = 8 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.None = 0 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.PositionProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.SizeProportional = Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional | Microsoft.Maui.Layouts.AbsoluteLayoutFlags.HeightProportional -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.WidthProportional = 4 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.XProportional = 1 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutFlags.YProportional = 2 -> Microsoft.Maui.Layouts.AbsoluteLayoutFlags +Microsoft.Maui.Layouts.AbsoluteLayoutManager +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayout.get -> Microsoft.Maui.IAbsoluteLayout! +Microsoft.Maui.Layouts.AbsoluteLayoutManager.AbsoluteLayoutManager(Microsoft.Maui.IAbsoluteLayout! absoluteLayout) -> void +Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.End = 4 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignContent.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignContent +Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.End = 4 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignItems.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignItems +Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Auto = 0 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Center = 2 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.End = 4 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Start = 3 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexAlignSelf.Stretch = 1 -> Microsoft.Maui.Layouts.FlexAlignSelf +Microsoft.Maui.Layouts.FlexBasis +Microsoft.Maui.Layouts.FlexBasis.FlexBasis() -> void +Microsoft.Maui.Layouts.FlexBasis.FlexBasis(float length, bool isRelative = false) -> void +Microsoft.Maui.Layouts.FlexBasis.Length.get -> float +Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Column = 2 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.ColumnReverse = 3 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.Row = 0 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexDirection.RowReverse = 1 -> Microsoft.Maui.Layouts.FlexDirection +Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Center = 2 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.End = 4 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceAround = 6 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceBetween = 5 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.SpaceEvenly = 7 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexJustify.Start = 3 -> Microsoft.Maui.Layouts.FlexJustify +Microsoft.Maui.Layouts.FlexLayoutManager +Microsoft.Maui.Layouts.FlexLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexLayoutManager.FlexLayoutManager(Microsoft.Maui.IFlexLayout! flexLayout) -> void +Microsoft.Maui.Layouts.FlexLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Absolute = 1 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexPosition.Relative = 0 -> Microsoft.Maui.Layouts.FlexPosition +Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.NoWrap = 0 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Reverse = 2 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.FlexWrap.Wrap = 1 -> Microsoft.Maui.Layouts.FlexWrap +Microsoft.Maui.Layouts.GridLayoutManager +Microsoft.Maui.Layouts.GridLayoutManager.Grid.get -> Microsoft.Maui.IGridLayout! +Microsoft.Maui.Layouts.GridLayoutManager.GridLayoutManager(Microsoft.Maui.IGridLayout! layout) -> void +Microsoft.Maui.Layouts.HorizontalStackLayoutManager +Microsoft.Maui.Layouts.HorizontalStackLayoutManager.HorizontalStackLayoutManager(Microsoft.Maui.IStackLayout! layout) -> void +Microsoft.Maui.Layouts.ILayoutManager +Microsoft.Maui.Layouts.ILayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.ILayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.Layouts.LayoutExtensions +Microsoft.Maui.Layouts.LayoutManager +Microsoft.Maui.Layouts.LayoutManager.Layout.get -> Microsoft.Maui.ILayout! +Microsoft.Maui.Layouts.LayoutManager.LayoutManager(Microsoft.Maui.ILayout! layout) -> void +Microsoft.Maui.Layouts.StackLayoutManager +Microsoft.Maui.Layouts.StackLayoutManager.Stack.get -> Microsoft.Maui.IStackLayout! +Microsoft.Maui.Layouts.StackLayoutManager.StackLayoutManager(Microsoft.Maui.IStackLayout! stack) -> void +Microsoft.Maui.Layouts.VerticalStackLayoutManager +Microsoft.Maui.Layouts.VerticalStackLayoutManager.VerticalStackLayoutManager(Microsoft.Maui.IStackLayout! stackLayout) -> void +Microsoft.Maui.LifecycleEvents.AppHostBuilderExtensions +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder +Microsoft.Maui.LifecycleEvents.ILifecycleBuilder.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.ILifecycleEventService +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.ILifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration +Microsoft.Maui.LifecycleEvents.LifecycleEventRegistration.LifecycleEventRegistration(System.Action! registerAction) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService +Microsoft.Maui.LifecycleEvents.LifecycleEventService.AddEvent(string! eventName, TDelegate! action) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventService.ContainsEvent(string! eventName) -> bool +Microsoft.Maui.LifecycleEvents.LifecycleEventService.GetEventDelegates(string! eventName) -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.LifecycleEvents.LifecycleEventService.LifecycleEventService(System.Collections.Generic.IEnumerable! registrations) -> void +Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions +Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions +Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.CharacterWrap = 2 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.HeadTruncation = 3 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.MiddleTruncation = 5 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.NoWrap = 0 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.TailTruncation = 4 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LineBreakMode.WordWrap = 1 -> Microsoft.Maui.LineBreakMode +Microsoft.Maui.LockableObservableListWrapper +Microsoft.Maui.LockableObservableListWrapper.Add(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.Clear() -> void +Microsoft.Maui.LockableObservableListWrapper.Contains(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.CopyTo(string![]! array, int arrayIndex) -> void +Microsoft.Maui.LockableObservableListWrapper.Count.get -> int +Microsoft.Maui.LockableObservableListWrapper.GetEnumerator() -> System.Collections.Generic.IEnumerator! +Microsoft.Maui.LockableObservableListWrapper.IndexOf(string! item) -> int +Microsoft.Maui.LockableObservableListWrapper.Insert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalAdd(string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalClear() -> void +Microsoft.Maui.LockableObservableListWrapper.InternalInsert(int index, string! item) -> void +Microsoft.Maui.LockableObservableListWrapper.InternalRemove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.InternalRemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.IsLocked.get -> bool +Microsoft.Maui.LockableObservableListWrapper.IsLocked.set -> void +Microsoft.Maui.LockableObservableListWrapper.IsReadOnly.get -> bool +Microsoft.Maui.LockableObservableListWrapper.LockableObservableListWrapper() -> void +Microsoft.Maui.LockableObservableListWrapper.Remove(string! item) -> bool +Microsoft.Maui.LockableObservableListWrapper.RemoveAt(int index) -> void +Microsoft.Maui.LockableObservableListWrapper.this[int index].get -> string! +Microsoft.Maui.LockableObservableListWrapper.this[int index].set -> void +Microsoft.Maui.MauiContext +Microsoft.Maui.MauiContext.Handlers.get -> Microsoft.Maui.IMauiHandlersFactory! +Microsoft.Maui.MauiContext.MauiContext(System.IServiceProvider! services) -> void +Microsoft.Maui.MauiContext.Services.get -> System.IServiceProvider! +Microsoft.Maui.MissingMapperAttribute +Microsoft.Maui.MissingMapperAttribute.Description.get -> string? +Microsoft.Maui.MissingMapperAttribute.Description.set -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute() -> void +Microsoft.Maui.MissingMapperAttribute.MissingMapperAttribute(string! description) -> void +Microsoft.Maui.NavigationRequest +Microsoft.Maui.NavigationRequest.Animated.get -> bool +Microsoft.Maui.NavigationRequest.NavigationRequest(System.Collections.Generic.IReadOnlyList! newNavigationStack, bool animated) -> void +Microsoft.Maui.NavigationRequest.NavigationStack.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.BottomItems = 3 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.LeftItems = 0 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.RightItems = 2 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.OpenSwipeItem.TopItems = 1 -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFill = 4 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.AspectFit = 3 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Center = 1 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.None = 0 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PathAspect.Stretch = 2 -> Microsoft.Maui.PathAspect +Microsoft.Maui.PersistedState +Microsoft.Maui.PersistedState.PersistedState() -> void +Microsoft.Maui.Platform.ElementExtensions +Microsoft.Maui.Platform.ImageSourcePartLoader +Microsoft.Maui.Platform.ImageSourcePartLoader.ImageSourcePartLoader(Microsoft.Maui.IElementHandler! handler, System.Func! imageSourcePart, System.Action! setImage) -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.Reset() -> void +Microsoft.Maui.Platform.ImageSourcePartLoader.UpdateImageSourceAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Platform.StrokeExtensions +Microsoft.Maui.Platform.SwipeViewExtensions +Microsoft.Maui.Platform.TimeExtensions +Microsoft.Maui.Platform.ViewExtensions +Microsoft.Maui.Platform.WindowExtensions +Microsoft.Maui.Platform.WrapperView +Microsoft.Maui.Platform.WrapperView.Border.get -> Microsoft.Maui.IBorderStroke? +Microsoft.Maui.Platform.WrapperView.Border.set -> void +Microsoft.Maui.Platform.WrapperView.Clip.get -> Microsoft.Maui.Graphics.IShape? +Microsoft.Maui.Platform.WrapperView.Clip.set -> void +Microsoft.Maui.Platform.WrapperView.Shadow.get -> Microsoft.Maui.IShadow? +Microsoft.Maui.Platform.WrapperView.Shadow.set -> void +Microsoft.Maui.Platform.WrapperView.WrapperView() -> void +Microsoft.Maui.PortHandlerAttribute +Microsoft.Maui.PortHandlerAttribute.Description.get -> string? +Microsoft.Maui.PortHandlerAttribute.Description.set -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute() -> void +Microsoft.Maui.PortHandlerAttribute.PortHandlerAttribute(string! description) -> void +Microsoft.Maui.Primitives.Dimension +Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Center = 2 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.End = 3 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Fill = 0 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.Primitives.LayoutAlignment.Start = 1 -> Microsoft.Maui.Primitives.LayoutAlignment +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Chained.get -> Microsoft.Maui.IPropertyMapper![]? +Microsoft.Maui.PropertyMapper.Chained.set -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]? chained) -> void +Microsoft.Maui.PropertyMapper.UpdateProperties(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView) -> void +Microsoft.Maui.PropertyMapper.UpdateProperty(Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement? virtualView, string! property) -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.Add(string! key, System.Action! action) -> void +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.IPropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapper.this[string! key].get -> System.Action! +Microsoft.Maui.PropertyMapper.this[string! key].set -> void +Microsoft.Maui.PropertyMapper +Microsoft.Maui.PropertyMapper.PropertyMapper() -> void +Microsoft.Maui.PropertyMapper.PropertyMapper(params Microsoft.Maui.PropertyMapper![]! chained) -> void +Microsoft.Maui.PropertyMapperExtensions +Microsoft.Maui.RectangleAdorner +Microsoft.Maui.RectangleAdorner.Density.get -> float +Microsoft.Maui.RectangleAdorner.DrawnRectangle.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.RectangleAdorner.FillColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.RectangleAdorner.RectangleAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RectangleAdorner.StrokeColor.get -> Microsoft.Maui.Graphics.Color! +Microsoft.Maui.RectangleAdorner.VisualView.get -> Microsoft.Maui.IView! +Microsoft.Maui.RectangleGridAdorner +Microsoft.Maui.RectangleGridAdorner.RectangleGridAdorner(Microsoft.Maui.IView! view, float density = 1, Microsoft.Maui.Graphics.Point? offset = null, Microsoft.Maui.Graphics.Color? fillColor = null, Microsoft.Maui.Graphics.Color? strokeColor = null) -> void +Microsoft.Maui.RetrievePlatformValueRequest +Microsoft.Maui.RetrievePlatformValueRequest.Result.get -> T +Microsoft.Maui.RetrievePlatformValueRequest.RetrievePlatformValueRequest() -> void +Microsoft.Maui.RetrievePlatformValueRequest.SetResult(T result) -> void +Microsoft.Maui.RetrievePlatformValueRequest.TrySetResult(T result) -> bool +Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Default = 0 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Done = 1 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Go = 2 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Next = 3 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Search = 4 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ReturnType.Send = 5 -> Microsoft.Maui.ReturnType +Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Always = 1 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Default = 0 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollBarVisibility.Never = 2 -> Microsoft.Maui.ScrollBarVisibility +Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Both = 2 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Horizontal = 1 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Neither = 3 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollOrientation.Vertical = 0 -> Microsoft.Maui.ScrollOrientation +Microsoft.Maui.ScrollToRequest +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.get -> double +Microsoft.Maui.ScrollToRequest.HoriztonalOffset.init -> void +Microsoft.Maui.ScrollToRequest.Instant.get -> bool +Microsoft.Maui.ScrollToRequest.Instant.init -> void +Microsoft.Maui.ScrollToRequest.ScrollToRequest(double HoriztonalOffset, double VerticalOffset, bool Instant) -> void +Microsoft.Maui.ScrollToRequest.VerticalOffset.get -> double +Microsoft.Maui.ScrollToRequest.VerticalOffset.init -> void +Microsoft.Maui.SemanticExtensions +Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level1 = 1 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level2 = 2 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level3 = 3 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level4 = 4 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level5 = 5 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level6 = 6 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level7 = 7 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level8 = 8 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.Level9 = 9 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.SemanticHeadingLevel.None = 0 -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics +Microsoft.Maui.Semantics.Description.get -> string? +Microsoft.Maui.Semantics.Description.set -> void +Microsoft.Maui.Semantics.HeadingLevel.get -> Microsoft.Maui.SemanticHeadingLevel +Microsoft.Maui.Semantics.HeadingLevel.set -> void +Microsoft.Maui.Semantics.Hint.get -> string? +Microsoft.Maui.Semantics.Hint.set -> void +Microsoft.Maui.Semantics.IsHeading.get -> bool +Microsoft.Maui.Semantics.Semantics() -> void +Microsoft.Maui.SizeRequest +Microsoft.Maui.SizeRequest.Minimum.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Minimum.set -> void +Microsoft.Maui.SizeRequest.Request.get -> Microsoft.Maui.Graphics.Size +Microsoft.Maui.SizeRequest.Request.set -> void +Microsoft.Maui.SizeRequest.SizeRequest() -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request) -> void +Microsoft.Maui.SizeRequest.SizeRequest(Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum) -> void +Microsoft.Maui.SourceInfo +Microsoft.Maui.SourceInfo.Deconstruct(out System.Uri! sourceUri, out int lineNumber, out int linePosition) -> void +Microsoft.Maui.SourceInfo.LineNumber.get -> int +Microsoft.Maui.SourceInfo.LinePosition.get -> int +Microsoft.Maui.SourceInfo.SourceInfo(System.Uri! sourceUri, int lineNumber, int linePosition) -> void +Microsoft.Maui.SourceInfo.SourceUri.get -> System.Uri! +Microsoft.Maui.StreamImageSourceService +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService() -> void +Microsoft.Maui.StreamImageSourceService.StreamImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Auto = 0 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.Close = 1 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeBehaviorOnInvoked.RemainOpen = 2 -> Microsoft.Maui.SwipeBehaviorOnInvoked +Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Down = 8 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Left = 2 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Right = 1 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeDirection.Up = 4 -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Execute = 1 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeMode.Reveal = 0 -> Microsoft.Maui.SwipeMode +Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Drag = 1 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeTransitionMode.Reveal = 0 -> Microsoft.Maui.SwipeTransitionMode +Microsoft.Maui.SwipeViewCloseRequest +Microsoft.Maui.SwipeViewCloseRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewCloseRequest.Animated.init -> void +Microsoft.Maui.SwipeViewCloseRequest.SwipeViewCloseRequest(bool Animated) -> void +Microsoft.Maui.SwipeViewOpenRequest +Microsoft.Maui.SwipeViewOpenRequest.Animated.get -> bool +Microsoft.Maui.SwipeViewOpenRequest.Animated.init -> void +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.get -> Microsoft.Maui.OpenSwipeItem +Microsoft.Maui.SwipeViewOpenRequest.OpenSwipeItem.init -> void +Microsoft.Maui.SwipeViewOpenRequest.SwipeViewOpenRequest(Microsoft.Maui.OpenSwipeItem OpenSwipeItem, bool Animated) -> void +Microsoft.Maui.SwipeViewSwipeChanging +Microsoft.Maui.SwipeViewSwipeChanging.Offset.get -> double +Microsoft.Maui.SwipeViewSwipeChanging.Offset.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeChanging.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeChanging.SwipeViewSwipeChanging(Microsoft.Maui.SwipeDirection SwipeDirection, double Offset) -> void +Microsoft.Maui.SwipeViewSwipeEnded +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.get -> bool +Microsoft.Maui.SwipeViewSwipeEnded.IsOpen.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeEnded.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeEnded.SwipeViewSwipeEnded(Microsoft.Maui.SwipeDirection SwipeDirection, bool IsOpen) -> void +Microsoft.Maui.SwipeViewSwipeStarted +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.get -> Microsoft.Maui.SwipeDirection +Microsoft.Maui.SwipeViewSwipeStarted.SwipeDirection.init -> void +Microsoft.Maui.SwipeViewSwipeStarted.SwipeViewSwipeStarted(Microsoft.Maui.SwipeDirection SwipeDirection) -> void +Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Center = 1 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.End = 2 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextAlignment.Start = 0 -> Microsoft.Maui.TextAlignment +Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.None = 0 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Strikethrough = 2 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextDecorations.Underline = 1 -> Microsoft.Maui.TextDecorations +Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Default = 1 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Lowercase = 2 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.None = 0 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextTransform.Uppercase = 3 -> Microsoft.Maui.TextTransform +Microsoft.Maui.TextType +Microsoft.Maui.TextType.Html = 1 -> Microsoft.Maui.TextType +Microsoft.Maui.TextType.Text = 0 -> Microsoft.Maui.TextType +Microsoft.Maui.Thickness +Microsoft.Maui.Thickness.Bottom.get -> double +Microsoft.Maui.Thickness.Bottom.set -> void +Microsoft.Maui.Thickness.Deconstruct(out double left, out double top, out double right, out double bottom) -> void +Microsoft.Maui.Thickness.HorizontalThickness.get -> double +Microsoft.Maui.Thickness.IsEmpty.get -> bool +Microsoft.Maui.Thickness.IsNaN.get -> bool +Microsoft.Maui.Thickness.Left.get -> double +Microsoft.Maui.Thickness.Left.set -> void +Microsoft.Maui.Thickness.Right.get -> double +Microsoft.Maui.Thickness.Right.set -> void +Microsoft.Maui.Thickness.Thickness() -> void +Microsoft.Maui.Thickness.Thickness(double horizontalSize, double verticalSize) -> void +Microsoft.Maui.Thickness.Thickness(double left, double top, double right, double bottom) -> void +Microsoft.Maui.Thickness.Thickness(double uniformSize) -> void +Microsoft.Maui.Thickness.Top.get -> double +Microsoft.Maui.Thickness.Top.set -> void +Microsoft.Maui.Thickness.VerticalThickness.get -> double +Microsoft.Maui.UriImageSourceService +Microsoft.Maui.UriImageSourceService.UriImageSourceService() -> void +Microsoft.Maui.UriImageSourceService.UriImageSourceService(Microsoft.Extensions.Logging.ILogger? logger = null) -> void +Microsoft.Maui.ViewExtensions +Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Collapsed = 2 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Hidden = 1 -> Microsoft.Maui.Visibility +Microsoft.Maui.Visibility.Visible = 0 -> Microsoft.Maui.Visibility +Microsoft.Maui.VisualDiagnostics +Microsoft.Maui.VisualDiagnosticsOverlay +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IAdorner! adorner, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddAdorner(Microsoft.Maui.IVisualTreeElement! visualElement, bool scrollToView = false) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandler(Microsoft.Maui.IScrollView! scrollBar) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.AddScrollableElementHandlers() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.EnableElementSelector.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.Offset.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorner(Microsoft.Maui.IAdorner! adorner) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveAdorners(Microsoft.Maui.IVisualTreeElement! visualElement) -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.RemoveScrollableElementHandler() -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.get -> bool +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToElement.set -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollToView(Microsoft.Maui.IVisualTreeElement! element) -> void +Microsoft.Maui.VisualDiagnosticsOverlay.ScrollViews.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.VisualDiagnosticsOverlay.VisualDiagnosticsOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.VisualTreeChangeEventArgs +Microsoft.Maui.VisualTreeChangeEventArgs.ChangeType.get -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeEventArgs.Child.get -> object! +Microsoft.Maui.VisualTreeChangeEventArgs.ChildIndex.get -> int +Microsoft.Maui.VisualTreeChangeEventArgs.Parent.get -> object? +Microsoft.Maui.VisualTreeChangeEventArgs.VisualTreeChangeEventArgs(object? parent, object! child, int childIndex, Microsoft.Maui.VisualTreeChangeType changeType) -> void +Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Add = 0 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeChangeType.Remove = 1 -> Microsoft.Maui.VisualTreeChangeType +Microsoft.Maui.VisualTreeElementExtensions +Microsoft.Maui.WeakEventManager +Microsoft.Maui.WeakEventManager.AddEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.AddEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.Delegate? handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.RemoveEventHandler(System.EventHandler! handler, string! eventName = "") -> void +Microsoft.Maui.WeakEventManager.WeakEventManager() -> void +Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Back = 1 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Forward = 2 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.NewPage = 3 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationEvent.Refresh = 4 -> Microsoft.Maui.WebNavigationEvent +Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Cancel = 2 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Failure = 4 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Success = 1 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WebNavigationResult.Timeout = 3 -> Microsoft.Maui.WebNavigationResult +Microsoft.Maui.WindowExtensions +Microsoft.Maui.WindowOverlay +Microsoft.Maui.WindowOverlay.Density.get -> float +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.get -> bool +Microsoft.Maui.WindowOverlay.DisableUITouchEventPassthrough.set -> void +Microsoft.Maui.WindowOverlay.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.get -> bool +Microsoft.Maui.WindowOverlay.EnableDrawableTouchHandling.set -> void +Microsoft.Maui.WindowOverlay.GraphicsView.get -> object? +Microsoft.Maui.WindowOverlay.Invalidate() -> void +Microsoft.Maui.WindowOverlay.IsPlatformViewInitialized.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.get -> bool +Microsoft.Maui.WindowOverlay.IsVisible.set -> void +Microsoft.Maui.WindowOverlay.Tapped -> System.EventHandler? +Microsoft.Maui.WindowOverlay.Window.get -> Microsoft.Maui.IWindow! +Microsoft.Maui.WindowOverlay.WindowElements.get -> System.Collections.Generic.IReadOnlyCollection! +Microsoft.Maui.WindowOverlay.WindowOverlay(Microsoft.Maui.IWindow! window) -> void +Microsoft.Maui.WindowOverlayTappedEventArgs +Microsoft.Maui.WindowOverlayTappedEventArgs.Point.get -> Microsoft.Maui.Graphics.Point +Microsoft.Maui.WindowOverlayTappedEventArgs.VisualTreeElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayElements.get -> System.Collections.Generic.IList! +Microsoft.Maui.WindowOverlayTappedEventArgs.WindowOverlayTappedEventArgs(Microsoft.Maui.Graphics.Point point, System.Collections.Generic.IList! elements, System.Collections.Generic.IList! overlayElements) -> void +override Microsoft.Maui.Animations.LerpingAnimation.Update(double percent) -> void +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.CornerRadiusTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value) -> object! +override Microsoft.Maui.Converters.KeyboardTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object! +override Microsoft.Maui.CornerRadius.Equals(object? obj) -> bool +override Microsoft.Maui.CornerRadius.GetHashCode() -> int +override Microsoft.Maui.Font.Equals(object? obj) -> bool +override Microsoft.Maui.Font.GetHashCode() -> int +override Microsoft.Maui.Font.ToString() -> string! +override Microsoft.Maui.GridLength.Equals(object? obj) -> bool +override Microsoft.Maui.GridLength.GetHashCode() -> int +override Microsoft.Maui.GridLength.ToString() -> string! +override Microsoft.Maui.Handlers.ActivityIndicatorHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ApplicationHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.BorderHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.CheckBoxHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ContentViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.DatePickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.EditorHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.EntryHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.FlyoutViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.GraphicsViewHandler.ConnectHandler(object! platformView) -> void +override Microsoft.Maui.Handlers.GraphicsViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.GraphicsViewHandler.DisconnectHandler(object! platformView) -> void +override Microsoft.Maui.Handlers.ImageButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ImageHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.IndicatorViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.LabelHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.LayoutHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.MenuBarHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuBarItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.NavigationViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.PickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ProgressBarHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.RadioButtonHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.RefreshViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ScrollViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SearchBarHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ShapeViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SliderHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.StepperHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.SwipeItemViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwipeViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.SwitchHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.TabbedViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.TimePickerHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.ToolbarHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Handlers.ViewHandler.GetDesiredSize(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Handlers.ViewHandler.PlatformArrange(Microsoft.Maui.Graphics.Rect rect) -> void +override Microsoft.Maui.Handlers.ViewHandler.RemoveContainer() -> void +override Microsoft.Maui.Handlers.ViewHandler.SetupContainer() -> void +override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> object! +override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> object! +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.AbsoluteLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.GridLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.HorizontalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.Layouts.VerticalStackLayoutManager.Measure(double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +override Microsoft.Maui.RectangleGridAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +override Microsoft.Maui.Semantics.ToString() -> string! +override Microsoft.Maui.SizeRequest.ToString() -> string! +override Microsoft.Maui.Thickness.Equals(object? obj) -> bool +override Microsoft.Maui.Thickness.GetHashCode() -> int +override Microsoft.Maui.VisualDiagnosticsOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.Deinitialize() -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +override Microsoft.Maui.VisualDiagnosticsOverlay.RemoveWindowElements() -> void +override sealed Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +readonly Microsoft.Maui.LockableObservableListWrapper._list -> System.Collections.ObjectModel.ObservableCollection! +readonly Microsoft.Maui.PropertyMapper._mapper -> System.Collections.Generic.Dictionary!>! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.GenericLerp(this T start, T end, double progress, double toggleThreshold = 0.5) -> T +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this double start, double end, double progress) -> double +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float start, float end, double progress) -> float +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this float? start, float? end, double progress) -> float? +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Color! color, Microsoft.Maui.Graphics.Color! endColor, double progress) -> Microsoft.Maui.Graphics.Color! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Point start, Microsoft.Maui.Graphics.Point end, double progress) -> Microsoft.Maui.Graphics.Point +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.PointF start, Microsoft.Maui.Graphics.PointF end, double progress) -> Microsoft.Maui.Graphics.PointF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Rect start, Microsoft.Maui.Graphics.Rect end, double progress) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.RectF start, Microsoft.Maui.Graphics.RectF end, double progress) -> Microsoft.Maui.Graphics.RectF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.Size start, Microsoft.Maui.Graphics.Size end, double progress) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SizeF start, Microsoft.Maui.Graphics.SizeF end, double progress) -> Microsoft.Maui.Graphics.SizeF +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Graphics.SolidPaint! paint, Microsoft.Maui.Graphics.SolidPaint! endPaint, double progress) -> Microsoft.Maui.Graphics.SolidPaint! +static Microsoft.Maui.Animations.AnimationLerpingExtensions.Lerp(this Microsoft.Maui.Thickness start, Microsoft.Maui.Thickness end, double progress) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Animations.Lerp.GetLerp(System.Type! type) -> Microsoft.Maui.Animations.Lerp? +static Microsoft.Maui.CommandMapperExtensions.AppendToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CommandMapperExtensions.ModifyMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.CommandMapperExtensions.PrependToMapping(this Microsoft.Maui.CommandMapper! commandMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.CornerRadius.implicit operator Microsoft.Maui.CornerRadius(double uniformRadius) -> Microsoft.Maui.CornerRadius +static Microsoft.Maui.CornerRadius.operator !=(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.CornerRadius.operator ==(Microsoft.Maui.CornerRadius left, Microsoft.Maui.CornerRadius right) -> bool +static Microsoft.Maui.Crc64.ComputeHash(byte[]! input) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHash(System.IO.Stream! inputStream) -> byte[]! +static Microsoft.Maui.Crc64.ComputeHashString(string! input) -> string! +static Microsoft.Maui.Dispatching.Dispatcher.GetForCurrentThread() -> Microsoft.Maui.Dispatching.IDispatcher? +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Action! action) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func!>! funcTask) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.DispatchAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.Func! func) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.GetSynchronizationContextAsync(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Dispatching.DispatcherExtensions.StartTimer(this Microsoft.Maui.Dispatching.IDispatcher! dispatcher, System.TimeSpan interval, System.Func! callback) -> void +static Microsoft.Maui.Dispatching.DispatcherProvider.Current.get -> Microsoft.Maui.Dispatching.IDispatcherProvider! +static Microsoft.Maui.Dispatching.DispatcherProvider.SetCurrent(Microsoft.Maui.Dispatching.IDispatcherProvider? provider) -> bool +static Microsoft.Maui.Easing.Default.get -> Microsoft.Maui.Easing! +static Microsoft.Maui.Easing.implicit operator Microsoft.Maui.Easing!(System.Func! func) -> Microsoft.Maui.Easing! +static Microsoft.Maui.Font.Default.get -> Microsoft.Maui.Font +static Microsoft.Maui.Font.OfSize(string? name, double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.operator !=(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.operator ==(Microsoft.Maui.Font left, Microsoft.Maui.Font right) -> bool +static Microsoft.Maui.Font.SystemFontOfSize(double size, Microsoft.Maui.FontWeight weight = Microsoft.Maui.FontWeight.Regular, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.Font.SystemFontOfWeight(Microsoft.Maui.FontWeight weight, Microsoft.Maui.FontSlant fontSlant = Microsoft.Maui.FontSlant.Default, bool enableScaling = true) -> Microsoft.Maui.Font +static Microsoft.Maui.FontFile.FromString(string! input) -> Microsoft.Maui.FontFile! +static Microsoft.Maui.Graphics.PaintExtensions.IsNullOrEmpty(this Microsoft.Maui.Graphics.Paint? paint) -> bool +static Microsoft.Maui.Graphics.PaintExtensions.ToColor(this Microsoft.Maui.Graphics.Paint? paint) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.GridLength.implicit operator Microsoft.Maui.GridLength(double absoluteValue) -> Microsoft.Maui.GridLength +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapColor(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.MapIsRunning(Microsoft.Maui.Handlers.IActivityIndicatorHandler! handler, Microsoft.Maui.IActivityIndicator! activityIndicator) -> void +static Microsoft.Maui.Handlers.ActivityIndicatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapCloseWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.MapOpenWindow(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.ApplicationHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ApplicationHandler.MapTerminate(Microsoft.Maui.Handlers.ApplicationHandler! handler, Microsoft.Maui.IApplication! application, object? args) -> void +static Microsoft.Maui.Handlers.BorderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapBackground(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapContent(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.BorderHandler.MapStroke(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeShape(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.BorderHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IBorderHandler! handler, Microsoft.Maui.IBorderView! border) -> void +static Microsoft.Maui.Handlers.ButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ButtonHandler.ImageButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapFont(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapImageSource(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapPadding(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButton! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapText(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.IText! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IButtonHandler! handler, Microsoft.Maui.ITextStyle! button) -> void +static Microsoft.Maui.Handlers.ButtonHandler.TextButtonMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.CheckBoxHandler.MapForeground(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.MapIsChecked(Microsoft.Maui.Handlers.ICheckBoxHandler! handler, Microsoft.Maui.ICheckBox! check) -> void +static Microsoft.Maui.Handlers.CheckBoxHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ContentViewHandler.MapContent(Microsoft.Maui.Handlers.IContentViewHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.ContentViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFont(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapFormat(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMaximumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.MapMinimumDate(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.DatePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.DatePickerHandler.MapTextColor(Microsoft.Maui.Handlers.IDatePickerHandler! handler, Microsoft.Maui.IDatePicker! datePicker) -> void +static Microsoft.Maui.Handlers.EditorHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapCharacterSpacing(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapFont(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsReadOnly(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapKeyboard(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapMaxLength(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholder(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapPlaceholderColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.ITextInput! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapText(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapTextColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.EditorHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEditorHandler! handler, Microsoft.Maui.IEditor! editor) -> void +static Microsoft.Maui.Handlers.ElementHandler.ElementCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ElementHandler.ElementMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapClearButtonVisibility(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapCursorPosition(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapFont(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsPassword(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsReadOnly(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapIsTextPredictionEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapKeyboard(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapMaxLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholder(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapPlaceholderColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapReturnType(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapSelectionLength(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapText(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapTextColor(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.EntryHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void +static Microsoft.Maui.Handlers.FlyoutViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.FlyoutViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapDrawable(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapFlowDirection(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.MapInvalidate(Microsoft.Maui.Handlers.IGraphicsViewHandler! handler, Microsoft.Maui.IGraphicsView! graphicsView, object? arg) -> void +static Microsoft.Maui.Handlers.GraphicsViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.ImageMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapPadding(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IImageButton! imageButton) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IImageButtonHandler! handler, Microsoft.Maui.IButtonStroke! buttonStroke) -> void +static Microsoft.Maui.Handlers.ImageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapAspect(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.MapIsAnimationPlaying(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.ImageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ImageHandler.MapSource(Microsoft.Maui.Handlers.IImageHandler! handler, Microsoft.Maui.IImage! image) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapCount(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapHideSingle(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorShape(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapIndicatorSize(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapMaximumVisible(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapPosition(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.IndicatorViewHandler.MapSelectedIndicatorColor(Microsoft.Maui.Handlers.IIndicatorViewHandler! handler, Microsoft.Maui.IIndicatorView! indicator) -> void +static Microsoft.Maui.Handlers.LabelHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapFont(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapLineHeight(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapMaxLines(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapPadding(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LabelHandler.MapText(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextColor(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapTextDecorations(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LabelHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.ILabelHandler! handler, Microsoft.Maui.ILabel! label) -> void +static Microsoft.Maui.Handlers.LayoutHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapAdd(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapBackground(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClear(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapClipsToBounds(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout) -> void +static Microsoft.Maui.Handlers.LayoutHandler.MapInsert(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.LayoutHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.LayoutHandler.MapRemove(Microsoft.Maui.ILayoutHandler! handler, Microsoft.Maui.ILayout! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarHandler! handler, Microsoft.Maui.IMenuBar! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuBarItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuBarItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuBarItemHandler! handler, Microsoft.Maui.IMenuBarItem! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapAdd(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapClear(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapInsert(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.MenuFlyoutSubItemHandler.MapRemove(Microsoft.Maui.Handlers.IMenuFlyoutSubItemHandler! handler, Microsoft.Maui.IMenuElement! layout, object? arg) -> void +static Microsoft.Maui.Handlers.NavigationViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.NavigationViewHandler.RequestNavigation(Microsoft.Maui.Handlers.INavigationViewHandler! arg1, Microsoft.Maui.IStackNavigation! arg2, object? arg3) -> void +static Microsoft.Maui.Handlers.PageHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PageHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PageHandler.MapTitle(Microsoft.Maui.Handlers.IPageHandler! handler, Microsoft.Maui.IContentView! page) -> void +static Microsoft.Maui.Handlers.PickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapFont(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapHorizontalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.PickerHandler.MapReload(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! picker, object? args) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapSelectedIndex(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTextColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitle(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapTitleColor(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.PickerHandler.MapVerticalTextAlignment(Microsoft.Maui.Handlers.IPickerHandler! handler, Microsoft.Maui.IPicker! view) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgress(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.ProgressBarHandler.MapProgressColor(Microsoft.Maui.Handlers.IProgressBarHandler! handler, Microsoft.Maui.IProgress! progress) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapBackground(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapContent(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapCornerRadius(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapFont(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapIsChecked(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.IRadioButton! radioButton) -> void +static Microsoft.Maui.Handlers.RadioButtonHandler.MapTextColor(Microsoft.Maui.Handlers.IRadioButtonHandler! handler, Microsoft.Maui.ITextStyle! textStyle) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapContent(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapIsRefreshing(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshColor(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IRefreshView! refreshView) -> void +static Microsoft.Maui.Handlers.RefreshViewHandler.MapRefreshViewBackground(Microsoft.Maui.Handlers.IRefreshViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapContentSize(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapHorizontalScrollBarVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapOrientation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ScrollViewHandler.MapRequestScrollTo(Microsoft.Maui.Handlers.IScrollViewHandler! handler, Microsoft.Maui.IScrollView! scrollView, object? args) -> void +static Microsoft.Maui.Handlers.ScrollViewHandler.MapVerticalScrollBarVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IScrollView! scrollView) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapBackground(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCancelButtonColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapCharacterSpacing(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapFont(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapHorizontalTextAlignment(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsEnabled(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsReadOnly(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapIsTextPredictionEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapMaxLength(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholder(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapPlaceholderColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapText(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapTextColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.SearchBarHandler.MapVerticalTextAlignment(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapAspect(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapBackground(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapFill(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ShapeViewHandler.MapShape(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStroke(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashOffset(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeDashPattern(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineCap(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeLineJoin(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeMiterLimit(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.ShapeViewHandler.MapStrokeThickness(Microsoft.Maui.Handlers.IShapeViewHandler! handler, Microsoft.Maui.IShapeView! shapeView) -> void +static Microsoft.Maui.Handlers.SliderHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapMaximum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMaximumTrackColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapMinimumTrackColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SliderHandler.MapThumbColor(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapThumbImageSource(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.SliderHandler.MapValue(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.ISlider! slider) -> void +static Microsoft.Maui.Handlers.StepperHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapIncrement(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMaximum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.MapMinimum(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.StepperHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.StepperHandler.MapValue(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IStepper! stepper) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapBackground(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapFont(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSource(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapSourceAsync(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! image) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapText(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapTextColor(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ITextStyle! view) -> void +static Microsoft.Maui.Handlers.SwipeItemMenuItemHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemMenuItemHandler! handler, Microsoft.Maui.ISwipeItemMenuItem! view) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! page) -> void +static Microsoft.Maui.Handlers.SwipeItemViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeItemViewHandler.MapVisibility(Microsoft.Maui.Handlers.ISwipeItemViewHandler! handler, Microsoft.Maui.ISwipeItemView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapBottomItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapContent(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapLeftItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestClose(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRequestOpen(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView, object? args) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapRightItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapSwipeTransitionMode(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! swipeView) -> void +static Microsoft.Maui.Handlers.SwipeViewHandler.MapTopItems(Microsoft.Maui.Handlers.ISwipeViewHandler! handler, Microsoft.Maui.ISwipeView! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapIsOn(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.SwitchHandler.MapThumbColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.SwitchHandler.MapTrackColor(Microsoft.Maui.Handlers.ISwitchHandler! handler, Microsoft.Maui.ISwitch! view) -> void +static Microsoft.Maui.Handlers.TabbedViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TabbedViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapCharacterSpacing(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFont(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapFormat(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.TimePickerHandler.MapTextColor(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! timePicker) -> void +static Microsoft.Maui.Handlers.TimePickerHandler.MapTime(Microsoft.Maui.Handlers.ITimePickerHandler! handler, Microsoft.Maui.ITimePicker! view) -> void +static Microsoft.Maui.Handlers.ToolbarHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ToolbarHandler.MapTitle(Microsoft.Maui.Handlers.IToolbarHandler! arg1, Microsoft.Maui.IToolbar! arg2) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAnchorY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapAutomationId(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBackground(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapBorderView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapClip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapContainerView(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFlowDirection(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapFrame(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInputTransparent(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapInvalidateMeasure(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapIsEnabled(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMaximumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumHeight(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapMinimumWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapOpacity(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotation(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapRotationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScale(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapScaleY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapSemantics(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapShadow(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationX(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapTranslationY(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapUnfocus(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapVisibility(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapWidth(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Handlers.ViewHandler.MapZIndex(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view, object? args) -> void +static Microsoft.Maui.Handlers.ViewHandler.ViewCommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.ViewHandler.ViewMapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.get -> System.Func!, TPlatformView!>? +static Microsoft.Maui.Handlers.ViewHandler.PlatformViewFactory.set -> void +static Microsoft.Maui.Handlers.WebViewHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapEval(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapEvaluateJavaScriptAsync(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoBack(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapGoForward(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WebViewHandler.MapReload(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView, object? arg) -> void +static Microsoft.Maui.Handlers.WebViewHandler.MapSource(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void +static Microsoft.Maui.Handlers.WindowHandler.CommandMapper -> Microsoft.Maui.CommandMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapContent(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Handlers.WindowHandler.Mapper -> Microsoft.Maui.IPropertyMapper! +static Microsoft.Maui.Handlers.WindowHandler.MapRequestDisplayDensity(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window, object? args) -> void +static Microsoft.Maui.Handlers.WindowHandler.MapTitle(Microsoft.Maui.Handlers.IWindowHandler! handler, Microsoft.Maui.IWindow! window) -> void +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureAnimations(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.AppHostBuilderExtensions.ConfigureDispatching(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.AddAppAction(this Microsoft.Maui.Hosting.IEssentialsBuilder! essentials, string! id, string! title, string? subtitle = null, string? icon = null) -> Microsoft.Maui.Hosting.IEssentialsBuilder! +static Microsoft.Maui.Hosting.EssentialsExtensions.ConfigureEssentials(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate = null) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddEmbeddedResourceFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, System.Reflection.Assembly! assembly, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontCollectionExtensions.AddFont(this Microsoft.Maui.Hosting.IFontCollection! fontCollection, string! filename, string? alias = null) -> Microsoft.Maui.Hosting.IFontCollection! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.FontsMauiAppBuilderExtensions.ConfigureFonts(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configureDelegate) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Maui.Hosting.HandlerMauiAppBuilderExtensions.ConfigureMauiHandlers(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourceServiceCollectionExtensions.AddService(this Microsoft.Maui.Hosting.IImageSourceServiceCollection! services, System.Func!>! implementationFactory) -> Microsoft.Maui.Hosting.IImageSourceServiceCollection! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.ImageSourcesMauiAppBuilderExtensions.ConfigureImageSources(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiApp.CreateBuilder(bool useDefaults = true) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.AddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection, System.Type! viewType, System.Type! handlerType) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.Hosting.MauiHandlersCollectionExtensions.TryAddHandler(this Microsoft.Maui.Hosting.IMauiHandlersCollection! handlersCollection) -> Microsoft.Maui.Hosting.IMauiHandlersCollection! +static Microsoft.Maui.HotReload.HotReloadExtensions.CheckHandlers(this Microsoft.Maui.IView? view) -> void +static Microsoft.Maui.HotReload.HotReloadExtensions.GetOnHotReloadMethods(this System.Type! type) -> System.Collections.Generic.List! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.AddActiveView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.ClearCache(System.Type![]! types) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.GetReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view) -> Microsoft.Maui.IView! +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.get -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsEnabled.set -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.IsReplacedView(Microsoft.Maui.HotReload.IHotReloadableView! view, Microsoft.Maui.IView! newView) -> bool +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Register(Microsoft.Maui.HotReload.IHotReloadableView! view, params object![]! parameters) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterHandlers(Microsoft.Maui.Hosting.IMauiHandlersCollection! handlerService) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.RegisterReplacedView(string! oldViewType, System.Type! newViewType) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.Reset() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.TriggerReload() -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UnRegister(Microsoft.Maui.HotReload.IHotReloadableView! view) -> void +static Microsoft.Maui.HotReload.MauiHotReloadHelper.UpdateApplication(System.Type![]! types) -> void +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.GetPlatformImageAsync(this Microsoft.Maui.IImageSourceService! imageSourceService, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IMauiContext! mauiContext) -> System.Threading.Tasks.Task?>! +static Microsoft.Maui.ImageSourceExtensions.LoadImage(this Microsoft.Maui.IImageSource? source, Microsoft.Maui.IMauiContext! mauiContext, System.Action?>? finished = null) -> void +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService? +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, Microsoft.Maui.IImageSource! imageSource) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider, System.Type! imageSourceType) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.ImageSourceServiceProviderExtensions.GetRequiredImageSourceService(this Microsoft.Maui.IImageSourceServiceProvider! provider) -> Microsoft.Maui.IImageSourceService! +static Microsoft.Maui.IPickerExtension.GetItemsAsArray(this Microsoft.Maui.IPicker! picker) -> string![]! +static Microsoft.Maui.IPickerExtension.GetItemsAsList(this Microsoft.Maui.IPicker! picker) -> System.Collections.Generic.List! +static Microsoft.Maui.ITextInputExtensions.UpdateText(this Microsoft.Maui.ITextInput! textInput, string? text) -> void +static Microsoft.Maui.IViewExtensions.GetEffectiveFlowDirection(this Microsoft.Maui.IView! view) -> Microsoft.Maui.FlowDirection +static Microsoft.Maui.Keyboard.Chat.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Create(Microsoft.Maui.KeyboardFlags flags) -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Default.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Email.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Numeric.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard! +static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard! +static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis +static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeDesiredSize(this Microsoft.Maui.IView! view, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ComputeFrame(this Microsoft.Maui.IView! view, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Rect +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.MeasureContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Thickness inset, double widthConstraint, double heightConstraint) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.Layouts.LayoutExtensions.ShouldArrangeLeftToRight(this Microsoft.Maui.IView! view) -> bool +static Microsoft.Maui.Layouts.LayoutManager.ResolveConstraints(double externalConstraint, double explicitLength, double measuredLength, double min = 0, double max = Infinity) -> double +static Microsoft.Maui.Layouts.StackLayoutManager.MeasureSpacing(double spacing, int childCount) -> double +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, System.Action! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleBuilderExtensions.AddEvent(this Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! builder, string! eventName, TDelegate! action) -> Microsoft.Maui.LifecycleEvents.ILifecycleBuilder! +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName) -> void +static Microsoft.Maui.LifecycleEvents.LifecycleEventServiceExtensions.InvokeEvents(this Microsoft.Maui.LifecycleEvents.ILifecycleEventService! lifecycleService, string! eventName, System.Action! action) -> void +static Microsoft.Maui.LifecycleEvents.MauiAppHostBuilderExtensions.ConfigureLifecycleEvents(this Microsoft.Maui.Hosting.MauiAppBuilder! builder, System.Action? configureDelegate) -> Microsoft.Maui.Hosting.MauiAppBuilder! +static Microsoft.Maui.Platform.ElementExtensions.SetApplicationHandler(this object! platformApplication, Microsoft.Maui.IApplication! application, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.SetWindowHandler(this object! platformWindow, Microsoft.Maui.IWindow! window, Microsoft.Maui.IMauiContext! context) -> void +static Microsoft.Maui.Platform.ElementExtensions.ToHandler(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IElementHandler! +static Microsoft.Maui.Platform.ElementExtensions.ToPlatform(this Microsoft.Maui.IElement! view, Microsoft.Maui.IMauiContext! context) -> object! +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStroke(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashOffset(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeDashPattern(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineCap(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeLineJoin(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeMiterLimit(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeShape(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.StrokeExtensions.UpdateStrokeThickness(this object! platformView, Microsoft.Maui.IBorderStroke! border) -> void +static Microsoft.Maui.Platform.SwipeViewExtensions.GetTextColor(this Microsoft.Maui.ISwipeItemMenuItem! swipeItemMenuItem) -> Microsoft.Maui.Graphics.Color? +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this Microsoft.Maui.ITimePicker! timePicker) -> string! +static Microsoft.Maui.Platform.TimeExtensions.ToFormattedString(this System.TimeSpan time, string! format, System.Globalization.CultureInfo? cultureInfo = null) -> string! +static Microsoft.Maui.Platform.ViewExtensions.Focus(this object! platformView, Microsoft.Maui.FocusRequest! request) -> void +static Microsoft.Maui.Platform.ViewExtensions.InvalidateMeasure(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.ToHandler(this Microsoft.Maui.IView! view, Microsoft.Maui.IMauiContext! context) -> Microsoft.Maui.IViewHandler! +static Microsoft.Maui.Platform.ViewExtensions.Unfocus(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAnchorX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAnchorY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateAutomationId(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackground(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateBackgroundImageSourceAsync(this object! platformView, Microsoft.Maui.IImageSource? imageSource, Microsoft.Maui.IImageSourceServiceProvider? provider) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Platform.ViewExtensions.UpdateBorder(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClip(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateClipsToBounds(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateFlowDirection(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateInputTransparent(this object! nativeView, Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateIsEnabled(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMaximumWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumHeight(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateMinimumWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateOpacity(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotation(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotationX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateRotationY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateScale(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateSemantics(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateShadow(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateTranslationX(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateTranslationY(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateVisibility(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Platform.ViewExtensions.UpdateWidth(this object! platformView, Microsoft.Maui.IView! view) -> void +static Microsoft.Maui.Primitives.Dimension.IsExplicitSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMaximumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.IsMinimumSet(double value) -> bool +static Microsoft.Maui.Primitives.Dimension.ResolveMinimum(double value) -> double +static Microsoft.Maui.PropertyMapperExtensions.AppendToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.ModifyMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action?>! method) -> void +static Microsoft.Maui.PropertyMapperExtensions.PrependToMapping(this Microsoft.Maui.IPropertyMapper! propertyMapper, string! key, System.Action! method) -> void +static Microsoft.Maui.SemanticExtensions.SetSemanticFocus(this Microsoft.Maui.IView! element) -> void +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.Graphics.Size(Microsoft.Maui.SizeRequest size) -> Microsoft.Maui.Graphics.Size +static Microsoft.Maui.SizeRequest.implicit operator Microsoft.Maui.SizeRequest(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.SizeRequest +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(double uniformSize) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.implicit operator Microsoft.Maui.Thickness(Microsoft.Maui.Graphics.Size size) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator !=(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator +(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator -(Microsoft.Maui.Thickness left, double addend) -> Microsoft.Maui.Thickness +static Microsoft.Maui.Thickness.operator ==(Microsoft.Maui.Thickness left, Microsoft.Maui.Thickness right) -> bool +static Microsoft.Maui.Thickness.Zero -> Microsoft.Maui.Thickness +static Microsoft.Maui.ViewExtensions.CaptureAsync(this Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IView! view, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsJpegAsync(Microsoft.Maui.IWindow! window, int quality = 80) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.CaptureAsPngAsync(Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.VisualDiagnostics.GetSourceInfo(object! obj) -> Microsoft.Maui.SourceInfo? +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildAdded(Microsoft.Maui.IVisualTreeElement? parent, Microsoft.Maui.IVisualTreeElement! child, int newLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.OnChildRemoved(Microsoft.Maui.IVisualTreeElement! parent, Microsoft.Maui.IVisualTreeElement! child, int oldLogicalIndex) -> void +static Microsoft.Maui.VisualDiagnostics.RegisterSourceInfo(object! target, System.Uri! uri, int lineNumber, int linePosition) -> void +static Microsoft.Maui.VisualDiagnostics.VisualTreeChanged -> System.EventHandler? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualElementWindow(this Microsoft.Maui.IVisualTreeElement! element) -> Microsoft.Maui.IWindow? +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeDescendants(this Microsoft.Maui.IVisualTreeElement! visualElement) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x, double y) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, double x1, double y1, double x2, double y2) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Point point) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.VisualTreeElementExtensions.GetVisualTreeElements(this Microsoft.Maui.IVisualTreeElement! visualElement, Microsoft.Maui.Graphics.Rect rectangle) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.Maui.WindowExtensions.CaptureAsync(this Microsoft.Maui.IWindow! window) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Animations.Lerp.Lerps -> System.Collections.Generic.Dictionary! +static readonly Microsoft.Maui.Easing.BounceIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.BounceOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.CubicOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.Linear -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinInOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SinOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringIn -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.Easing.SpringOut -> Microsoft.Maui.Easing! +static readonly Microsoft.Maui.FontFile.Extensions -> string![]! +static readonly Microsoft.Maui.GridLength.Auto -> Microsoft.Maui.GridLength +static readonly Microsoft.Maui.GridLength.Star -> Microsoft.Maui.GridLength +virtual Microsoft.Maui.Animations.Animation.CreateReverse() -> Microsoft.Maui.Animations.Animation! +virtual Microsoft.Maui.Animations.Animation.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Animation.OnTick(double millisecondsSinceLastUpdate) -> void +virtual Microsoft.Maui.Animations.Animation.Reset() -> void +virtual Microsoft.Maui.Animations.Animation.Update(double percent) -> void +virtual Microsoft.Maui.Animations.AnimationManager.Dispose(bool disposing) -> void +virtual Microsoft.Maui.Animations.Ticker.IsRunning.get -> bool +virtual Microsoft.Maui.Animations.Ticker.MaxFps.get -> int +virtual Microsoft.Maui.Animations.Ticker.MaxFps.set -> void +virtual Microsoft.Maui.Animations.Ticker.Start() -> void +virtual Microsoft.Maui.Animations.Ticker.Stop() -> void +virtual Microsoft.Maui.Animations.Ticker.SystemEnabled.get -> bool +virtual Microsoft.Maui.CommandMapper.GetCommand(string! key) -> System.Action? +virtual Microsoft.Maui.Handlers.ElementHandler.Invoke(string! command, object? args) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetMauiContext(Microsoft.Maui.IMauiContext! mauiContext) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.SetVirtualView(Microsoft.Maui.IElement! view) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.UpdateValue(string! property) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ElementHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.NeedsContainer.get -> bool +virtual Microsoft.Maui.Handlers.ViewHandler.ConnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.DisconnectHandler(TPlatformView! platformView) -> void +virtual Microsoft.Maui.Handlers.ViewHandler.SetVirtualView(Microsoft.Maui.IView! view) -> void +virtual Microsoft.Maui.PropertyMapper.ClearKeyCache() -> void +virtual Microsoft.Maui.PropertyMapper.GetKeys() -> System.Collections.Generic.IEnumerable! +virtual Microsoft.Maui.PropertyMapper.GetProperty(string! key) -> System.Action? +virtual Microsoft.Maui.PropertyMapper.SetPropertyCore(string! key, System.Action! action) -> void +virtual Microsoft.Maui.PropertyMapper.UpdateKeys.get -> System.Collections.Generic.IReadOnlyCollection! +virtual Microsoft.Maui.PropertyMapper.UpdatePropertyCore(string! key, Microsoft.Maui.IElementHandler! viewHandler, Microsoft.Maui.IElement! virtualView) -> void +virtual Microsoft.Maui.RectangleAdorner.Contains(Microsoft.Maui.Graphics.Point point) -> bool +virtual Microsoft.Maui.RectangleAdorner.Draw(Microsoft.Maui.Graphics.ICanvas! canvas, Microsoft.Maui.Graphics.RectF dirtyRect) -> void +virtual Microsoft.Maui.WindowOverlay.AddWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.Deinitialize() -> bool +virtual Microsoft.Maui.WindowOverlay.HandleUIChange() -> void +virtual Microsoft.Maui.WindowOverlay.Initialize() -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElement(Microsoft.Maui.IWindowOverlayElement! drawable) -> bool +virtual Microsoft.Maui.WindowOverlay.RemoveWindowElements() -> void +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) -> System.ComponentModel.TypeConverter.StandardValuesCollection +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.EasingTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignContentTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignItemsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexAlignSelfTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexBasisTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexDirectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexJustifyTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.FlexWrapTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) -> bool +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) -> object +~override Microsoft.Maui.Converters.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) -> object diff --git a/src/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Core/src/ViewExtensions.cs b/src/Core/src/ViewExtensions.cs index d1e024b1df20..e8aacab9c7e4 100644 --- a/src/Core/src/ViewExtensions.cs +++ b/src/Core/src/ViewExtensions.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; using Microsoft.Maui.Media; using System.IO; -#if (NETSTANDARD || !PLATFORM) || (NET6_0 && !IOS && !ANDROID && !TIZEN) +#if (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !ANDROID && !TIZEN) using IPlatformViewHandler = Microsoft.Maui.IViewHandler; #endif #if IOS || MACCATALYST diff --git a/src/Core/src/VisualDiagnostics/AdornerModel.cs b/src/Core/src/VisualDiagnostics/AdornerModel.cs new file mode 100755 index 000000000000..85b809294dc0 --- /dev/null +++ b/src/Core/src/VisualDiagnostics/AdornerModel.cs @@ -0,0 +1,212 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Numerics; +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Platform; + +namespace Microsoft.Maui +{ + internal class AdornerModel + { + Rect boundingBox = new Rect(); + List marginZones = new List(); + + public Rect BoundingBox => boundingBox; + public IReadOnlyList MarginZones => marginZones; + + + public void Update(Rect rect, Thickness margin, Matrix4x4 transformToRoot, double density) + { + double unitsPerPixel = 1 / density; + boundingBox = DpiHelper.RoundToPixel(rect, unitsPerPixel); + + marginZones.Clear(); + + if (margin == new Thickness()) + { + return; + } + + // If transform to root is more than just an offset (i.e. element or + // some of its ancestors are scaled/rotated/etc.) then no margins to + // render. This matches WPF, UWP and WinUI adorners. + if (!Tolerances.AreClose(transformToRoot.M11, 1) || + !Tolerances.AreClose(transformToRoot.M22, 1) || + !Tolerances.AreClose(transformToRoot.M12, 0) || + !Tolerances.AreClose(transformToRoot.M21, 0)) + { + return; + } + + // Create up to 4 rectangles for margins. Keep in mind that some of + // margin values can be negative, e.g. Margin="-10, 20, 30, -40". + + // Left + if (!Tolerances.NearZero(margin.Left)) + { + Rect rc = new Rect(); + rc.Left = Math.Min(rect.Left - margin.Left, rect.Left); + rc.Width = Math.Abs(margin.Left); + rc.Top = rect.Top; + rc.Bottom = rect.Bottom; + TryAddMarginZone(rc, unitsPerPixel); + } + + // Right + if (!Tolerances.NearZero(margin.Right)) + { + Rect rc = new Rect(); + rc.Left = Math.Min(rect.Right, rect.Right + margin.Right); + rc.Width = Math.Abs(margin.Right); + rc.Top = rect.Top; + rc.Bottom = rect.Bottom; + TryAddMarginZone(rc, unitsPerPixel); + } + + // Top + if (!Tolerances.NearZero(margin.Top)) + { + Rect rc = new Rect(); + rc.Left = rect.Left - Math.Max(0, margin.Left); + rc.Right = rect.Right + Math.Max(0, margin.Right); + rc.Top = Math.Min(rect.Top - margin.Top, rect.Top); + rc.Height = Math.Abs(margin.Top); + TryAddMarginZone(rc, unitsPerPixel); + } + + // Bottom + if (!Tolerances.NearZero(margin.Bottom)) + { + Rect rc = new Rect(); + rc.Left = rect.Left - Math.Max(0, margin.Left); + rc.Right = rect.Right + Math.Max(0, margin.Right); + rc.Top = Math.Min(rect.Bottom + margin.Bottom, rect.Bottom); + rc.Height = Math.Abs(margin.Bottom); + TryAddMarginZone(rc, unitsPerPixel); + } + } + + void TryAddMarginZone(Rect rect, double unitsPerPixel) + { + Rect rc = DpiHelper.RoundToPixel(rect, unitsPerPixel); + if (!rc.IsEmpty) + marginZones.Add(rc); + } + + /// + /// DPI related utilities. + /// + private static class DpiHelper + { + /// + /// Rounds unit value to nearest pixel. + /// + /// + /// Rounded value in units. + /// + public static double RoundToPixel(double units, double unitsPerPixel) + { + double pixels = units / unitsPerPixel; + double floorPixels = (double)Math.Floor(pixels); + pixels = Tolerances.LessThan(pixels, floorPixels + 0.5) ? + floorPixels : (double)Math.Ceiling(pixels); + return pixels * unitsPerPixel; + } + + /// + /// Rounds point X and Y coordinates to nearest pixel. + /// + public static Point RoundToPixel(Point point, double unitsPerPixel) + { + Point pixelPoint = new Point( + DpiHelper.RoundToPixel(point.X, unitsPerPixel), + DpiHelper.RoundToPixel(point.Y, unitsPerPixel)); + return pixelPoint; + } + + /// + /// Rounds rectangle corner coordinates to nearest pixel. + /// + public static Rect RoundToPixel(Rect rect, double unitsPerPixel) + { + double left = DpiHelper.RoundToPixel(rect.Left, unitsPerPixel); + double top = DpiHelper.RoundToPixel(rect.Top, unitsPerPixel); + double right = DpiHelper.RoundToPixel(rect.Right, unitsPerPixel); + double bottom = DpiHelper.RoundToPixel(rect.Bottom, unitsPerPixel); + return new Rect(left, top, right - left, bottom - top); + } + } + + /// + /// Helper utilities to compare double values. + /// + private static class Tolerances + { + const double Epsilon = 2.2204460492503131e-016; + const double ZeroThreshold = 2.2204460492503131e-015; + + public static bool AreClose(Point point1, Point point2) + { + if (Tolerances.AreClose(point1.X, point2.X) && Tolerances.AreClose(point1.Y, point2.Y)) + { + return true; + } + + return false; + } + + public static bool NearZero(double value) + { + return Math.Abs(value) < Tolerances.ZeroThreshold; + } + + public static bool AreClose(double value1, double value2) + { + //in case they are Infinities (then epsilon check does not work) + if (value1 == value2) return true; + // This computes (|value1-value2| / (|value1| + |value2| + 10.0)) < Tolerances.Epsilon + double eps = (Math.Abs(value1) + Math.Abs(value2) + 10.0) * Tolerances.Epsilon; + double delta = value1 - value2; + return (-eps < delta) && (eps > delta); + } + + public static bool GreaterThan(double value1, double value2) + { + if (value1 > value2) + { + return !Tolerances.AreClose(value1, value2); + } + return false; + } + + public static bool GreaterThanOrClose(double value1, double value2) + { + if (value1 <= value2) + { + return Tolerances.AreClose(value1, value2); + } + return true; + } + + public static bool LessThan(double value1, double value2) + { + if (value1 < value2) + { + return !Tolerances.AreClose(value1, value2); + } + return false; + } + + public static bool LessThanOrClose(double value1, double value2) + { + if (value1 >= value2) + { + return Tolerances.AreClose(value1, value2); + } + return true; + } + } + } +} + diff --git a/src/Core/src/VisualDiagnostics/RectangleAdorner.cs b/src/Core/src/VisualDiagnostics/RectangleAdorner.cs old mode 100644 new mode 100755 index 3f8f725a411f..160a2cbcb866 --- a/src/Core/src/VisualDiagnostics/RectangleAdorner.cs +++ b/src/Core/src/VisualDiagnostics/RectangleAdorner.cs @@ -1,4 +1,7 @@ -using Microsoft.Maui.Graphics; +using System.Diagnostics; +using System.Linq; +using System.Numerics; +using Microsoft.Maui.Graphics; namespace Microsoft.Maui { @@ -7,6 +10,9 @@ namespace Microsoft.Maui /// public class RectangleAdorner : IAdorner { + + readonly AdornerModel model = new(); + /// /// Initializes a new instance of the class. /// @@ -22,7 +28,13 @@ public RectangleAdorner(IView view, float density = 1, Point? offset = null, Col Offset = offset ?? Point.Zero; VisualView = view; Density = density; - DrawnRectangle = Rect.Zero; + + // Sanity check + if (Density < 0.1) + { + Density = 1; + Debug.Fail($"Invalid density {density}"); + } } /// @@ -37,27 +49,54 @@ public RectangleAdorner(IView view, float density = 1, Point? offset = null, Col public Color StrokeColor { get; } - public Rect DrawnRectangle { get; private set; } + public Rect DrawnRectangle => model.BoundingBox; /// - public virtual bool Contains(Point point) => - DrawnRectangle.Contains(point); + public virtual bool Contains(Point point) + { + if (model.BoundingBox.Contains(point)) + { + return true; + } + + if (model.MarginZones.Any(r => r.Contains(point))) + { + return true; + } + + return false; + } /// public virtual void Draw(ICanvas canvas, RectF dirtyRect) { + UpdateModel(); + + // Draw highlight rectangle canvas.FillColor = FillColor; canvas.StrokeColor = StrokeColor; + canvas.FillRectangle(model.BoundingBox); + } + + void UpdateModel() + { + Rect box = VisualView.GetBoundingBox(); - var boundingBox = VisualView.GetBoundingBox(); - var x = (boundingBox.X / Density) + Offset.X; - var y = (boundingBox.Y / Density) + Offset.Y; - var width = boundingBox.Width / Density; - var height = boundingBox.Height / Density; + box.X = box.X + Offset.X; + box.Y = box.Y + Offset.Y; - DrawnRectangle = new Rect(x, y, width, height); + Matrix4x4 transform = VisualView.GetViewTransform(); + Thickness margin; + if (VisualView is IView view) + { + margin = view.Margin; + } + else + { + margin = new Thickness(); + } - canvas.FillRectangle(DrawnRectangle); + model.Update(box, margin, transform, Density); } } } \ No newline at end of file diff --git a/src/Core/src/WindowOverlay/WindowOverlay.Android.cs b/src/Core/src/WindowOverlay/WindowOverlay.Android.cs index a6b064badaf9..8a3af90fcf18 100644 --- a/src/Core/src/WindowOverlay/WindowOverlay.Android.cs +++ b/src/Core/src/WindowOverlay/WindowOverlay.Android.cs @@ -91,7 +91,10 @@ void TouchLayerTouch(object? sender, View.TouchEventArgs e) if (e.Event.Action != MotionEventActions.Down && e.Event.ButtonState != MotionEventButtonState.Primary) return; - var point = new Point(e.Event.RawX, e.Event.RawY); + var x = this._nativeLayer?.Context.FromPixels(e.Event.RawX) ?? 0; + var y = this._nativeLayer?.Context.FromPixels(e.Event.RawY) ?? 0; + + var point = new Point(x, y); e.Handled = false; if (DisableUITouchEventPassthrough) diff --git a/src/Core/src/WindowOverlay/WindowOverlay.Windows.cs b/src/Core/src/WindowOverlay/WindowOverlay.Windows.cs index 649822a1e1c7..ae618c595bd1 100644 --- a/src/Core/src/WindowOverlay/WindowOverlay.Windows.cs +++ b/src/Core/src/WindowOverlay/WindowOverlay.Windows.cs @@ -11,7 +11,7 @@ public partial class WindowOverlay { W2DGraphicsView? _graphicsView; Frame? _frame; - Panel? _panel; + WindowRootViewContainer? _panel; FrameworkElement? _platformElement; /// @@ -26,11 +26,15 @@ public virtual bool Initialize() _platformElement = Window.Content.ToPlatform(); if (_platformElement == null) return false; + var handler = Window.Handler as WindowHandler; if (handler?.PlatformView is not Window _window) return false; - _panel = _window.Content as Panel; + _panel = _window.Content as WindowRootViewContainer; + if (_panel is null) + return false; + // Capture when the frame is navigating. // When it is, we will clear existing adorners. if (_platformElement is Frame frame) @@ -52,8 +56,8 @@ public virtual bool Initialize() _graphicsView.IsHitTestVisible = false; _graphicsView.Visibility = UI.Xaml.Visibility.Collapsed; - _panel?.Children.Add(_graphicsView); - + _panel.AddOverlay(_graphicsView); + IsPlatformViewInitialized = true; return IsPlatformViewInitialized; } @@ -77,8 +81,6 @@ void DeinitializePlatformDependencies() { if (_frame != null) _frame.Navigating -= FrameNavigating; - if (_panel != null) - _panel.Children.Remove(_graphicsView); if (_platformElement != null) { _platformElement.Tapped -= ViewTapped; @@ -88,8 +90,10 @@ void DeinitializePlatformDependencies() { _graphicsView.Tapped -= ViewTapped; _graphicsView.PointerMoved -= PointerMoved; + if (_panel != null) + _panel.RemoveOverlay(_graphicsView); + _graphicsView = null; } - _graphicsView = null; IsPlatformViewInitialized = false; } diff --git a/src/Core/tests/DeviceTests/Core.DeviceTests.csproj b/src/Core/tests/DeviceTests/Core.DeviceTests.csproj index 307bcdfe2007..96feae4072fe 100644 --- a/src/Core/tests/DeviceTests/Core.DeviceTests.csproj +++ b/src/Core/tests/DeviceTests/Core.DeviceTests.csproj @@ -42,15 +42,19 @@ + + + + diff --git a/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.Android.cs b/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.Android.cs index dfb66588e888..6f9b865bcda4 100644 --- a/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.Android.cs @@ -1,19 +1,56 @@ +using System; using System.Threading.Tasks; using Android.Text; using AndroidX.AppCompat.Widget; using AndroidX.Core.Widget; -using Google.Android.Material.Button; -using Microsoft.Extensions.DependencyInjection; using Microsoft.Maui.DeviceTests.Stubs; -using Microsoft.Maui.Graphics; -using Microsoft.Maui.Handlers; using Xunit; -using AColor = global::Android.Graphics.Color; +using AColor = Android.Graphics.Color; namespace Microsoft.Maui.DeviceTests { public partial class ButtonHandlerTests { + [Fact(DisplayName = "IsVisible updates Correctly")] + public async Task IsVisibleUpdatesCorrectly() + { + var expected = Colors.Red; + + var layout = new LayoutStub(); + + var hiddenButton = new ButtonStub + { + Text = "Text", + TextColor = expected, + Visibility = Visibility.Collapsed, + }; + + var button = new ButtonStub + { + Text = "Change IsVisible" + }; + + layout.Add(hiddenButton); + layout.Add(button); + + var clicked = false; + + button.Clicked += delegate + { + hiddenButton.Visibility = Visibility.Visible; + clicked = true; + }; + + await PerformClick(button); + + Assert.True(clicked); + + var result = await GetValueAsync(hiddenButton, GetVisibility); + Assert.Equal(hiddenButton.Visibility, result); + + await ValidateHasColor(hiddenButton, expected); + } + [Fact(DisplayName = "CharacterSpacing Initializes Correctly")] public async Task CharacterSpacingInitializesCorrectly() { @@ -41,7 +78,7 @@ public async Task CharacterSpacingInitializesCorrectly() } AppCompatButton GetNativeButton(ButtonHandler buttonHandler) => - (AppCompatButton)buttonHandler.PlatformView; + buttonHandler.PlatformView; string GetNativeText(ButtonHandler buttonHandler) => GetNativeButton(buttonHandler).Text; @@ -94,6 +131,16 @@ bool ImageSourceLoaded(ButtonHandler buttonHandler) } TextUtils.TruncateAt GetNativeLineBreakMode(ButtonHandler buttonHandler) => - GetNativeButton(buttonHandler).Ellipsize; + GetNativeButton(buttonHandler).Ellipsize; + + Task ValidateHasColor(IButton button, Color color, Action action = null) + { + return InvokeOnMainThreadAsync(() => + { + var platformButton = GetNativeButton(CreateHandler(button)); + action?.Invoke(); + platformButton.AssertContainsColor(color); + }); + } } } \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.cs index 87c5abc33eac..061a4004bc6b 100644 --- a/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/Button/ButtonHandlerTests.cs @@ -122,5 +122,60 @@ public async Task PaddingInitializesCorrectly(double left, double top, double ri Assert.Equal(expected.Right, native.Right, Precision); Assert.Equal(expected.Bottom, native.Bottom, Precision); } + + [Theory] + [InlineData(null)] + [InlineData("#FF0000")] + [InlineData("#00FF00")] + [InlineData("#0000FF")] + [InlineData("#000000")] + public async Task BorderColorInitializesCorrectly(string colorHex) + { + var expectedColor = Color.FromArgb(colorHex); + + var button = new ButtonStub + { + Text = "Test", + StrokeColor = expectedColor, + StrokeThickness = 3 + }; + + var handler = await CreateHandlerAsync(button); + + await InvokeOnMainThreadAsync(async () => + { + await handler.PlatformView.AssertContainsColor(expectedColor); + }); + } + + [Theory] + [InlineData(null)] + [InlineData("#FF0000")] + [InlineData("#00FF00")] + [InlineData("#0000FF")] + [InlineData("#000000")] + public async Task BorderColorUpdatesCorrectly(string colorHex) + { + var expectedColor = Color.FromArgb(colorHex); + + var button = new ButtonStub + { + Text = "Test", + StrokeThickness = 3 + }; + + var handler = await CreateHandlerAsync(button); + + await InvokeOnMainThreadAsync(async () => + { + await handler.PlatformView.AttachAndRun(async () => + { + button.StrokeColor = expectedColor; + handler.UpdateValue(nameof(IButton.StrokeColor)); + + await handler.PlatformView.AssertContainsColor(expectedColor); + }); + }); + } } } \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Android.cs b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Android.cs index 3140981f7443..ff4b8f723208 100644 --- a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Android.cs @@ -208,7 +208,17 @@ int GetNativeCursorPosition(EditorHandler editorHandler) var textView = GetNativeEditor(editorHandler); if (textView != null) - return textView.SelectionEnd; + return textView.SelectionStart; + + return -1; + } + + int GetNativeSelectionLength(EditorHandler editorHandler) + { + var textView = GetNativeEditor(editorHandler); + + if (textView != null) + return textView.SelectionEnd - textView.SelectionStart; return -1; } diff --git a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Windows.cs b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Windows.cs new file mode 100644 index 000000000000..49d1a86954cb --- /dev/null +++ b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.Windows.cs @@ -0,0 +1,90 @@ +using System.Linq; +using System.Threading.Tasks; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Maui.DeviceTests.Stubs; +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Xunit; + +//using NativeTextAlignment = Microsoft.UI.Xaml.TextAlignment; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class EditorHandlerTests + { + static TextBox GetNativeEditor(EditorHandler editorHandler) => + editorHandler.PlatformView; + + string GetNativeText(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).Text; + + static void SetNativeText(EditorHandler editorHandler, string text) => + GetNativeEditor(editorHandler).Text = text; + + static int GetCursorStartPosition(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).GetCursorPosition(); + + static void UpdateCursorStartPosition(EditorHandler editorHandler, int position) => + GetNativeEditor(editorHandler).SelectionStart = position; + + string GetNativePlaceholderText(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).PlaceholderText; + + Color GetNativePlaceholderColor(EditorHandler editorHandler) => + ((SolidColorBrush)GetNativeEditor(editorHandler).PlaceholderForeground).ToColor(); + + //double GetNativeCharacterSpacing(EditorHandler editorHandler) => + // GetNativeEditor(editorHandler).CharacterSpacing; + + //double GetNativeUnscaledFontSize(EditorHandler editorHandler) => + // GetNativeEditor(editorHandler).FontSize; + + bool GetNativeIsReadOnly(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).IsReadOnly; + + bool GetNativeIsTextPredictionEnabled(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).IsTextPredictionEnabled; + + Color GetNativeTextColor(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).Resources.TryGet("TextControlForeground").ToColor(); + + //NativeTextAlignment GetNativeHorizontalTextAlignment(EditorHandler editorHandler) => + // GetNativeEditor(editorHandler).TextAlignment; + + bool IsInputScopeEquals(InputScope inputScope, InputScopeNameValue nameValue) + { + if (inputScope == null || inputScope.Names.Count == 0) + return false; + + return inputScope.Names[0].NameValue == nameValue; + } + + bool GetNativeIsNumericKeyboard(EditorHandler editorHandler) => + IsInputScopeEquals(GetNativeEditor(editorHandler).InputScope, InputScopeNameValue.Number); + + bool GetNativeIsEmailKeyboard(EditorHandler editorHandler) => + IsInputScopeEquals(GetNativeEditor(editorHandler).InputScope, InputScopeNameValue.EmailSmtpAddress); + + bool GetNativeIsTelephoneKeyboard(EditorHandler editorHandler) => + IsInputScopeEquals(GetNativeEditor(editorHandler).InputScope, InputScopeNameValue.TelephoneNumber); + + bool GetNativeIsUrlKeyboard(EditorHandler editorHandler) => + IsInputScopeEquals(GetNativeEditor(editorHandler).InputScope, InputScopeNameValue.Url); + + bool GetNativeIsTextKeyboard(EditorHandler editorHandler) => + IsInputScopeEquals(GetNativeEditor(editorHandler).InputScope, InputScopeNameValue.Default); + + bool GetNativeIsChatKeyboard(EditorHandler editorHandler) => + IsInputScopeEquals(GetNativeEditor(editorHandler).InputScope, InputScopeNameValue.Chat); + + int GetNativeCursorPosition(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).GetCursorPosition(); + + int GetNativeSelectionLength(EditorHandler editorHandler) => + GetNativeEditor(editorHandler).SelectionLength; + } +} diff --git a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs index 8fb26b25cd74..21959e3bf652 100644 --- a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs @@ -1,4 +1,5 @@ using System.Threading.Tasks; +using Microsoft.Maui.Controls; using Microsoft.Maui.DeviceTests.Stubs; using Microsoft.Maui.Graphics; using Microsoft.Maui.Handlers; @@ -120,7 +121,12 @@ public async Task PlaceholderTextInitializesCorrectly() Text = "Test" }; +#if WINDOWS + // On Windows, the default value for the Placeholder text is an empty string ("") + await ValidatePropertyInitValue(editor, () => editor.Placeholder ?? string.Empty, GetNativePlaceholderText, editor.Placeholder ?? string.Empty); +#else await ValidatePropertyInitValue(editor, () => editor.Placeholder, GetNativePlaceholderText, editor.Placeholder); +#endif } [Theory] @@ -183,7 +189,11 @@ public async Task MaxLengthInitializesCorrectly(int maxLength) //Assert.Equal(expectedText, editor.Text); } - [Theory(DisplayName = "MaxLength Clips Native Text Correctly")] + [Theory(DisplayName = "MaxLength Clips Native Text Correctly" +#if WINDOWS + , Skip = "https://github.com/dotnet/maui/issues/7939" +#endif + )] [InlineData(2)] [InlineData(5)] [InlineData(8)] @@ -319,13 +329,20 @@ public async Task ValidateUrlKeyboard(string keyboardName, bool expected) [Theory(DisplayName = "Validates Text Keyboard")] [InlineData(nameof(Keyboard.Chat), false)] - [InlineData(nameof(Keyboard.Default), false)] [InlineData(nameof(Keyboard.Email), false)] [InlineData(nameof(Keyboard.Numeric), false)] - [InlineData(nameof(Keyboard.Plain), false)] [InlineData(nameof(Keyboard.Telephone), false)] [InlineData(nameof(Keyboard.Text), true)] [InlineData(nameof(Keyboard.Url), false)] +#if WINDOWS + // The Text keyboard is the default one on Windows + [InlineData(nameof(Keyboard.Default), true)] + // Plain is the same as the Default keyboard on Windows + [InlineData(nameof(Keyboard.Plain), true)] +#else + [InlineData(nameof(Keyboard.Default), false)] + [InlineData(nameof(Keyboard.Plain), false)] +#endif public async Task ValidateTextKeyboard(string keyboardName, bool expected) { var keyboard = (Keyboard)typeof(Keyboard).GetProperty(keyboardName).GetValue(null); @@ -353,56 +370,6 @@ public async Task ValidateChatKeyboard(string keyboardName, bool expected) await ValidatePropertyInitValue(editor, () => expected, GetNativeIsChatKeyboard, expected); } - [Theory(DisplayName = "CursorPosition Initializes Correctly")] - [InlineData(0)] - public async Task CursorPositionInitializesCorrectly(int initialPosition) - { - var editor = new EditorStub - { - Text = "This is TEXT!", - CursorPosition = initialPosition - }; - - await ValidatePropertyInitValue(editor, () => editor.CursorPosition, GetNativeCursorPosition, initialPosition); - } - - [Theory(DisplayName = "CursorPosition Updates Correctly")] - [InlineData(2, 5)] - public async Task CursorPositionUpdatesCorrectly(int setValue, int unsetValue) - { - string text = "This is TEXT!"; - - var editor = new EditorStub - { - Text = text - }; - - await ValidatePropertyUpdatesValue( - editor, - nameof(ITextInput.CursorPosition), - GetNativeCursorPosition, - setValue, - unsetValue - ); - } - - [Theory(DisplayName = "CursorPosition is Capped to Text's Length")] - [InlineData(30)] - public async Task CursorPositionIsCapped(int initialPosition) - { - string text = "This is TEXT!"; - - var editor = new EditorStub - { - Text = text, - CursorPosition = initialPosition - }; - - int actualPosition = await GetValueAsync(editor, GetNativeCursorPosition); - - Assert.Equal(text.Length, actualPosition); - } - [Category(TestCategory.Editor)] public class EditorTextInputTests : TextInputHandlerTests { diff --git a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.iOS.cs b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.iOS.cs index eb8fe075afb6..05c5d9c3c0d0 100644 --- a/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.iOS.cs +++ b/src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.iOS.cs @@ -231,5 +231,15 @@ int GetNativeCursorPosition(EditorHandler editorHandler) return -1; } + + int GetNativeSelectionLength(EditorHandler editorHandler) + { + var nativeEditor = GetNativeEditor(editorHandler); + + if (nativeEditor != null && nativeEditor.SelectedTextRange != null) + return (int)nativeEditor.GetOffsetFromPosition(nativeEditor.SelectedTextRange.Start, nativeEditor.SelectedTextRange.End); + + return -1; + } } } diff --git a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Android.cs b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Android.cs index 8849cb1eadba..a552c60d3906 100644 --- a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Android.cs @@ -282,7 +282,7 @@ int GetNativeCursorPosition(EntryHandler entryHandler) return -1; } - int GetPlatformSelectionLength(EntryHandler entryHandler) + int GetNativeSelectionLength(EntryHandler entryHandler) { var editText = GetNativeEntry(entryHandler); diff --git a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Windows.cs b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Windows.cs new file mode 100644 index 000000000000..552698aa3975 --- /dev/null +++ b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.Windows.cs @@ -0,0 +1,93 @@ +using System.Threading.Tasks; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Maui.DeviceTests.Stubs; +using Microsoft.Maui.Graphics; +using Microsoft.Maui.Handlers; +using Microsoft.Maui.Platform; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Xunit; + +using NativeTextAlignment = Microsoft.UI.Xaml.TextAlignment; +//using NativeVerticalAlignment = Microsoft.UI.Xaml.VerticalAlignment; + +namespace Microsoft.Maui.DeviceTests +{ + public partial class EntryHandlerTests + { + static TextBox GetNativeEntry(EntryHandler entryHandler) => + entryHandler.PlatformView; + + double GetNativeCharacterSpacing(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).CharacterSpacing; + + static string GetNativeText(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).Text; + + static void SetNativeText(EntryHandler entryHandler, string text) => + GetNativeEntry(entryHandler).Text = text; + + static int GetCursorStartPosition(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).GetCursorPosition(); + + static void UpdateCursorStartPosition(EntryHandler entryHandler, int position) => + GetNativeEntry(entryHandler).SelectionStart = position; + + Color GetNativeTextColor(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).Resources.TryGet("TextControlForeground").ToColor(); + + bool GetNativeIsPassword(EntryHandler entryHandler) => + ((MauiPasswordTextBox)GetNativeEntry(entryHandler)).IsPassword; + + string GetNativePlaceholder(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).PlaceholderText; + + bool GetNativeIsTextPredictionEnabled(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).IsTextPredictionEnabled; + + bool GetNativeIsReadOnly(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).IsReadOnly; + + bool IsInputScopeEquals(InputScope inputScope, InputScopeNameValue nameValue) + { + if (inputScope == null || inputScope.Names.Count == 0) + return false; + + return inputScope.Names[0].NameValue == nameValue; + } + + bool GetNativeIsNumericKeyboard(EntryHandler entryHandler) => + IsInputScopeEquals(GetNativeEntry(entryHandler).InputScope, InputScopeNameValue.Number); + + bool GetNativeIsEmailKeyboard(EntryHandler entryHandler) => + IsInputScopeEquals(GetNativeEntry(entryHandler).InputScope, InputScopeNameValue.EmailSmtpAddress); + + bool GetNativeIsTelephoneKeyboard(EntryHandler entryHandler) => + IsInputScopeEquals(GetNativeEntry(entryHandler).InputScope, InputScopeNameValue.TelephoneNumber); + + bool GetNativeIsUrlKeyboard(EntryHandler entryHandler) => + IsInputScopeEquals(GetNativeEntry(entryHandler).InputScope, InputScopeNameValue.Url); + + bool GetNativeIsTextKeyboard(EntryHandler entryHandler) => + IsInputScopeEquals(GetNativeEntry(entryHandler).InputScope, InputScopeNameValue.Default); + + bool GetNativeIsChatKeyboard(EntryHandler entryHandler) => + IsInputScopeEquals(GetNativeEntry(entryHandler).InputScope, InputScopeNameValue.Chat); + + bool GetNativeClearButtonVisibility(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).GetClearButtonVisibility(); + + NativeTextAlignment GetNativeHorizontalTextAlignment(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).TextAlignment; + + //NativeVerticalAlignment GetNativeVerticalTextAlignment(EntryHandler entryHandler) => + // GetNativeEntry(entryHandler).VerticalAlignment; + + int GetNativeCursorPosition(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).GetCursorPosition(); + + int GetNativeSelectionLength(EntryHandler entryHandler) => + GetNativeEntry(entryHandler).SelectionLength; + } +} \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.cs index e694d8322557..d74a1a664213 100644 --- a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.cs @@ -1,5 +1,6 @@ using System; using System.Threading.Tasks; +using Microsoft.Maui.Controls; using Microsoft.Maui.DeviceTests.Stubs; using Microsoft.Maui.Graphics; using Microsoft.Maui.Handlers; @@ -297,7 +298,11 @@ public async Task ValidateChatKeyboard(string keyboardName, bool expected) await ValidatePropertyInitValue(entryStub, () => expected, GetNativeIsChatKeyboard, expected); } - [Theory(DisplayName = "MaxLength Initializes Correctly")] + [Theory(DisplayName = "MaxLength Initializes Correctly" +#if WINDOWS + , Skip = "https://github.com/dotnet/maui/issues/7939" +#endif + )] [InlineData(2)] [InlineData(5)] [InlineData(8)] @@ -478,107 +483,6 @@ await ValidateUnrelatedPropertyUnaffected( () => entry.CharacterSpacing = newSize); } - [Theory(DisplayName = "CursorPosition Initializes Correctly")] - [InlineData(0)] - public async Task CursorPositionInitializesCorrectly(int initialPosition) - { - var entry = new EntryStub - { - Text = "This is TEXT!", - CursorPosition = initialPosition - }; - - await ValidatePropertyInitValue(entry, () => entry.CursorPosition, GetNativeCursorPosition, initialPosition); - } - - [Theory(DisplayName = "CursorPosition Updates Correctly")] - [InlineData(2, 5)] - public async Task CursorPositionUpdatesCorrectly(int setValue, int unsetValue) - { - string text = "This is TEXT!"; - - var entry = new EntryStub - { - Text = text, - }; - - await ValidatePropertyUpdatesValue( - entry, - nameof(IEntry.CursorPosition), - GetNativeCursorPosition, - setValue, - unsetValue - ); - } - - [Theory(DisplayName = "CursorPosition is Capped to Text's Length")] - [InlineData(30)] - public async Task CursorPositionIsCapped(int initialPosition) - { - string text = "This is TEXT!"; - - var entry = new EntryStub - { - Text = text, - CursorPosition = initialPosition - }; - - int actualPosition = await GetValueAsync(entry, GetNativeCursorPosition); - - Assert.Equal(text.Length, actualPosition); - } - - [Theory(DisplayName = "SelectionLength Initializes Correctly")] - [InlineData(0)] - public async Task SelectionLengthInitializesCorrectly(int initialLength) - { - var entry = new EntryStub - { - Text = "This is TEXT!", - SelectionLength = initialLength - }; - - await ValidatePropertyInitValue(entry, () => entry.SelectionLength, GetPlatformSelectionLength, initialLength); - } - - [Theory(DisplayName = "SelectionLength Updates Correctly")] - [InlineData(2, 5)] - public async Task SelectionLengthUpdatesCorrectly(int setValue, int unsetValue) - { - string text = "This is TEXT!"; - - var entry = new EntryStub - { - Text = text, - }; - - await ValidatePropertyUpdatesValue( - entry, - nameof(IEntry.SelectionLength), - GetPlatformSelectionLength, - setValue, - unsetValue - ); - } - - [Theory(DisplayName = "SelectionLength is Capped to Text Length")] - [InlineData(30)] - public async Task SelectionLengthIsCapped(int selectionLength) - { - string text = "This is TEXT!"; - - var entry = new EntryStub - { - Text = text, - SelectionLength = selectionLength - }; - - var actualLength = await GetValueAsync(entry, GetPlatformSelectionLength); - - Assert.Equal(text.Length, actualLength); - } - - [Category(TestCategory.Entry)] public class EntryTextInputTests : TextInputHandlerTests { diff --git a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.iOS.cs b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.iOS.cs index 349e2d06f0f9..7b7e9b3fcbe2 100644 --- a/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.iOS.cs +++ b/src/Core/tests/DeviceTests/Handlers/Entry/EntryHandlerTests.iOS.cs @@ -209,7 +209,7 @@ int GetNativeCursorPosition(EntryHandler entryHandler) return -1; } - int GetPlatformSelectionLength(EntryHandler entryHandler) + int GetNativeSelectionLength(EntryHandler entryHandler) { var textField = GetNativeEntry(entryHandler); diff --git a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Android.cs b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Android.cs index cdeb73dfdb80..221b93784af1 100644 --- a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Android.cs @@ -301,10 +301,10 @@ protected Visibility GetVisibility(IViewHandler viewHandler) } protected Maui.Graphics.Rect GetPlatformViewBounds(IViewHandler viewHandler) => - ((View)viewHandler.PlatformView).GetPlatformViewBounds(); + viewHandler.VirtualView.ToPlatform().GetPlatformViewBounds(); protected Maui.Graphics.Rect GetBoundingBox(IViewHandler viewHandler) => - ((View)viewHandler.PlatformView).GetBoundingBox(); + viewHandler.VirtualView.ToPlatform().GetBoundingBox(); protected Matrix4x4 GetViewTransform(IViewHandler viewHandler) => ((View)viewHandler.PlatformView).GetViewTransform(); diff --git a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Tests.cs b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Tests.cs index 1026b0be1040..292885050168 100644 --- a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Tests.cs +++ b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Tests.cs @@ -1,4 +1,7 @@ +using System; using System.IO; +using System.Linq; +using System.Threading; using System.Threading.Tasks; using Microsoft.Maui.DeviceTests.Stubs; using Microsoft.Maui.Graphics; @@ -9,8 +12,69 @@ namespace Microsoft.Maui.DeviceTests { public abstract partial class HandlerTestBase { + + // This way of testing leaks currently doesn't seem to work on WinAppSDK + // If you set a break point and the app breaks then the test passes?!? + // Not sure if you can test this type of thing with WinAppSDK or not +#if !WINDOWS + [Fact(DisplayName = "Handlers Deallocate When No Longer Referenced")] + public async Task HandlersDeallocateWhenNoLongerReferenced() + { + // Once this includes all handlers we can delete this + Type[] testedTypes = new[] + { + typeof(EditorHandler), +#if IOS + typeof(DatePickerHandler) +#endif + }; + + if (!testedTypes.Any(t => t.IsAssignableTo(typeof(THandler)))) + return; + + var handler = await CreateHandlerAsync(new TStub()) as IPlatformViewHandler; + + WeakReference weakHandler = new WeakReference((THandler)handler); + WeakReference weakView = new WeakReference((TStub)handler.VirtualView); + + handler = null; + + await AssertionExtensions.Wait(() => + { + GC.Collect(); + GC.WaitForPendingFinalizers(); + GC.Collect(); + GC.WaitForPendingFinalizers(); + + if (weakHandler.TryGetTarget(out THandler _) || + weakView.TryGetTarget(out TStub _)) + { + return false; + } + + return true; + + }, 1500); + + if (weakHandler.TryGetTarget(out THandler _)) + Assert.True(false, $"{typeof(THandler)} failed to collect"); + + if (weakView.TryGetTarget(out TStub _)) + Assert.True(false, $"{typeof(TStub)} failed to collect"); + } +#endif + + [Fact] + public async Task DisconnectHandlerDoesntCrash() + { + var handler = await CreateHandlerAsync(new TStub()) as IPlatformViewHandler; + await InvokeOnMainThreadAsync(() => + { + handler.DisconnectHandler(); + }); + } + [Fact(DisplayName = "Automation Id is set correctly")] - [InlineData()] public async Task SetAutomationId() { var view = new TStub @@ -189,6 +253,26 @@ public async Task ReturnsNonEmptyNativeBoundingBounds(int size) var nativeBoundingBox = await GetValueAsync(view, handler => GetBoundingBox(handler)); Assert.NotEqual(nativeBoundingBox, new Graphics.Rect()); + + + // Currently there's an issue with label/progress where they don't set the frame size to + // the explicit Width and Height values set + // https://github.com/dotnet/maui/issues/7935 + if (view is ILabel || view is IProgress) + { + if (!CloseEnough(size, nativeBoundingBox.Size.Width)) + Assert.Equal(new Size(size, size), nativeBoundingBox.Size); + } + else + { + if (!CloseEnough(size, nativeBoundingBox.Size.Height) || !CloseEnough(size, nativeBoundingBox.Size.Width)) + Assert.Equal(new Size(size, size), nativeBoundingBox.Size); + } + + bool CloseEnough(double value1, double value2) + { + return System.Math.Abs(value2 - value1) < 0.2; + } } diff --git a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Windows.cs b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Windows.cs index 3e2ce280af2a..8308a300e5be 100644 --- a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Windows.cs +++ b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.Windows.cs @@ -138,7 +138,7 @@ public async Task InputTransparencyInitializesCorrectly(bool inputTransparent) protected Task GetPlatformViewBounds(IViewHandler viewHandler) { - var fe = (FrameworkElement)viewHandler.PlatformView; + var fe = viewHandler.VirtualView.ToPlatform(); return fe.AttachAndRun(() => fe.GetPlatformViewBounds()); } @@ -147,7 +147,7 @@ protected System.Numerics.Matrix4x4 GetViewTransform(IViewHandler viewHandler) = protected Task GetBoundingBox(IViewHandler viewHandler) { - var fe = (FrameworkElement)viewHandler.PlatformView; + var fe = viewHandler.VirtualView.ToPlatform(); return fe.AttachAndRun(() => fe.GetBoundingBox()); } diff --git a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.cs b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.cs index 3ddc7a933ebb..7d8050098f35 100644 --- a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.cs +++ b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.DeviceTests { public partial class HandlerTestBase : HandlerTestBase - where THandler : IViewHandler, new() + where THandler : class, IViewHandler, new() where TStub : StubBase, IView, new() { public static Task Wait(Func exitCondition, int timeout = 1000) => @@ -94,9 +94,22 @@ async protected Task ValidatePropertyUpdatesValue( Assert.Equal(expectedSetValue, viewVal); Assert.Equal(expectedSetValue, nativeVal); + await ValidatePropertyUpdatesAfterInitValue(handler, property, GetPlatformValue, expectedSetValue, expectedUnsetValue); + } + + async protected Task ValidatePropertyUpdatesAfterInitValue( + THandler handler, + string property, + Func GetPlatformValue, + TValue expectedSetValue, + TValue expectedUnsetValue) + { + var view = handler.VirtualView; + var propInfo = handler.VirtualView.GetType().GetProperty(property); + // confirm can update - (viewVal, nativeVal) = await InvokeOnMainThreadAsync(() => + var (viewVal, nativeVal) = await InvokeOnMainThreadAsync(() => { propInfo.SetValue(view, expectedUnsetValue); handler.UpdateValue(property); diff --git a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.iOS.cs b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.iOS.cs index fd026ac14d97..67cab60eaa6a 100644 --- a/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.iOS.cs +++ b/src/Core/tests/DeviceTests/Handlers/HandlerTestBaseOfT.iOS.cs @@ -173,10 +173,10 @@ protected bool GetIsAccessibilityElement(IViewHandler viewHandler) } protected Maui.Graphics.Rect GetPlatformViewBounds(IViewHandler viewHandler) => - ((UIView)viewHandler.PlatformView).GetPlatformViewBounds(); + viewHandler.VirtualView.ToPlatform().GetPlatformViewBounds(); protected Maui.Graphics.Rect GetBoundingBox(IViewHandler viewHandler) => - ((UIView)viewHandler.PlatformView).GetBoundingBox(); + viewHandler.VirtualView.ToPlatform().GetBoundingBox(); protected System.Numerics.Matrix4x4 GetViewTransform(IViewHandler viewHandler) => ((UIView)viewHandler.PlatformView).GetViewTransform(); diff --git a/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.Android.cs b/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.Android.cs index 371e435f3d40..4eb256515b3c 100644 --- a/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.Android.cs @@ -9,122 +9,6 @@ namespace Microsoft.Maui.DeviceTests { public partial class ImageHandlerTests { - [Theory] - [InlineData("#FF0000")] - [InlineData("#00FF00")] - [InlineData("#000000")] - public async Task InitializingNullSourceOnlyUpdatesTransparent(string colorHex) - { - var expectedColor = Color.FromArgb(colorHex); - - var image = new TStub - { - Background = new SolidPaintStub(expectedColor) - }; - - await InvokeOnMainThreadAsync(async () => - { - var handler = CreateHandler(image); - - await image.Wait(); - - Assert.Single(handler.ImageEvents); - Assert.Equal("SetImageResource", handler.ImageEvents[0].Member); - Assert.Equal(Android.Resource.Color.Transparent, handler.ImageEvents[0].Value); - - await handler.PlatformView.AssertContainsColor(expectedColor); - }); - } - - [Fact] - public async Task InitializingSourceOnlyUpdatesDrawableOnce() - { - var image = new TStub - { - Background = new SolidPaintStub(Colors.Black), - Source = new FileImageSourceStub("red.png"), - }; - - await InvokeOnMainThreadAsync(async () => - { - var handler = CreateHandler(image); - - await image.Wait(); - - await handler.PlatformView.AssertContainsColor(Colors.Red); - - Assert.Equal(2, handler.ImageEvents.Count); - Assert.Equal("SetImageResource", handler.ImageEvents[0].Member); - Assert.Equal(Android.Resource.Color.Transparent, handler.ImageEvents[0].Value); - Assert.Equal("SetImageResource", handler.ImageEvents[1].Member); - Assert.IsType(handler.ImageEvents[1].Value); - }); - } - - [Fact] - public async Task UpdatingSourceOnlyUpdatesDrawableTwice() - { - var image = new TStub - { - Background = new SolidPaintStub(Colors.Black), - Source = new FileImageSourceStub("red.png"), - }; - - await InvokeOnMainThreadAsync(async () => - { - var handler = CreateHandler(image); - - await image.Wait(); - - await handler.PlatformView.AssertContainsColor(Colors.Red); - - handler.ImageEvents.Clear(); - - image.Source = new FileImageSourceStub("blue.png"); - handler.UpdateValue(nameof(IImage.Source)); - - await image.Wait(); - - await handler.PlatformView.AssertContainsColor(Colors.Blue); - - Assert.Equal(2, handler.ImageEvents.Count); - Assert.Equal("SetImageResource", handler.ImageEvents[0].Member); - Assert.Equal(Android.Resource.Color.Transparent, handler.ImageEvents[0].Value); - Assert.Equal("SetImageResource", handler.ImageEvents[1].Member); - - var r = MauiProgram.DefaultContext.Resources.GetDrawableId(MauiProgram.DefaultContext.PackageName, "blue"); - Assert.Equal(r, handler.ImageEvents[1].Value); - }); - } - - [Fact] - public async Task ImageLoadSequenceIsCorrectWithChecks() - { - var events = await ImageLoadSequenceIsCorrect(); - - Assert.Equal(2, events.Count); - Assert.Equal("SetImageResource", events[0].Member); - Assert.Equal(Android.Resource.Color.Transparent, events[0].Value); - Assert.Equal("SetImageDrawable", events[1].Member); - var drawable = Assert.IsType(events[1].Value); - drawable.Color.IsEquivalent(Colors.Blue.ToPlatform()); - } - - [Fact] - public async Task InterruptingLoadCancelsAndStartsOverWithChecks() - { - var events = await InterruptingLoadCancelsAndStartsOver(); - - Assert.Equal(3, events.Count); - Assert.Equal("SetImageResource", events[0].Member); - Assert.Equal(Android.Resource.Color.Transparent, events[0].Value); - Assert.Equal("SetImageResource", events[1].Member); - Assert.Equal(Android.Resource.Color.Transparent, events[1].Value); - Assert.Equal("SetImageDrawable", events[2].Member); - var drawable = Assert.IsType(events[2].Value); - drawable.Color.IsEquivalent(Colors.Red.ToPlatform()); - } - [Fact] public async Task LoadDrawableAsyncReturnsWithSameImageAndDoesNotHang() { diff --git a/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.cs index 837287f85123..9c075277d81e 100644 --- a/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.cs @@ -4,10 +4,16 @@ using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.Maui.DeviceTests.Stubs; -using Microsoft.Maui.Graphics; -using Microsoft.Maui.Handlers; using Xunit; +#if ANDROID +using Android.Graphics.Drawables; +using PlatformImageType = System.Int32; +#elif IOS || MACCATALYST +using UIKit; +using PlatformImageType = UIKit.UIImage; +#endif + namespace Microsoft.Maui.DeviceTests { [Category(TestCategory.Image)] @@ -16,9 +22,17 @@ public partial class ImageHandlerTests : ImageHandlerTests : HandlerTestBase - where TImageHandler : IImageHandler, new() + where TImageHandler : class, IImageHandler, new() where TStub : StubBase, IImageStub, new() { +#if ANDROID + const string ImageEventAppResourceMemberName = "SetImageResource"; + const string ImageEventCustomMemberName = "SetImageDrawable"; +#elif IOS || MACCATALYST + const string ImageEventAppResourceMemberName = "Image"; + const string ImageEventCustomMemberName = "Image"; +#endif + [Theory( #if IOS Skip = "Test failing on IOS" @@ -300,6 +314,132 @@ await InvokeOnMainThreadAsync(async () => return events; } + [Theory] + [InlineData("#FF0000")] + [InlineData("#00FF00")] + [InlineData("#000000")] + public async Task InitializingNullSourceOnlyUpdatesNull(string colorHex) + { + var expectedColor = Color.FromArgb(colorHex); + + var image = new TStub + { + Background = new SolidPaintStub(expectedColor), + }; + + await InvokeOnMainThreadAsync(async () => + { + var handler = CreateHandler(image); + + await image.Wait(); + + Assert.Empty(handler.ImageEvents); + + await handler.PlatformView.AssertContainsColor(expectedColor); + }); + } + + [Fact] + public async Task InitializingSourceOnlyUpdatesImageOnce() + { + var image = new TStub + { + Background = new SolidPaintStub(Colors.Black), + Source = new FileImageSourceStub("red.png"), + }; + + await InvokeOnMainThreadAsync(async () => + { + var handler = CreateHandler(image); + + await image.Wait(); + + await handler.PlatformView.AssertContainsColor(Colors.Red); + + Assert.Single(handler.ImageEvents); + Assert.Equal(ImageEventAppResourceMemberName, handler.ImageEvents[0].Member); + var platformImage = Assert.IsType(handler.ImageEvents[0].Value); + +#if ANDROID + Assert.Equal(GetDrawableId("red"), platformImage); +#elif IOS || MACCATALYST + platformImage.AssertContainsColor(Colors.Red.ToPlatform()); +#endif + }); + } + + [Fact] + public async Task UpdatingSourceOnlyUpdatesImageOnce() + { + var image = new TStub + { + Background = new SolidPaintStub(Colors.Black), + Source = new FileImageSourceStub("red.png"), + }; + + await InvokeOnMainThreadAsync(async () => + { + var handler = CreateHandler(image); + + await image.Wait(); + + await handler.PlatformView.AssertContainsColor(Colors.Red); + + handler.ImageEvents.Clear(); + + image.Source = new FileImageSourceStub("blue.png"); + handler.UpdateValue(nameof(IImage.Source)); + + await image.Wait(); + + await handler.PlatformView.AssertContainsColor(Colors.Blue); + + Assert.Single(handler.ImageEvents); + Assert.Equal(ImageEventAppResourceMemberName, handler.ImageEvents[0].Member); + var platformImage = Assert.IsType(handler.ImageEvents[0].Value); + +#if ANDROID + Assert.Equal(GetDrawableId("blue"), platformImage); +#elif IOS || MACCATALYST + platformImage.AssertContainsColor(Colors.Blue.ToPlatform()); +#endif + }); + } + + [Fact] + public async Task ImageLoadSequenceIsCorrectWithChecks() + { + var events = await ImageLoadSequenceIsCorrect(); + + Assert.Single(events); + Assert.Equal(ImageEventCustomMemberName, events[0].Member); + +#if ANDROID + var platformImage = Assert.IsType(events[0].Value); + platformImage.Color.IsEquivalent(Colors.Blue.ToPlatform()); +#elif IOS || MACCATALYST + var platformImage = Assert.IsType(events[0].Value); + platformImage.AssertContainsColor(Colors.Blue.ToPlatform()); +#endif + } + + [Fact] + public async Task InterruptingLoadCancelsAndStartsOverWithChecks() + { + var events = await InterruptingLoadCancelsAndStartsOver(); + + Assert.Single(events); + Assert.Equal(ImageEventCustomMemberName, events[0].Member); + +#if ANDROID + var platformImage = Assert.IsType(events[0].Value); + platformImage.Color.IsEquivalent(Colors.Red.ToPlatform()); +#elif IOS || MACCATALYST + var platformImage = Assert.IsType(events[0].Value); + platformImage.AssertContainsColor(Colors.Red.ToPlatform()); +#endif + } + protected TCustomHandler CreateHandler(IView view) where TCustomHandler : IImageHandler, new() { @@ -315,5 +455,10 @@ protected TCustomHandler CreateHandler(IView view) return handler; } + +#if ANDROID + static int GetDrawableId(string image) => + MauiProgram.DefaultContext.Resources.GetDrawableId(MauiProgram.DefaultContext.PackageName, image); +#endif } } \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.iOS.cs b/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.iOS.cs index 8ea3b0a4e7af..f4f6b641d151 100644 --- a/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.iOS.cs +++ b/src/Core/tests/DeviceTests/Handlers/Image/ImageHandlerTests.iOS.cs @@ -1,130 +1,10 @@ using System; -using System.Threading.Tasks; -using Microsoft.Maui.DeviceTests.Stubs; -using Microsoft.Maui.Graphics; -using Microsoft.Maui.Handlers; -using ObjCRuntime; using UIKit; -using Xunit; namespace Microsoft.Maui.DeviceTests { public partial class ImageHandlerTests { - [Theory] - [InlineData("#FF0000")] - [InlineData("#00FF00")] - [InlineData("#000000")] - public async Task InitializingNullSourceOnlyUpdatesNull(string colorHex) - { - var expectedColor = Color.FromArgb(colorHex); - - var image = new TStub - { - Background = new SolidPaintStub(expectedColor), - }; - - await InvokeOnMainThreadAsync(async () => - { - var handler = CreateHandler(image); - - await image.Wait(); - - Assert.Single(handler.ImageEvents); - Assert.Equal("Image", handler.ImageEvents[0].Member); - Assert.Null(handler.ImageEvents[0].Value); - - await handler.PlatformView.AssertContainsColor(expectedColor); - }); - } - - [Fact] - public async Task InitializingSourceOnlyUpdatesImageOnce() - { - var image = new TStub - { - Background = new SolidPaintStub(Colors.Black), - Source = new FileImageSourceStub("red.png"), - }; - - await InvokeOnMainThreadAsync(async () => - { - var handler = CreateHandler(image); - - await image.Wait(); - - await handler.PlatformView.AssertContainsColor(Colors.Red); - - Assert.Equal(2, handler.ImageEvents.Count); - Assert.Equal("Image", handler.ImageEvents[0].Member); - Assert.Null(handler.ImageEvents[0].Value); - Assert.Equal("Image", handler.ImageEvents[1].Member); - Assert.IsType(handler.ImageEvents[1].Value); - }); - } - - [Fact] - public async Task UpdatingSourceOnlyUpdatesDrawableTwice() - { - var image = new TStub - { - Background = new SolidPaintStub(Colors.Black), - Source = new FileImageSourceStub("red.png"), - }; - - await InvokeOnMainThreadAsync(async () => - { - var handler = CreateHandler(image); - - await image.Wait(); - - await handler.PlatformView.AssertContainsColor(Colors.Red); - - handler.ImageEvents.Clear(); - - image.Source = new FileImageSourceStub("blue.png"); - handler.UpdateValue(nameof(IImage.Source)); - - await image.Wait(); - - await handler.PlatformView.AssertContainsColor(Colors.Blue); - - Assert.Equal(2, handler.ImageEvents.Count); - Assert.Equal("Image", handler.ImageEvents[0].Member); - Assert.Null(handler.ImageEvents[0].Value); - Assert.Equal("Image", handler.ImageEvents[1].Member); - Assert.IsType(handler.ImageEvents[1].Value); - }); - } - - [Fact] - public async Task ImageLoadSequenceIsCorrectWithChecks() - { - var events = await ImageLoadSequenceIsCorrect(); - - Assert.Equal(2, events.Count); - Assert.Equal("Image", events[0].Member); - Assert.Null(events[0].Value); - Assert.Equal("Image", events[1].Member); - var image = Assert.IsType(events[1].Value); - image.AssertContainsColor(Colors.Blue.ToPlatform()); - } - - [Fact] - public async Task InterruptingLoadCancelsAndStartsOverWithChecks() - { - var events = await InterruptingLoadCancelsAndStartsOver(); - - Assert.Equal(3, events.Count); - Assert.Equal("Image", events[0].Member); - Assert.Null(events[0].Value); - Assert.Equal("Image", events[1].Member); - Assert.Null(events[1].Value); - Assert.Equal("Image", events[2].Member); - var image = Assert.IsType(events[2].Value); - image.AssertContainsColor(Colors.Red.ToPlatform()); - } - UIImageView GetPlatformImageView(IImageHandler imageHandler) => imageHandler.PlatformView; diff --git a/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.Android.cs b/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.Android.cs index 25ec5fd2b604..06f22548f09f 100644 --- a/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.Android.cs @@ -1,17 +1,27 @@ using System; using System.Threading.Tasks; -using Android.Graphics.Drawables; -using Android.Widget; -using AndroidX.AppCompat.Widget; using Microsoft.Maui.DeviceTests.Stubs; -using Microsoft.Maui.Graphics; -using Microsoft.Maui.Handlers; -using Xunit; namespace Microsoft.Maui.DeviceTests { public partial class ImageButtonHandlerTests { + [Fact(DisplayName = "Clip ImageButton with Background works Correctly")] + public async Task ClipImageButtonWithBackgroundWorks() + { + Color expected = Colors.Yellow; + + var brush = new LinearGradientPaintStub(Colors.Blue, expected); + + var imageButton = new ImageButtonStub + { + Background = brush, + Clip = new EllipseShapeStub() + }; + + await ValidateHasColor(imageButton, expected); + } + Google.Android.Material.ImageView.ShapeableImageView GetPlatformImageButton(ImageButtonHandler buttonHandler) => buttonHandler.PlatformView; @@ -33,5 +43,15 @@ Thickness GetNativePadding(ImageButtonHandler imageButtonHandler) shapeableImageView.ContentPaddingRight, shapeableImageView.ContentPaddingBottom); } + + Task ValidateHasColor(IImageButton imageButton, Color color, Action action = null) + { + return InvokeOnMainThreadAsync(() => + { + var platformImageButton = GetPlatformImageButton(CreateHandler(imageButton)); + action?.Invoke(); + platformImageButton.AssertContainsColor(color); + }); + } } } \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.cs index 4e9b6719a25c..aa3f6f4e4d08 100644 --- a/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/ImageButton/ImageButtonHandlerTests.cs @@ -21,6 +21,7 @@ public async Task ClickEventFires() var clicked = false; var button = new ImageButtonStub(); + button.Clicked += delegate { clicked = true; diff --git a/src/Core/tests/DeviceTests/Handlers/RadioButton/RadioButtonHandlerTests.Windows.cs b/src/Core/tests/DeviceTests/Handlers/RadioButton/RadioButtonHandlerTests.Windows.cs index fad189724936..3ecfdf97c96e 100644 --- a/src/Core/tests/DeviceTests/Handlers/RadioButton/RadioButtonHandlerTests.Windows.cs +++ b/src/Core/tests/DeviceTests/Handlers/RadioButton/RadioButtonHandlerTests.Windows.cs @@ -1,11 +1,11 @@ namespace Microsoft.Maui.DeviceTests { - public partial class RadioButtonHandlerTests - { - UI.Xaml.Controls.RadioButton GetNativeRadioButton(RadioButtonHandler radioButtonHandler) => - radioButtonHandler.PlatformView; + public partial class RadioButtonHandlerTests + { + UI.Xaml.Controls.RadioButton GetNativeRadioButton(RadioButtonHandler radioButtonHandler) => + radioButtonHandler.PlatformView; - bool GetNativeIsChecked(RadioButtonHandler radioButtonHandler) => - GetNativeRadioButton(radioButtonHandler).IsChecked ?? false; - } + bool GetNativeIsChecked(RadioButtonHandler radioButtonHandler) => + GetNativeRadioButton(radioButtonHandler).IsChecked ?? false; + } } diff --git a/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.Android.cs b/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.Android.cs index 8201424fba21..660f1258ef97 100644 --- a/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.Android.cs +++ b/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.Android.cs @@ -34,9 +34,17 @@ public async Task ContentInitializesCorrectly() for (int n = 0; n < scrollViewHandler.PlatformView.ChildCount; n++) { var platformView = scrollViewHandler.PlatformView.GetChildAt(n); - if (platformView is AppCompatEditText) + + // ScrollView on Android uses an intermediate ContentViewGroup to handle measurement/arrangement/padding + if (platformView is ContentViewGroup contentViewGroup) { - return true; + for (int i = 0; i < contentViewGroup.ChildCount; i++) + { + if (contentViewGroup.GetChildAt(i) is AppCompatEditText) + { + return true; + } + } } } diff --git a/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.iOS.cs b/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.iOS.cs index d77d392526f9..4eb114124fce 100644 --- a/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.iOS.cs +++ b/src/Core/tests/DeviceTests/Handlers/ScrollView/ScrollViewHandlerTests.iOS.cs @@ -34,9 +34,16 @@ public async Task ContentInitializesCorrectly() foreach (var platformView in scrollViewHandler.PlatformView.Subviews) { - if (platformView is MauiTextField) + // ScrollView on iOS uses an intermediate ContentView to handle conetent measurement/arrangement + if (platformView is ContentView contentView) { - return true; + foreach (var content in contentView.Subviews) + { + if (content is MauiTextField) + { + return true; + } + } } } diff --git a/src/Core/tests/DeviceTests/Handlers/SearchBar/SearchBarHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/SearchBar/SearchBarHandlerTests.cs index 66684ca5371a..697ee6ffeddb 100644 --- a/src/Core/tests/DeviceTests/Handlers/SearchBar/SearchBarHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/SearchBar/SearchBarHandlerTests.cs @@ -9,6 +9,23 @@ namespace Microsoft.Maui.DeviceTests [Category(TestCategory.SearchBar)] public partial class SearchBarHandlerTests : HandlerTestBase { + [Theory(DisplayName = "Background Initializes Correctly")] + [InlineData(0xFF0000)] + [InlineData(0x00FF00)] + [InlineData(0x0000FF)] + public async Task BackgroundInitializesCorrectly(uint color) + { + var expected = Color.FromUint(color); + + var searchBar = new SearchBarStub + { + Background = new SolidPaintStub(expected), + Text = "Background" + }; + + await ValidateHasColor(searchBar, expected); + } + [Fact(DisplayName = "Text Initializes Correctly")] public async Task TextInitializesCorrectly() { diff --git a/src/Core/tests/DeviceTests/Handlers/Switch/SwitchHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/Switch/SwitchHandlerTests.cs index e1bef4c9cdf9..b35a9ce0b9d9 100644 --- a/src/Core/tests/DeviceTests/Handlers/Switch/SwitchHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/Switch/SwitchHandlerTests.cs @@ -24,7 +24,7 @@ public async Task IsToggledInitializesCorrectly() [Fact(DisplayName = "Is Toggled Does Not Set Same Value")] public async Task IsToggledDoesNotSetSameValue() { - var fireCount= 0; + var fireCount = 0; var switchStub = new SwitchStub() { diff --git a/src/Core/tests/DeviceTests/Handlers/TextInput/TextInputHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/TextInput/TextInputHandlerTests.cs index 1e15f9f5da97..63e5e033eea6 100644 --- a/src/Core/tests/DeviceTests/Handlers/TextInput/TextInputHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/TextInput/TextInputHandlerTests.cs @@ -9,10 +9,15 @@ namespace Microsoft.Maui.DeviceTests { public abstract partial class TextInputHandlerTests : HandlerTestBase - where THandler : IViewHandler, new() + where THandler : class, IViewHandler, new() where TStub : StubBase, ITextInputStub, new() { - [Theory(DisplayName = "TextChanged Events Fire Correctly")] + [Theory(DisplayName = "TextChanged Events Fire Correctly" +#if WINDOWS + , Skip = "For some reason, the PlatformView.TextChanged event is not being fired on tests, something is swallowing the event firing. " + + "This was tested on a real app and it's working correctly." +#endif + )] // null/empty [InlineData(null, null, false)] [InlineData(null, "", false)] diff --git a/src/Core/tests/DeviceTests/Handlers/Window/WindowHandlerTests.cs b/src/Core/tests/DeviceTests/Handlers/Window/WindowHandlerTests.cs index b976f295a878..d8c95de73561 100644 --- a/src/Core/tests/DeviceTests/Handlers/Window/WindowHandlerTests.cs +++ b/src/Core/tests/DeviceTests/Handlers/Window/WindowHandlerTests.cs @@ -7,6 +7,8 @@ namespace Microsoft.Maui.DeviceTests [Category(TestCategory.Window)] public partial class WindowHandlerTests : HandlerTestBase { + //TODO: Fix this test on Android, it fails a lot of times +#if !ANDROID [Fact] public async Task WindowHasReasonableDisplayDensity() { @@ -25,5 +27,6 @@ public async Task WindowHasReasonableDisplayDensity() Assert.Equal(density, req.Result); Assert.InRange(density, 0.1f, 4f); } +#endif } } \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Stubs/EditorStub.cs b/src/Core/tests/DeviceTests/Stubs/EditorStub.cs index d8a090fda5f7..860a6789c0db 100644 --- a/src/Core/tests/DeviceTests/Stubs/EditorStub.cs +++ b/src/Core/tests/DeviceTests/Stubs/EditorStub.cs @@ -29,7 +29,7 @@ public string Text public bool IsTextPredictionEnabled { get; set; } = true; - public Keyboard Keyboard { get; set; } + public Keyboard Keyboard { get; set; } = Keyboard.Default; public TextAlignment HorizontalTextAlignment { get; set; } diff --git a/src/Core/tests/DeviceTests/Stubs/LinearGradientPaintStub.cs b/src/Core/tests/DeviceTests/Stubs/LinearGradientPaintStub.cs new file mode 100644 index 000000000000..39598d386dd9 --- /dev/null +++ b/src/Core/tests/DeviceTests/Stubs/LinearGradientPaintStub.cs @@ -0,0 +1,11 @@ +namespace Microsoft.Maui.DeviceTests.Stubs +{ + public class LinearGradientPaintStub : LinearGradientPaint + { + public LinearGradientPaintStub(Color startColor, Color endColor) + { + StartColor = startColor; + EndColor = endColor; + } + } +} \ No newline at end of file diff --git a/src/Core/tests/DeviceTests/Stubs/PolygonStub.cs b/src/Core/tests/DeviceTests/Stubs/PolygonStub.cs index 5595523e86bb..d09894ffffed 100644 --- a/src/Core/tests/DeviceTests/Stubs/PolygonStub.cs +++ b/src/Core/tests/DeviceTests/Stubs/PolygonStub.cs @@ -13,7 +13,7 @@ public PolygonStub(PointCollectionStub? points) Shape = new PolygonShapeStub(points); } } - + public class PolygonShapeStub : StubBase, IShape { public PolygonShapeStub() diff --git a/src/Core/tests/UnitTests/HandlerTests.cs b/src/Core/tests/UnitTests/HandlerTests.cs new file mode 100644 index 000000000000..79f7b1046f67 --- /dev/null +++ b/src/Core/tests/UnitTests/HandlerTests.cs @@ -0,0 +1,79 @@ +using System; +using Microsoft.Maui.Hosting; +using Microsoft.Maui.Platform; +using Xunit; + +namespace Microsoft.Maui.UnitTests.Hosting +{ + [Category(TestCategory.Core)] + public class HandlerTests + { + [Fact] + public void HandlerNotFoundExceptionWhenHandlerNotRegistered() + { + var mauiApp = MauiApp.CreateBuilder() + .Build(); + + var mauiContext = new MauiContext(mauiApp.Services); + + Assert.Throws(() => + new ViewStub().ToPlatform(mauiContext) + ); + } + + [Fact] + public void ExceptionPropagatesFromHandler() + { + var mauiApp = MauiApp.CreateBuilder() + .ConfigureMauiHandlers(handlers => handlers.AddHandler()) + .ConfigureMauiHandlers(handlers => handlers.AddHandler()) + .Build(); + + var mauiContext = new MauiContext(mauiApp.Services); + + Assert.Throws(() => + new ViewStub().ToPlatform(mauiContext) + ); + } + + class ViewHandlerWithChildException : ViewHandlerStub + { + public ViewHandlerWithChildException() + { + } + + protected override PlatformViewStub CreatePlatformView() + { + return new PlatformViewStub(); + } + + public override void SetVirtualView(IView view) + { + base.SetVirtualView(view); + new ExceptionThrowingStub().ToPlatform(MauiContext); + } + } + + class ExceptionThrowingStub : ViewStub + { + + } + + class ExceptionThrowingViewHandler : ViewHandlerStub + { + public ExceptionThrowingViewHandler() + { + } + + protected override PlatformViewStub CreatePlatformView() + { + throw new PlatformViewStubCreatePlatformViewException(); + } + } + + class PlatformViewStubCreatePlatformViewException : Exception + { + + } + } +} \ No newline at end of file diff --git a/src/Core/tests/UnitTests/Layouts/GridLayoutManagerTests.cs b/src/Core/tests/UnitTests/Layouts/GridLayoutManagerTests.cs index fe6475fefdde..0fb269109a7c 100644 --- a/src/Core/tests/UnitTests/Layouts/GridLayoutManagerTests.cs +++ b/src/Core/tests/UnitTests/Layouts/GridLayoutManagerTests.cs @@ -1823,7 +1823,7 @@ public void StarRowHeightCorrectWhenFirstChildCollapsed() var view1 = CreateTestView(new Size(10, 10)); // Since this is collapsed, it should not count toward the star row height - view0.Visibility.Returns(Visibility.Collapsed); + view0.Visibility.Returns(Visibility.Collapsed); SubstituteChildren(grid, view0, view1); @@ -1851,6 +1851,23 @@ public void StarCoumnWidthCorrectWhenFirstChildCollapsed() Assert.Equal(10, measuredSize.Width); } + [Fact("ArrangeChildren should arranged within measured size")] + [Category(GridStarSizing)] + public void ArrangeChildrenShouldArrangedWithinMeasuredSize() + { + var grid = CreateGridLayout(rows: "*"); + grid.Width.Returns(105); + grid.Height.Returns(120); + + var view0 = CreateTestView(new Size(20, 20)); + SubstituteChildren(grid, view0); + + var measuredSize = MeasureAndArrange(grid, 300, double.PositiveInfinity); + + // we expect that the child will be arranged within measured size + AssertArranged(view0, 0, 0, measuredSize.Width, measuredSize.Height); + } + [Theory] [InlineData(LayoutAlignment.Center, true)] [InlineData(LayoutAlignment.Center, false)] @@ -1897,5 +1914,113 @@ public void StarRowsAreAutoWhenGridAlignmentIsNotFill(LayoutAlignment alignment, Assert.Equal(20, measuredSize.Height); } + + [Fact] + public void StarRowsResizeWhenGridExpandsToFill() + { + var grid = CreateGridLayout(rows: "*"); + grid.VerticalLayoutAlignment.Returns(LayoutAlignment.Fill); + + var view0 = CreateTestView(new Size(20, 20)); + SubstituteChildren(grid, view0); + + var manager = new GridLayoutManager(grid); + + // Measuring at infinite height, we expect the Grid's only row (*) to act like an + // Auto row and get the height of the view + var measuredSize = manager.Measure(20, double.PositiveInfinity); + Assert.Equal(20, measuredSize.Height); + + grid.DesiredSize.Returns(measuredSize); + + // We arrange at a height taller than the Grid's measurement; because the Grid + // is set to vertically Fill, we expect it to expand to the arranged height + manager.ArrangeChildren(new Rect(0, 0, 20, 100)); + + // And we expect the * row to fill up that new height + AssertArranged(view0, new Rect(0, 0, 20, 100)); + } + + [Fact] + public void StarColumnsResizeWhenGridExpandsToFill() + { + var grid = CreateGridLayout(columns: "*"); + grid.HorizontalLayoutAlignment.Returns(LayoutAlignment.Fill); + + var view0 = CreateTestView(new Size(20, 20)); + SubstituteChildren(grid, view0); + + var manager = new GridLayoutManager(grid); + + // Measuring at infinite width, we expect the Grid's only column (*) to act like an + // Auto column and get the width of the view + var measuredSize = manager.Measure(double.PositiveInfinity, 20); + Assert.Equal(20, measuredSize.Width); + + grid.DesiredSize.Returns(measuredSize); + + // We arrange at a width wider than the Grid's measurement; because the Grid + // is set to horizontally Fill, we expect it to expand to the arranged width + manager.ArrangeChildren(new Rect(0, 0, 100, 20)); + + // And we expect the * column to fill up that new width + AssertArranged(view0, new Rect(0, 0, 100, 20)); + } + + [Theory, Category(GridStarSizing)] + [InlineData(LayoutAlignment.Center)] + [InlineData(LayoutAlignment.Start)] + [InlineData(LayoutAlignment.End)] + [InlineData(LayoutAlignment.Fill)] + public void StarRowsShouldFitKnownDimensions(LayoutAlignment verticalAlignment) + { + var grid = CreateGridLayout(rows: "*"); + grid.VerticalLayoutAlignment.Returns(verticalAlignment); + grid.Height.Returns(100); + + var view0 = CreateTestView(new Size(20, 20)); + SubstituteChildren(grid, view0); + + var manager = new GridLayoutManager(grid); + var gridMeasure = manager.Measure(double.PositiveInfinity, double.PositiveInfinity); + + // Because the Grid has an explicit height, we expect the single Star row + // to have that height. + Assert.Equal(100, gridMeasure.Height); + + manager.ArrangeChildren(new Rect(Point.Zero, gridMeasure)); + + // Because the child has VerticalAlignment.Fill, we expect it to fill up the 100 + // units in the Star row + AssertArranged(view0, new Rect(0, 0, 20, 100)); + } + + [Theory, Category(GridStarSizing)] + [InlineData(LayoutAlignment.Center)] + [InlineData(LayoutAlignment.Start)] + [InlineData(LayoutAlignment.End)] + [InlineData(LayoutAlignment.Fill)] + public void StarColumnsShouldFitKnownDimensions(LayoutAlignment horizontalAlignment) + { + var grid = CreateGridLayout(columns: "*"); + grid.HorizontalLayoutAlignment.Returns(horizontalAlignment); + grid.Width.Returns(100); + + var view0 = CreateTestView(new Size(20, 20)); + SubstituteChildren(grid, view0); + + var manager = new GridLayoutManager(grid); + var gridMeasure = manager.Measure(double.PositiveInfinity, double.PositiveInfinity); + + // Because the Grid has an explicit width, we expect the single Star column + // to have that width. + Assert.Equal(100, gridMeasure.Width); + + manager.ArrangeChildren(new Rect(Point.Zero, gridMeasure)); + + // Because the child has HorizontalAlignment.Fill, we expect it to fill up the 100 + // units in the Star column + AssertArranged(view0, new Rect(0, 0, 100, 20)); + } } } diff --git a/src/DotNet/DotNet.csproj b/src/DotNet/DotNet.csproj index 8cc5edff2147..fb6ed55b92e9 100644 --- a/src/DotNet/DotNet.csproj +++ b/src/DotNet/DotNet.csproj @@ -165,6 +165,7 @@ diff --git a/src/Essentials/samples/Sample.Server.WebAuthenticator/Essentials.Sample.Server.WebAuthenticator.csproj b/src/Essentials/samples/Sample.Server.WebAuthenticator/Essentials.Sample.Server.WebAuthenticator.csproj index 5b278849c010..9eae47013c1d 100644 --- a/src/Essentials/samples/Sample.Server.WebAuthenticator/Essentials.Sample.Server.WebAuthenticator.csproj +++ b/src/Essentials/samples/Sample.Server.WebAuthenticator/Essentials.Sample.Server.WebAuthenticator.csproj @@ -6,9 +6,9 @@ - - - + + + diff --git a/src/Essentials/samples/Samples/Essentials.Sample.csproj b/src/Essentials/samples/Samples/Essentials.Sample.csproj index 3b8fe406fd16..68d4e6d739e1 100644 --- a/src/Essentials/samples/Samples/Essentials.Sample.csproj +++ b/src/Essentials/samples/Samples/Essentials.Sample.csproj @@ -13,9 +13,19 @@ Essentials com.microsoft.maui.essentials + 1.0 1 + + + + + @@ -32,6 +42,7 @@ + diff --git a/src/Essentials/samples/Samples/Platforms/Mac/Resources/FileSystemTemplate.txt b/src/Essentials/samples/Samples/Platforms/Mac/Resources/FileSystemTemplate.txt deleted file mode 100644 index 184c6db9e8b3..000000000000 --- a/src/Essentials/samples/Samples/Platforms/Mac/Resources/FileSystemTemplate.txt +++ /dev/null @@ -1,4 +0,0 @@ -This file was loaded from the app package. - -You can use this as a starting point for your comments... - diff --git a/src/Essentials/samples/Samples/Platforms/MacCatalyst/Resources/FileSystemTemplate.txt b/src/Essentials/samples/Samples/Platforms/MacCatalyst/Resources/FileSystemTemplate.txt deleted file mode 100644 index 184c6db9e8b3..000000000000 --- a/src/Essentials/samples/Samples/Platforms/MacCatalyst/Resources/FileSystemTemplate.txt +++ /dev/null @@ -1,4 +0,0 @@ -This file was loaded from the app package. - -You can use this as a starting point for your comments... - diff --git a/src/Essentials/samples/Samples/Platforms/Tizen/res/FileSystemTemplate.txt b/src/Essentials/samples/Samples/Platforms/Tizen/res/FileSystemTemplate.txt deleted file mode 100644 index 184c6db9e8b3..000000000000 --- a/src/Essentials/samples/Samples/Platforms/Tizen/res/FileSystemTemplate.txt +++ /dev/null @@ -1,4 +0,0 @@ -This file was loaded from the app package. - -You can use this as a starting point for your comments... - diff --git a/src/Essentials/samples/Samples/Platforms/Windows/FileSystemTemplate.txt b/src/Essentials/samples/Samples/Platforms/Windows/FileSystemTemplate.txt deleted file mode 100644 index 184c6db9e8b3..000000000000 --- a/src/Essentials/samples/Samples/Platforms/Windows/FileSystemTemplate.txt +++ /dev/null @@ -1,4 +0,0 @@ -This file was loaded from the app package. - -You can use this as a starting point for your comments... - diff --git a/src/Essentials/samples/Samples/Platforms/Windows/Package.appxmanifest b/src/Essentials/samples/Samples/Platforms/Windows/Package.appxmanifest index 2b519724356d..3dc7be9c83e7 100644 --- a/src/Essentials/samples/Samples/Platforms/Windows/Package.appxmanifest +++ b/src/Essentials/samples/Samples/Platforms/Windows/Package.appxmanifest @@ -9,7 +9,7 @@ + Version="0.0.0.0" /> Essentials diff --git a/src/Essentials/samples/Samples/Platforms/iOS/Resources/FileSystemTemplate.txt b/src/Essentials/samples/Samples/Platforms/iOS/Resources/FileSystemTemplate.txt deleted file mode 100644 index 184c6db9e8b3..000000000000 --- a/src/Essentials/samples/Samples/Platforms/iOS/Resources/FileSystemTemplate.txt +++ /dev/null @@ -1,4 +0,0 @@ -This file was loaded from the app package. - -You can use this as a starting point for your comments... - diff --git a/src/Essentials/samples/Samples/Platforms/Android/Assets/FileSystemTemplate.txt b/src/Essentials/samples/Samples/Resources/Raw/FileSystemTemplate.txt similarity index 100% rename from src/Essentials/samples/Samples/Platforms/Android/Assets/FileSystemTemplate.txt rename to src/Essentials/samples/Samples/Resources/Raw/FileSystemTemplate.txt diff --git a/src/Essentials/samples/Samples/ViewModel/FileSystemViewModel.cs b/src/Essentials/samples/Samples/ViewModel/FileSystemViewModel.cs index 88ed07b27981..46299ed26725 100644 --- a/src/Essentials/samples/Samples/ViewModel/FileSystemViewModel.cs +++ b/src/Essentials/samples/Samples/ViewModel/FileSystemViewModel.cs @@ -58,6 +58,9 @@ async void DoLoadFile() void DoSaveFile() { + var dir = Path.GetDirectoryName(localPath); + Directory.CreateDirectory(dir); + File.WriteAllText(localPath, CurrentContents); } diff --git a/src/Essentials/samples/Samples/ViewModel/MapsViewModel.cs b/src/Essentials/samples/Samples/ViewModel/MapsViewModel.cs index 29d3659c233e..5de82394c041 100644 --- a/src/Essentials/samples/Samples/ViewModel/MapsViewModel.cs +++ b/src/Essentials/samples/Samples/ViewModel/MapsViewModel.cs @@ -104,9 +104,9 @@ async void OpenLocation() }); if (!canOpen) - { - await DisplayAlertAsync("Unable to open map, possibly due to the fact that there is no default maps app installed."); - } + { + await DisplayAlertAsync("Unable to open map, possibly due to the fact that there is no default maps app installed."); + } } async void OpenPlacemark() @@ -119,7 +119,7 @@ async void OpenPlacemark() Thoroughfare = Thoroughfare, PostalCode = ZipCode }; - + var canOpen = await Map.TryOpenAsync(placemark, new MapLaunchOptions { Name = Name, @@ -127,9 +127,9 @@ async void OpenPlacemark() }); if (!canOpen) - { - await DisplayAlertAsync("Unable to open map, possibly due to the fact that there is no default maps app installed."); - } + { + await DisplayAlertAsync("Unable to open map, possibly due to the fact that there is no default maps app installed."); + } } } } diff --git a/src/Essentials/src/AppInfo/AppInfo.uwp.cs b/src/Essentials/src/AppInfo/AppInfo.uwp.cs index 25ddf08ac84f..f81b90962695 100644 --- a/src/Essentials/src/AppInfo/AppInfo.uwp.cs +++ b/src/Essentials/src/AppInfo/AppInfo.uwp.cs @@ -1,6 +1,8 @@ using System; using System.Globalization; using Windows.ApplicationModel; +using System.Diagnostics; +using System.Reflection; #if WINDOWS using Microsoft.UI.Xaml; #else @@ -11,29 +13,63 @@ namespace Microsoft.Maui.ApplicationModel { class AppInfoImplementation : IAppInfo { - public string PackageName => Package.Current.Id.Name; + static readonly Assembly _launchingAssembly = Assembly.GetEntryAssembly(); - public string Name => Package.Current.DisplayName; + const string SettingsUri = "ms-settings:appsfeatures-app"; - public Version Version => Utils.ParseVersion(VersionString); + ApplicationTheme? _applicationTheme; - public string VersionString + public AppInfoImplementation() { - get - { - var version = Package.Current.Id.Version; - return $"{version.Major}.{version.Minor}.{version.Build}.{version.Revision}"; - } + // TODO: NET7 use new public events + if (WindowStateManager.Default is WindowStateManagerImplementation impl) + impl.ActiveWindowThemeChanged += OnActiveWindowThemeChanged; + + if (MainThread.IsMainThread) + OnActiveWindowThemeChanged(); } - public string BuildString => - Package.Current.Id.Version.Build.ToString(CultureInfo.InvariantCulture); + public string PackageName => AppInfoUtils.IsPackagedApp + ? Package.Current.Id.Name + : _launchingAssembly.GetAppInfoValue("PackageName") ?? _launchingAssembly.GetCustomAttribute()?.Title ?? string.Empty; + + // TODO: NET7 add this as a actual data point and public property if it is valid on platforms + internal static string PublisherName => AppInfoUtils.IsPackagedApp + ? Package.Current.PublisherDisplayName + : _launchingAssembly.GetAppInfoValue("PublisherName") ?? _launchingAssembly.GetCustomAttribute()?.Company ?? string.Empty; + + public string Name => AppInfoUtils.IsPackagedApp + ? Package.Current.DisplayName + : _launchingAssembly.GetAppInfoValue("Name") ?? _launchingAssembly.GetCustomAttribute()?.Title ?? string.Empty; + + public Version Version => AppInfoUtils.IsPackagedApp + ? Package.Current.Id.Version.ToVersion() + : _launchingAssembly.GetAppInfoVersionValue("Version") ?? _launchingAssembly.GetName().Version; + + public string VersionString => Version.ToString(); - public void ShowSettingsUI() => - global::Windows.System.Launcher.LaunchUriAsync(new global::System.Uri("ms-settings:appsfeatures-app")).WatchForError(); + public string BuildString => Version.Revision.ToString(CultureInfo.InvariantCulture); - public AppTheme RequestedTheme => - Application.Current.RequestedTheme == ApplicationTheme.Dark ? AppTheme.Dark : AppTheme.Light; + public void ShowSettingsUI() + { + if (AppInfoUtils.IsPackagedApp) + global::Windows.System.Launcher.LaunchUriAsync(new Uri(SettingsUri)).WatchForError(); + else + Process.Start(new ProcessStartInfo { FileName = SettingsUri, UseShellExecute = true }); + } + + public AppTheme RequestedTheme + { + get + { + if (MainThread.IsMainThread && Application.Current != null) + _applicationTheme = Application.Current.RequestedTheme; + else if (_applicationTheme == null) + return AppTheme.Unspecified; + + return _applicationTheme == ApplicationTheme.Dark ? AppTheme.Dark : AppTheme.Light; + } + } public AppPackagingModel PackagingModel => AppInfoUtils.IsPackagedApp ? AppPackagingModel.Packaged @@ -41,6 +77,12 @@ public void ShowSettingsUI() => public LayoutDirection RequestedLayoutDirection => CultureInfo.CurrentCulture.TextInfo.IsRightToLeft ? LayoutDirection.RightToLeft : LayoutDirection.LeftToRight; + + void OnActiveWindowThemeChanged(object sender = null, EventArgs e = null) + { + if (Application.Current is Application app) + _applicationTheme = app.RequestedTheme; + } } static class AppInfoUtils @@ -61,5 +103,30 @@ static class AppInfoUtils }); public static bool IsPackagedApp => _isPackagedAppLazy.Value; + + public static Version ToVersion(this PackageVersion version) => + new Version(version.Major, version.Minor, version.Build, version.Revision); + + public static Version GetAppInfoVersionValue(this Assembly assembly, string name) + { + if (assembly.GetAppInfoValue(name) is string value && !string.IsNullOrEmpty(value)) + return Version.Parse(value); + + return null; + } + + public static string GetAppInfoValue(this Assembly assembly, string name) => + assembly.GetMetadataAttributeValue("Microsoft.Maui.ApplicationModel.AppInfo." + name); + + public static string GetMetadataAttributeValue(this Assembly assembly, string key) + { + foreach (var attr in assembly.GetCustomAttributes()) + { + if (attr.Key == key) + return attr.Value; + } + + return null; + } } -} \ No newline at end of file +} diff --git a/src/Essentials/src/AssemblyInfo/AssemblyInfo.shared.cs b/src/Essentials/src/AssemblyInfo/AssemblyInfo.shared.cs index 5420acffa342..3c1d670712b8 100644 --- a/src/Essentials/src/AssemblyInfo/AssemblyInfo.shared.cs +++ b/src/Essentials/src/AssemblyInfo/AssemblyInfo.shared.cs @@ -14,3 +14,6 @@ [assembly: InternalsVisibleTo("CommunityToolkit.Maui.Markup.UnitTests")] [assembly: InternalsVisibleTo("Microsoft.Maui.Controls.Core.UnitTests")] [assembly: InternalsVisibleTo("Microsoft.Maui.Controls.Xaml.UnitTests")] +[assembly: InternalsVisibleTo("Microsoft.Maui.TestUtils")] +[assembly: InternalsVisibleTo("Microsoft.Maui.TestUtils.DeviceTests")] +[assembly: InternalsVisibleTo("Microsoft.Maui.TestUtils.DeviceTests.Runners")] diff --git a/src/Essentials/src/Connectivity/Connectivity.ios.tvos.macos.reachability.cs b/src/Essentials/src/Connectivity/Connectivity.ios.tvos.macos.reachability.cs index cc1b8548786b..291b736b0b03 100644 --- a/src/Essentials/src/Connectivity/Connectivity.ios.tvos.macos.reachability.cs +++ b/src/Essentials/src/Connectivity/Connectivity.ios.tvos.macos.reachability.cs @@ -153,7 +153,7 @@ internal ReachabilityListener() remoteHostReachability.SetNotification(OnChange); remoteHostReachability.Schedule(CFRunLoop.Main, CFRunLoop.ModeDefault); - + #if !(MACCATALYST || MACOS) #pragma warning disable BI1234, CA1416 // Analyzer bug https://github.com/dotnet/roslyn-analyzers/issues/5938 ConnectivityImplementation.CellularData.RestrictionDidUpdateNotifier = new Action(OnRestrictedStateChanged); diff --git a/src/Essentials/src/Contacts/Contacts.ios.macos.cs b/src/Essentials/src/Contacts/Contacts.ios.macos.cs index 0575398488e0..6857beec4dbf 100644 --- a/src/Essentials/src/Contacts/Contacts.ios.macos.cs +++ b/src/Essentials/src/Contacts/Contacts.ios.macos.cs @@ -136,7 +136,7 @@ public override void DidSelectContact(CNContactPickerViewController picker, CNCo public override void DidSelectContactProperty(CNContactPickerViewController picker, CNContactProperty contactProperty) => picker.DismissModalViewController(true); -#pragma warning restore CA1416 +#pragma warning restore CA1416 } #endif } diff --git a/src/Essentials/src/Contacts/Contacts.tizen.cs b/src/Essentials/src/Contacts/Contacts.tizen.cs index bf33e366ca21..df3722c3e4b4 100644 --- a/src/Essentials/src/Contacts/Contacts.tizen.cs +++ b/src/Essentials/src/Contacts/Contacts.tizen.cs @@ -11,7 +11,7 @@ namespace Microsoft.Maui.ApplicationModel.Communication { - class ContactsImplementation:IContacts + class ContactsImplementation : IContacts { static ContactsManager manager = new ContactsManager(); diff --git a/src/Essentials/src/Essentials.csproj b/src/Essentials/src/Essentials.csproj index d0cb5988ff4c..67f8d2ab3c3b 100644 --- a/src/Essentials/src/Essentials.csproj +++ b/src/Essentials/src/Essentials.csproj @@ -8,13 +8,9 @@ false true true - $(NoWarn);CS1591;NU5104; + $(NoWarn);CS1591;NU5104;RS0041;RS0026 - - - - @@ -33,6 +29,7 @@ + @@ -66,4 +63,5 @@ --> + diff --git a/src/Essentials/src/FileSystem/FileSystem.uwp.cs b/src/Essentials/src/FileSystem/FileSystem.uwp.cs index 76ec2f27acdd..9719ed661fef 100644 --- a/src/Essentials/src/FileSystem/FileSystem.uwp.cs +++ b/src/Essentials/src/FileSystem/FileSystem.uwp.cs @@ -9,11 +9,21 @@ namespace Microsoft.Maui.Storage { partial class FileSystemImplementation : IFileSystem { + static string CleanPath(string path) => + string.Join("_", path.Split(Path.GetInvalidFileNameChars())); + + static string AppSpecificPath => + Path.Combine(CleanPath(AppInfoImplementation.PublisherName), CleanPath(AppInfo.PackageName)); + string PlatformCacheDirectory - => ApplicationData.Current.LocalCacheFolder.Path; + => AppInfoUtils.IsPackagedApp + ? ApplicationData.Current.LocalCacheFolder.Path + : Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), AppSpecificPath, "Cache"); string PlatformAppDataDirectory - => ApplicationData.Current.LocalFolder.Path; + => AppInfoUtils.IsPackagedApp + ? ApplicationData.Current.LocalFolder.Path + : Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), AppSpecificPath, "Data"); Task PlatformOpenAppPackageFileAsync(string filename) { diff --git a/src/Essentials/src/Flashlight/Flashlight.ios.cs b/src/Essentials/src/Flashlight/Flashlight.ios.cs index 32e59808cada..e944aa3fa769 100644 --- a/src/Essentials/src/Flashlight/Flashlight.ios.cs +++ b/src/Essentials/src/Flashlight/Flashlight.ios.cs @@ -48,7 +48,7 @@ void Toggle(bool on) } captureDevice.UnlockForConfiguration(); -#pragma warning restore CA1416 +#pragma warning restore CA1416 captureDevice.Dispose(); captureDevice = null; } diff --git a/src/Essentials/src/Geocoding/Geocoding.tizen.cs b/src/Essentials/src/Geocoding/Geocoding.tizen.cs index b18d8591d5e0..9037006a679c 100644 --- a/src/Essentials/src/Geocoding/Geocoding.tizen.cs +++ b/src/Essentials/src/Geocoding/Geocoding.tizen.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Devices.Sensors { - class GeocodingImplementation: IGeocoding + class GeocodingImplementation : IGeocoding { public string? MapServiceToken { get; set; } diff --git a/src/Essentials/src/Geolocation/Geolocation.ios.macos.cs b/src/Essentials/src/Geolocation/Geolocation.ios.macos.cs index 3aec4e3a9ef8..3a7ea40794bd 100644 --- a/src/Essentials/src/Geolocation/Geolocation.ios.macos.cs +++ b/src/Essentials/src/Geolocation/Geolocation.ios.macos.cs @@ -21,12 +21,12 @@ public async Task GetLastKnownLocationAsync() var reducedAccuracy = false; #if __IOS__ - if (OperatingSystem.IsIOSVersionAtLeast(14, 0)) - { - reducedAccuracy = manager.AccuracyAuthorization == CLAccuracyAuthorization.ReducedAccuracy; - } + if (OperatingSystem.IsIOSVersionAtLeast(14, 0)) + { + reducedAccuracy = manager.AccuracyAuthorization == CLAccuracyAuthorization.ReducedAccuracy; + } #endif - return location?.ToLocation(reducedAccuracy); + return location?.ToLocation(reducedAccuracy); } public async Task GetLocationAsync(GeolocationRequest request, CancellationToken cancellationToken) @@ -64,15 +64,15 @@ public async Task GetLocationAsync(GeolocationRequest request, Cancell var reducedAccuracy = false; #if __IOS__ - if (OperatingSystem.IsIOSVersionAtLeast(14, 0)) - { - if (request.RequestFullAccuracy && manager.AccuracyAuthorization == CLAccuracyAuthorization.ReducedAccuracy) - { - await manager.RequestTemporaryFullAccuracyAuthorizationAsync("TemporaryFullAccuracyUsageDescription"); - } - - reducedAccuracy = manager.AccuracyAuthorization == CLAccuracyAuthorization.ReducedAccuracy; - } + if (OperatingSystem.IsIOSVersionAtLeast(14, 0)) + { + if (request.RequestFullAccuracy && manager.AccuracyAuthorization == CLAccuracyAuthorization.ReducedAccuracy) + { + await manager.RequestTemporaryFullAccuracyAuthorizationAsync("TemporaryFullAccuracyUsageDescription"); + } + + reducedAccuracy = manager.AccuracyAuthorization == CLAccuracyAuthorization.ReducedAccuracy; + } #endif var clLocation = await tcs.Task; diff --git a/src/Essentials/src/Map/Map.android.cs b/src/Essentials/src/Map/Map.android.cs index 565b7ee1f1f1..4245bfa6b4c8 100644 --- a/src/Essentials/src/Map/Map.android.cs +++ b/src/Essentials/src/Map/Map.android.cs @@ -91,9 +91,12 @@ internal string GetMode(NavigationMode mode) { switch (mode) { - case NavigationMode.Bicycling: return "&mode=b"; - case NavigationMode.Driving: return "&mode=d"; - case NavigationMode.Walking: return "&mode=w"; + case NavigationMode.Bicycling: + return "&mode=b"; + case NavigationMode.Driving: + return "&mode=d"; + case NavigationMode.Walking: + return "&mode=w"; } return string.Empty; } diff --git a/src/Essentials/src/Map/Map.uwp.cs b/src/Essentials/src/Map/Map.uwp.cs index 285bddeabf37..3e446df2516d 100644 --- a/src/Essentials/src/Map/Map.uwp.cs +++ b/src/Essentials/src/Map/Map.uwp.cs @@ -35,7 +35,7 @@ public async Task TryOpenAsync(Placemark placemark, MapLaunchOptions optio return await TryLaunchUri(uri); } - + Uri GetMapsUri(double latitude, double longitude, MapLaunchOptions options) { if (options == null) diff --git a/src/Essentials/src/Permissions/Permissions.ios.cs b/src/Essentials/src/Permissions/Permissions.ios.cs index bab31393960a..887c9fb1abe6 100644 --- a/src/Essentials/src/Permissions/Permissions.ios.cs +++ b/src/Essentials/src/Permissions/Permissions.ios.cs @@ -257,7 +257,7 @@ public override Task RequestAsync() return RequestSpeechPermission(); } - + #pragma warning disable CA1416 // https://github.com/xamarin/xamarin-macios/issues/14619 internal static PermissionStatus GetSpeechPermissionStatus() { diff --git a/src/Essentials/src/Platform/PlatformUtils.android.cs b/src/Essentials/src/Platform/PlatformUtils.android.cs index 9f00b0927e9d..9035fcf75cff 100644 --- a/src/Essentials/src/Platform/PlatformUtils.android.cs +++ b/src/Essentials/src/Platform/PlatformUtils.android.cs @@ -79,7 +79,7 @@ internal static void SetLocale(Java.Util.Locale locale) else #endif #pragma warning disable CS0618 // Type or member is obsolete - config.Locale = locale; + config.Locale = locale; #pragma warning restore CS0618 // Type or member is obsolete #pragma warning disable CS0618 // Type or member is obsolete diff --git a/src/Essentials/src/Platform/WindowStateManager.uwp.cs b/src/Essentials/src/Platform/WindowStateManager.uwp.cs index d34c123398cc..74a454a16cd5 100644 --- a/src/Essentials/src/Platform/WindowStateManager.uwp.cs +++ b/src/Essentials/src/Platform/WindowStateManager.uwp.cs @@ -11,6 +11,9 @@ public interface IWindowStateManager event EventHandler ActiveWindowDisplayChanged; + // TODO: NET7 make this public + // event EventHandler ActiveWindowThemeChanged; + Window? GetActiveWindow(); void OnActivated(Window window, WindowActivatedEventArgs args); @@ -73,15 +76,20 @@ public static IntPtr GetActiveWindowHandle(this IWindowStateManager manager, boo class WindowStateManagerImplementation : IWindowStateManager { - const uint DISPLAY_CHANGED = 126; - const uint DPI_CHANGED = 736; + const uint WM_DISPLAYCHANGE = 0x7E; + const uint WM_DPICHANGED = 0x02E0; + const uint WM_SETTINGCHANGE = 0x001A; + const uint WM_THEMECHANGE = 0x031A; Window? _activeWindow; + IntPtr _activeWindowHandle; public event EventHandler? ActiveWindowChanged; public event EventHandler? ActiveWindowDisplayChanged; + public event EventHandler? ActiveWindowThemeChanged; + public Window? GetActiveWindow() => _activeWindow; @@ -91,6 +99,10 @@ void SetActiveWindow(Window window) return; _activeWindow = window; + _activeWindowHandle = window is null + ? IntPtr.Zero + : WinRT.Interop.WindowNative.GetWindowHandle(window); + ActiveWindowChanged?.Invoke(window, EventArgs.Empty); } @@ -106,14 +118,13 @@ public void OnActivated(Window window, WindowActivatedEventArgs args) // Hopefully there will be a more public API for this down the road so we can just use that directly from Essentials public void OnWindowMessage(IntPtr hWnd, uint msg, IntPtr wParam, IntPtr lParam) { - if (ActiveWindowDisplayChanged == null) - return; - - // We only care about orientation or dpi changes - if (DISPLAY_CHANGED != msg && DPI_CHANGED != msg) + // only track events if they come from the active window + if (_activeWindow is null || hWnd != _activeWindowHandle) return; - if (_activeWindow != null && hWnd == WinRT.Interop.WindowNative.GetWindowHandle(_activeWindow)) + if (msg == WM_SETTINGCHANGE || msg == WM_THEMECHANGE) + ActiveWindowThemeChanged?.Invoke(_activeWindow, EventArgs.Empty); + else if (msg == WM_DISPLAYCHANGE || msg == WM_DPICHANGED) ActiveWindowDisplayChanged?.Invoke(_activeWindow, EventArgs.Empty); } } diff --git a/src/Essentials/src/Preferences/Preferences.uwp.cs b/src/Essentials/src/Preferences/Preferences.uwp.cs index 80bf7b82154b..8d1ed96fcc41 100644 --- a/src/Essentials/src/Preferences/Preferences.uwp.cs +++ b/src/Essentials/src/Preferences/Preferences.uwp.cs @@ -1,8 +1,43 @@ +using System; +using System.Globalization; +using System.IO; +using System.Text.Json; +using Microsoft.Maui.ApplicationModel; using Windows.Storage; +using PreferencesDictionary = System.Collections.Concurrent.ConcurrentDictionary>; +using ShareNameDictionary = System.Collections.Concurrent.ConcurrentDictionary; + namespace Microsoft.Maui.Storage { class PreferencesImplementation : IPreferences + { + readonly IPreferences _preferences; + + public PreferencesImplementation() + { + _preferences = AppInfoUtils.IsPackagedApp + ? new PackagedPreferencesImplementation() + : new UnpackagedPreferencesImplementation(); + } + + public bool ContainsKey(string key, string sharedName) => + _preferences.ContainsKey(key, sharedName); + + public void Remove(string key, string sharedName) => + _preferences.Remove(key, sharedName); + + public void Clear(string sharedName) => + _preferences.Clear(sharedName); + + public void Set(string key, T value, string sharedName) => + _preferences.Set(key, value, sharedName); + + public T Get(string key, T defaultValue, string sharedName) => + _preferences.Get(key, default, sharedName); + } + + class PackagedPreferencesImplementation : IPreferences { static readonly object locker = new object(); @@ -79,4 +114,118 @@ static ApplicationDataContainer GetApplicationDataContainer(string sharedName) return localSettings.Containers[sharedName]; } } + + class UnpackagedPreferencesImplementation : IPreferences + { + static readonly string AppPreferencesPath = Path.Combine(FileSystem.AppDataDirectory, "..", "Settings", "preferences.dat"); + + readonly PreferencesDictionary _preferences = new(); + + public UnpackagedPreferencesImplementation() + { + Load(); + + _preferences.GetOrAdd(string.Empty, _ => new ShareNameDictionary()); + } + + public bool ContainsKey(string key, string sharedName = null) + { + if (_preferences.TryGetValue(CleanSharedName(sharedName), out var inner)) + { + return inner.ContainsKey(key); + } + + return false; + } + + public void Remove(string key, string sharedName = null) + { + if (_preferences.TryGetValue(CleanSharedName(sharedName), out var inner)) + { + inner.TryRemove(key, out _); + Save(); + } + } + + public void Clear(string sharedName = null) + { + if (_preferences.TryGetValue(CleanSharedName(sharedName), out var prefs)) + { + prefs.Clear(); + Save(); + } + } + + public void Set(string key, T value, string sharedName = null) + { + var prefs = _preferences.GetOrAdd(CleanSharedName(sharedName), _ => new ShareNameDictionary()); + + if (value is null) + prefs.TryRemove(key, out _); + else + prefs[key] = string.Format(CultureInfo.InvariantCulture, "{0}", value); + + Save(); + } + + public T Get(string key, T defaultValue, string sharedName = null) + { + if (_preferences.TryGetValue(CleanSharedName(sharedName), out var inner)) + { + if (inner.TryGetValue(key, out var value) && value is not null) + { + try + { + return (T)Convert.ChangeType(value, typeof(T), CultureInfo.InvariantCulture); + } + catch (FormatException) + { + // bad get, fall back to default + } + } + } + + return defaultValue; + } + + void Load() + { + if (!File.Exists(AppPreferencesPath)) + return; + + try + { + using var stream = File.OpenRead(AppPreferencesPath); + +#pragma warning disable IL2026 // Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code + var readPreferences = JsonSerializer.Deserialize(stream); +#pragma warning restore IL2026 // Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code + + if (readPreferences != null) + { + _preferences.Clear(); + foreach (var pair in readPreferences) + _preferences.TryAdd(pair.Key, pair.Value); + } + } + catch (JsonException) + { + // if deserialization fails proceed with empty settings + } + } + + void Save() + { + var dir = Path.GetDirectoryName(AppPreferencesPath); + Directory.CreateDirectory(dir); + + using var stream = File.Create(AppPreferencesPath); +#pragma warning disable IL2026 // Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code + JsonSerializer.Serialize(stream, _preferences); +#pragma warning restore IL2026 // Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code + } + + static string CleanSharedName(string sharedName) => + string.IsNullOrEmpty(sharedName) ? string.Empty : sharedName; + } } diff --git a/src/Essentials/src/PublicAPI/net-android/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/net-android/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..70c67b499794 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-android/PublicAPI.Shipped.txt @@ -0,0 +1,1259 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +const Microsoft.Maui.ApplicationModel.Platform.Intent.ActionAppAction = "ACTION_XE_APP_ACTION" -> string! +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.Created = 0 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.Destroyed = 3 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.Paused = 2 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.Resumed = 1 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.SaveInstanceState = 4 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.Started = 5 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityState.Stopped = 6 -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityStateChangedEventArgs +Microsoft.Maui.ApplicationModel.ActivityStateChangedEventArgs.Activity.get -> Android.App.Activity! +Microsoft.Maui.ApplicationModel.ActivityStateChangedEventArgs.State.get -> Microsoft.Maui.ApplicationModel.ActivityState +Microsoft.Maui.ApplicationModel.ActivityStateManager +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IActivityStateManager +Microsoft.Maui.ApplicationModel.IActivityStateManager.ActivityStateChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.IActivityStateManager.GetCurrentActivity() -> Android.App.Activity? +Microsoft.Maui.ApplicationModel.IActivityStateManager.Init(Android.App.Activity! activity, Android.OS.Bundle? bundle) -> void +Microsoft.Maui.ApplicationModel.IActivityStateManager.Init(Android.App.Application! application) -> void +Microsoft.Maui.ApplicationModel.IActivityStateManager.WaitForActivityAsync(System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IPlatformAppActions.OnNewIntent(Android.Content.Intent? intent) -> void +Microsoft.Maui.ApplicationModel.IPlatformAppActions.OnResume(Android.Content.Intent? intent) -> void +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.Platform.Intent +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback.OnResumeCallback(Android.Content.Intent! intent) -> bool +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity +Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity.WebAuthenticatorCallbackActivity() -> void +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(Android.App.Activity! activity) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(Android.Views.View! view) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileProvider +Microsoft.Maui.Storage.FileProvider.FileProvider() -> void +Microsoft.Maui.Storage.FileProviderLocation +Microsoft.Maui.Storage.FileProviderLocation.External = 2 -> Microsoft.Maui.Storage.FileProviderLocation +Microsoft.Maui.Storage.FileProviderLocation.Internal = 1 -> Microsoft.Maui.Storage.FileProviderLocation +Microsoft.Maui.Storage.FileProviderLocation.PreferExternal = 0 -> Microsoft.Maui.Storage.FileProviderLocation +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.ActivityStateManager.Default.get -> Microsoft.Maui.ApplicationModel.IActivityStateManager! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActionsExtensions.OnNewIntent(this Microsoft.Maui.ApplicationModel.IAppActions! appActions, Android.Content.Intent? intent) -> void +static Microsoft.Maui.ApplicationModel.AppActionsExtensions.OnResume(this Microsoft.Maui.ApplicationModel.IAppActions! appActions, Android.Content.Intent? intent) -> void +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Platform.ActivityStateChanged -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.Platform.AppContext.get -> Android.Content.Context! +static Microsoft.Maui.ApplicationModel.Platform.CurrentActivity.get -> Android.App.Activity? +static Microsoft.Maui.ApplicationModel.Platform.Init(Android.App.Activity! activity, Android.OS.Bundle? bundle) -> void +static Microsoft.Maui.ApplicationModel.Platform.Init(Android.App.Application! application) -> void +static Microsoft.Maui.ApplicationModel.Platform.OnNewIntent(Android.Content.Intent? intent) -> void +static Microsoft.Maui.ApplicationModel.Platform.OnRequestPermissionsResult(int requestCode, string![]! permissions, Android.Content.PM.Permission[]! grantResults) -> void +static Microsoft.Maui.ApplicationModel.Platform.OnResume(Android.App.Activity? activity = null) -> void +static Microsoft.Maui.ApplicationModel.Platform.WaitForActivityAsync(System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.OnResume(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, Android.Content.Intent! intent) -> bool +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, Android.App.Activity! activity) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, Android.Views.View! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileProvider.TemporaryLocation.get -> Microsoft.Maui.Storage.FileProviderLocation +static Microsoft.Maui.Storage.FileProvider.TemporaryLocation.set -> void +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Battery.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Battery.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Flashlight.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.NetworkState.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Phone.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Sms.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.StorageRead.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Vibrate.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] +~override Microsoft.Maui.Authentication.WebAuthenticatorCallbackActivity.OnCreate(Android.OS.Bundle savedInstanceState) -> void +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.IsDeclaredInManifest(string permission) -> bool +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.DoCheck(string androidPermission) -> Microsoft.Maui.ApplicationModel.PermissionStatus +~virtual Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequiredPermissions.get -> (string androidPermission, bool isRuntime)[] diff --git a/src/Essentials/src/PublicAPI/net-android/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/net-android/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-android/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/PublicAPI/net-ios/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/net-ios/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..e1551e952572 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-ios/PublicAPI.Shipped.txt @@ -0,0 +1,1268 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IPlatformAppActions.PerformActionForShortcutItem(UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IWindowStateManager +Microsoft.Maui.ApplicationModel.IWindowStateManager.GetCurrentUIViewController() -> UIKit.UIViewController? +Microsoft.Maui.ApplicationModel.IWindowStateManager.GetCurrentUIWindow() -> UIKit.UIWindow? +Microsoft.Maui.ApplicationModel.IWindowStateManager.Init(System.Func? getCurrentUIViewController) -> void +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.EventPermissions +Microsoft.Maui.ApplicationModel.Permissions.EventPermissions.EventPermissions() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.ApplicationModel.WindowStateManager +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback.OpenUrlCallback(System.Uri! uri) -> bool +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformCompass.ShouldDisplayHeadingCalibration.get -> bool +Microsoft.Maui.Devices.Sensors.IPlatformCompass.ShouldDisplayHeadingCalibration.set -> void +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(UIKit.UIView! view) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(UIKit.UIWindow! window) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPlatformSecureStorage.DefaultAccessible.get -> Security.SecAccessible +Microsoft.Maui.Storage.IPlatformSecureStorage.DefaultAccessible.set -> void +Microsoft.Maui.Storage.IPlatformSecureStorage.SetAsync(string! key, string! value, Security.SecAccessible accessible) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActionsExtensions.PerformActionForShortcutItem(this Microsoft.Maui.ApplicationModel.IAppActions! appActions, UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Permissions.LocationTimeout.get -> System.TimeSpan +static Microsoft.Maui.ApplicationModel.Permissions.LocationTimeout.set -> void +static Microsoft.Maui.ApplicationModel.Platform.ContinueUserActivity(UIKit.UIApplication! application, Foundation.NSUserActivity! userActivity, UIKit.UIApplicationRestorationHandler! completionHandler) -> bool +static Microsoft.Maui.ApplicationModel.Platform.GetCurrentUIViewController() -> UIKit.UIViewController? +static Microsoft.Maui.ApplicationModel.Platform.Init(System.Func? getCurrentUIViewController) -> void +static Microsoft.Maui.ApplicationModel.Platform.OpenUrl(UIKit.UIApplication! app, Foundation.NSUrl! url, Foundation.NSDictionary! options) -> bool +static Microsoft.Maui.ApplicationModel.Platform.PerformActionForShortcutItem(UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.WindowStateManager.Default.get -> Microsoft.Maui.ApplicationModel.IWindowStateManager! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.ContinueUserActivity(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, UIKit.UIApplication! application, Foundation.NSUserActivity! userActivity, UIKit.UIApplicationRestorationHandler! completionHandler) -> bool +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.OpenUrl(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! uri) -> bool +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.OpenUrl(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, UIKit.UIApplication! app, Foundation.NSUrl! url, Foundation.NSDictionary! options) -> bool +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.ShouldDisplayHeadingCalibration.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ShouldDisplayHeadingCalibration.set -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassExtensions.SetShouldDisplayHeadingCalibration(this Microsoft.Maui.Devices.Sensors.ICompass! compass, bool shouldDisplay) -> void +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, UIKit.UIView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, UIKit.UIWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.DefaultAccessible.get -> Security.SecAccessible +static Microsoft.Maui.Storage.SecureStorage.DefaultAccessible.set -> void +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value, Security.SecAccessible accessible) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorageExtensions.GetDefaultAccessible(this Microsoft.Maui.Storage.ISecureStorage! secureStorage) -> Security.SecAccessible +static Microsoft.Maui.Storage.SecureStorageExtensions.SetAsync(this Microsoft.Maui.Storage.ISecureStorage! secureStorage, string! key, string! value, Security.SecAccessible accessible) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorageExtensions.SetDefaultAccessible(this Microsoft.Maui.Storage.ISecureStorage! secureStorage, Security.SecAccessible accessible) -> void +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Media.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Media.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Media.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Photos.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Photos.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Photos.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Reminders.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Reminders.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Reminders.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.IsKeyDeclaredInInfoPlist(string usageKey) -> bool +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequiredInfoPlistKeys.get -> System.Func> diff --git a/src/Essentials/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..e1551e952572 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-maccatalyst/PublicAPI.Shipped.txt @@ -0,0 +1,1268 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IPlatformAppActions.PerformActionForShortcutItem(UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IWindowStateManager +Microsoft.Maui.ApplicationModel.IWindowStateManager.GetCurrentUIViewController() -> UIKit.UIViewController? +Microsoft.Maui.ApplicationModel.IWindowStateManager.GetCurrentUIWindow() -> UIKit.UIWindow? +Microsoft.Maui.ApplicationModel.IWindowStateManager.Init(System.Func? getCurrentUIViewController) -> void +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.EventPermissions +Microsoft.Maui.ApplicationModel.Permissions.EventPermissions.EventPermissions() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.ApplicationModel.WindowStateManager +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback.OpenUrlCallback(System.Uri! uri) -> bool +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformCompass.ShouldDisplayHeadingCalibration.get -> bool +Microsoft.Maui.Devices.Sensors.IPlatformCompass.ShouldDisplayHeadingCalibration.set -> void +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(UIKit.UIView! view) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(UIKit.UIWindow! window) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPlatformSecureStorage.DefaultAccessible.get -> Security.SecAccessible +Microsoft.Maui.Storage.IPlatformSecureStorage.DefaultAccessible.set -> void +Microsoft.Maui.Storage.IPlatformSecureStorage.SetAsync(string! key, string! value, Security.SecAccessible accessible) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActionsExtensions.PerformActionForShortcutItem(this Microsoft.Maui.ApplicationModel.IAppActions! appActions, UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Permissions.LocationTimeout.get -> System.TimeSpan +static Microsoft.Maui.ApplicationModel.Permissions.LocationTimeout.set -> void +static Microsoft.Maui.ApplicationModel.Platform.ContinueUserActivity(UIKit.UIApplication! application, Foundation.NSUserActivity! userActivity, UIKit.UIApplicationRestorationHandler! completionHandler) -> bool +static Microsoft.Maui.ApplicationModel.Platform.GetCurrentUIViewController() -> UIKit.UIViewController? +static Microsoft.Maui.ApplicationModel.Platform.Init(System.Func? getCurrentUIViewController) -> void +static Microsoft.Maui.ApplicationModel.Platform.OpenUrl(UIKit.UIApplication! app, Foundation.NSUrl! url, Foundation.NSDictionary! options) -> bool +static Microsoft.Maui.ApplicationModel.Platform.PerformActionForShortcutItem(UIKit.UIApplication! application, UIKit.UIApplicationShortcutItem! shortcutItem, UIKit.UIOperationHandler! completionHandler) -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.WindowStateManager.Default.get -> Microsoft.Maui.ApplicationModel.IWindowStateManager! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.ContinueUserActivity(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, UIKit.UIApplication! application, Foundation.NSUserActivity! userActivity, UIKit.UIApplicationRestorationHandler! completionHandler) -> bool +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.OpenUrl(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! uri) -> bool +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.OpenUrl(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, UIKit.UIApplication! app, Foundation.NSUrl! url, Foundation.NSDictionary! options) -> bool +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.ShouldDisplayHeadingCalibration.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ShouldDisplayHeadingCalibration.set -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassExtensions.SetShouldDisplayHeadingCalibration(this Microsoft.Maui.Devices.Sensors.ICompass! compass, bool shouldDisplay) -> void +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, UIKit.UIView! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, UIKit.UIWindow! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.DefaultAccessible.get -> Security.SecAccessible +static Microsoft.Maui.Storage.SecureStorage.DefaultAccessible.set -> void +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value, Security.SecAccessible accessible) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorageExtensions.GetDefaultAccessible(this Microsoft.Maui.Storage.ISecureStorage! secureStorage) -> Security.SecAccessible +static Microsoft.Maui.Storage.SecureStorageExtensions.SetAsync(this Microsoft.Maui.Storage.ISecureStorage! secureStorage, string! key, string! value, Security.SecAccessible accessible) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorageExtensions.SetDefaultAccessible(this Microsoft.Maui.Storage.ISecureStorage! secureStorage, Security.SecAccessible accessible) -> void +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Media.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Media.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Media.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Photos.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Photos.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Photos.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Reminders.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Reminders.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Reminders.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Speech.RequiredInfoPlistKeys.get -> System.Func> +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.IsKeyDeclaredInInfoPlist(string usageKey) -> bool +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequiredInfoPlistKeys.get -> System.Func> diff --git a/src/Essentials/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/PublicAPI/net-tizen/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/net-tizen/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..0b3aa1760b54 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-tizen/PublicAPI.Shipped.txt @@ -0,0 +1,1209 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding.MapServiceToken.get -> string? +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding.MapServiceToken.set -> void +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Platform.CurrentPackage.get -> Tizen.Applications.Package! +static Microsoft.Maui.ApplicationModel.Platform.MapServiceToken.get -> string? +static Microsoft.Maui.ApplicationModel.Platform.MapServiceToken.set -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetMapServiceToken(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding) -> string? +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.SetMapServiceToken(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, string? mapServiceToken) -> void +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, ElmSharp.EvasObject! view) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, ElmSharp.Window! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.Camera.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Flashlight.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Maps.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.NetworkState.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.StorageRead.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.ApplicationModel.Permissions.Vibrate.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.IsPrivilegeDeclared(string tizenPrivilege) -> bool +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequiredPrivileges.get -> (string tizenPrivilege, bool isRuntime)[] diff --git a/src/Essentials/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/PublicAPI/net-windows/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/net-windows/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..80757ebc1344 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-windows/PublicAPI.Shipped.txt @@ -0,0 +1,1222 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IPlatformAppActions.OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs! e) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IWindowStateManager +Microsoft.Maui.ApplicationModel.IWindowStateManager.ActiveWindowChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.IWindowStateManager.ActiveWindowDisplayChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.IWindowStateManager.GetActiveWindow() -> Microsoft.UI.Xaml.Window? +Microsoft.Maui.ApplicationModel.IWindowStateManager.OnActivated(Microsoft.UI.Xaml.Window! window, Microsoft.UI.Xaml.WindowActivatedEventArgs! args) -> void +Microsoft.Maui.ApplicationModel.IWindowStateManager.OnWindowMessage(System.IntPtr hWnd, uint msg, System.IntPtr wParam, System.IntPtr lParam) -> void +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.ApplicationModel.WindowStateManager +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding.MapServiceToken.get -> string? +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding.MapServiceToken.set -> void +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(Microsoft.UI.Xaml.UIElement! element) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot.CaptureAsync(Microsoft.UI.Xaml.Window! window) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActionsExtensions.OnLaunched(this Microsoft.Maui.ApplicationModel.IAppActions! appActions, Microsoft.UI.Xaml.LaunchActivatedEventArgs! e) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Platform.MapServiceToken.get -> string? +static Microsoft.Maui.ApplicationModel.Platform.MapServiceToken.set -> void +static Microsoft.Maui.ApplicationModel.Platform.OnActivated(Microsoft.UI.Xaml.Window! window, Microsoft.UI.Xaml.WindowActivatedEventArgs! args) -> void +static Microsoft.Maui.ApplicationModel.Platform.OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs! e) -> void +static Microsoft.Maui.ApplicationModel.Platform.OnWindowMessage(System.IntPtr hWnd, uint msg, System.IntPtr wParam, System.IntPtr lParam) -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.WindowStateManager.Default.get -> Microsoft.Maui.ApplicationModel.IWindowStateManager! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetMapServiceToken(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding) -> string? +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.SetMapServiceToken(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, string? mapServiceToken) -> void +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, Microsoft.UI.Xaml.UIElement! element) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.ScreenshotExtensions.CaptureAsync(this Microsoft.Maui.Media.IScreenshot! screenshot, Microsoft.UI.Xaml.Window! window) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Microphone.RequiredDeclarations.get -> System.Func> +~override Microsoft.Maui.ApplicationModel.Permissions.Sensors.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.IsCapabilityDeclared(string capabilityName) -> bool +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~virtual Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequiredDeclarations.get -> System.Func> diff --git a/src/Essentials/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/PublicAPI/net/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/net/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6475d7021d3d --- /dev/null +++ b/src/Essentials/src/PublicAPI/net/PublicAPI.Shipped.txt @@ -0,0 +1,1185 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task diff --git a/src/Essentials/src/PublicAPI/net/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/net/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/net/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/PublicAPI/netstandard/PublicAPI.Shipped.txt b/src/Essentials/src/PublicAPI/netstandard/PublicAPI.Shipped.txt new file mode 100644 index 000000000000..6475d7021d3d --- /dev/null +++ b/src/Essentials/src/PublicAPI/netstandard/PublicAPI.Shipped.txt @@ -0,0 +1,1185 @@ +#nullable enable +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.EnsureDeclared() -> void +abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.ShouldShowRationale() -> bool +Microsoft.Maui.Accessibility.ISemanticScreenReader +Microsoft.Maui.Accessibility.ISemanticScreenReader.Announce(string! text) -> void +Microsoft.Maui.Accessibility.SemanticScreenReader +Microsoft.Maui.ApplicationModel.AppAction +Microsoft.Maui.ApplicationModel.AppAction.AppAction(string! id, string! title, string? subtitle = null, string? icon = null) -> void +Microsoft.Maui.ApplicationModel.AppAction.Id.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Id.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.get -> string? +Microsoft.Maui.ApplicationModel.AppAction.Subtitle.set -> void +Microsoft.Maui.ApplicationModel.AppAction.Title.get -> string! +Microsoft.Maui.ApplicationModel.AppAction.Title.set -> void +Microsoft.Maui.ApplicationModel.AppActionEventArgs +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppAction.get -> Microsoft.Maui.ApplicationModel.AppAction! +Microsoft.Maui.ApplicationModel.AppActionEventArgs.AppActionEventArgs(Microsoft.Maui.ApplicationModel.AppAction! appAction) -> void +Microsoft.Maui.ApplicationModel.AppActions +Microsoft.Maui.ApplicationModel.AppActionsExtensions +Microsoft.Maui.ApplicationModel.AppInfo +Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Packaged = 0 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppPackagingModel.Unpackaged = 1 -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Dark = 2 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Light = 1 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.AppTheme.Unspecified = 0 -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.Browser +Microsoft.Maui.ApplicationModel.BrowserExtensions +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.LaunchAdjacent = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.None = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsFormSheet = 4 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchFlags.PresentAsPageSheet = 2 -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.External = 1 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred = 0 -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.BrowserLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchFlags +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.Flags.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.get -> Microsoft.Maui.ApplicationModel.BrowserLaunchMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.LaunchMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredControlColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.get -> Microsoft.Maui.Graphics.Color? +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.PreferredToolbarColor.set -> void +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.get -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserLaunchOptions.TitleMode.set -> void +Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Default = 0 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Hide = 2 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.BrowserTitleMode.Show = 1 -> Microsoft.Maui.ApplicationModel.BrowserTitleMode +Microsoft.Maui.ApplicationModel.Communication.Contact +Microsoft.Maui.ApplicationModel.Communication.Contact.Contact() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactEmail +Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail() -> void +Microsoft.Maui.ApplicationModel.Communication.ContactPhone +Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone() -> void +Microsoft.Maui.ApplicationModel.Communication.Contacts +Microsoft.Maui.ApplicationModel.Communication.Email +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailAttachment.EmailAttachment(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.Html = 1 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat.PlainText = 0 -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailExtensions +Microsoft.Maui.ApplicationModel.Communication.EmailMessage +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Attachments.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Bcc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.get -> Microsoft.Maui.ApplicationModel.Communication.EmailBodyFormat +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.BodyFormat.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Cc.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.EmailMessage(string! subject, string! body, params string![]! to) -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.get -> string? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.Subject.set -> void +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.Communication.EmailMessage.To.set -> void +Microsoft.Maui.ApplicationModel.Communication.IContacts +Microsoft.Maui.ApplicationModel.Communication.IContacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.Communication.IContacts.PickContactAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail +Microsoft.Maui.ApplicationModel.Communication.IEmail.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.IEmail.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer.Open(string! number) -> void +Microsoft.Maui.ApplicationModel.Communication.ISms +Microsoft.Maui.ApplicationModel.Communication.ISms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.Communication.ISms.IsComposeSupported.get -> bool +Microsoft.Maui.ApplicationModel.Communication.PhoneDialer +Microsoft.Maui.ApplicationModel.Communication.Sms +Microsoft.Maui.ApplicationModel.Communication.SmsMessage +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.get -> string? +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Body.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.get -> System.Collections.Generic.List! +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.Recipients.set -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage() -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, string? recipient) -> void +Microsoft.Maui.ApplicationModel.Communication.SmsMessage.SmsMessage(string! body, System.Collections.Generic.IEnumerable? recipients) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.ClipboardContentChanged -> System.EventHandler! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.GetTextAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.HasText.get -> bool +Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.IShare.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.DataTransfer.Share +Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile.ShareFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.get -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest.ShareFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.get -> System.Collections.Generic.List? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.Files.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(string! title, System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.ShareMultipleFilesRequest(System.Collections.Generic.IEnumerable! files) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.ShareRequestBase() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareRequestBase.Title.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest() -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.ShareTextRequest(string! text, string! title) -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Subject.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Text.set -> void +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.get -> string? +Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest.Uri.set -> void +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException +Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException() -> void +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException +Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException() -> void +Microsoft.Maui.ApplicationModel.IAppActions +Microsoft.Maui.ApplicationModel.IAppActions.AppActionActivated -> System.EventHandler? +Microsoft.Maui.ApplicationModel.IAppActions.GetAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.ApplicationModel.IAppActions.IsSupported.get -> bool +Microsoft.Maui.ApplicationModel.IAppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IAppInfo +Microsoft.Maui.ApplicationModel.IAppInfo.BuildString.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.Name.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackageName.get -> string! +Microsoft.Maui.ApplicationModel.IAppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.IAppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +Microsoft.Maui.ApplicationModel.IAppInfo.ShowSettingsUI() -> void +Microsoft.Maui.ApplicationModel.IAppInfo.Version.get -> System.Version! +Microsoft.Maui.ApplicationModel.IAppInfo.VersionString.get -> string! +Microsoft.Maui.ApplicationModel.IBrowser +Microsoft.Maui.ApplicationModel.IBrowser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher +Microsoft.Maui.ApplicationModel.ILauncher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.ILauncher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IMap.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +Microsoft.Maui.ApplicationModel.IPlatformAppActions +Microsoft.Maui.ApplicationModel.IVersionTracking +Microsoft.Maui.ApplicationModel.IVersionTracking.BuildHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentBuild.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.CurrentVersion.get -> string! +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.FirstInstalledVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchEver.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForBuild(string! build) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.IsFirstLaunchForVersion(string! version) -> bool +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousBuild.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.PreviousVersion.get -> string? +Microsoft.Maui.ApplicationModel.IVersionTracking.Track() -> void +Microsoft.Maui.ApplicationModel.IVersionTracking.VersionHistory.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.Maui.ApplicationModel.Launcher +Microsoft.Maui.ApplicationModel.LauncherExtensions +Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.LeftToRight = 1 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.RightToLeft = 2 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.LayoutDirection.Unknown = 0 -> Microsoft.Maui.ApplicationModel.LayoutDirection +Microsoft.Maui.ApplicationModel.MainThread +Microsoft.Maui.ApplicationModel.Map +Microsoft.Maui.ApplicationModel.MapExtensions +Microsoft.Maui.ApplicationModel.MapLaunchOptions +Microsoft.Maui.ApplicationModel.MapLaunchOptions.MapLaunchOptions() -> void +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.get -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.MapLaunchOptions.NavigationMode.set -> void +Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Bicycling = 2 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Default = 1 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Driving = 3 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.None = 0 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Transit = 4 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.NavigationMode.Walking = 5 -> Microsoft.Maui.ApplicationModel.NavigationMode +Microsoft.Maui.ApplicationModel.OpenFileRequest +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.get -> Microsoft.Maui.Storage.ReadOnlyFile? +Microsoft.Maui.ApplicationModel.OpenFileRequest.File.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest() -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.OpenFileRequest(string! title, Microsoft.Maui.Storage.ReadOnlyFile! file) -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.get -> Microsoft.Maui.Graphics.Rect +Microsoft.Maui.ApplicationModel.OpenFileRequest.PresentationSourceBounds.set -> void +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.get -> string? +Microsoft.Maui.ApplicationModel.OpenFileRequest.Title.set -> void +Microsoft.Maui.ApplicationModel.PermissionException +Microsoft.Maui.ApplicationModel.Permissions +Microsoft.Maui.ApplicationModel.Permissions.BasePermission +Microsoft.Maui.ApplicationModel.Permissions.BasePermission.BasePermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission +Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.BasePlatformPermission() -> void +Microsoft.Maui.ApplicationModel.Permissions.Battery +Microsoft.Maui.ApplicationModel.Permissions.Battery.Battery() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead +Microsoft.Maui.ApplicationModel.Permissions.CalendarRead.CalendarRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite +Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite.CalendarWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Camera +Microsoft.Maui.ApplicationModel.Permissions.Camera.Camera() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead +Microsoft.Maui.ApplicationModel.Permissions.ContactsRead.ContactsRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite +Microsoft.Maui.ApplicationModel.Permissions.ContactsWrite.ContactsWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Flashlight +Microsoft.Maui.ApplicationModel.Permissions.Flashlight.Flashlight() -> void +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp +Microsoft.Maui.ApplicationModel.Permissions.LaunchApp.LaunchApp() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways +Microsoft.Maui.ApplicationModel.Permissions.LocationAlways.LocationAlways() -> void +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse +Microsoft.Maui.ApplicationModel.Permissions.LocationWhenInUse.LocationWhenInUse() -> void +Microsoft.Maui.ApplicationModel.Permissions.Maps +Microsoft.Maui.ApplicationModel.Permissions.Maps.Maps() -> void +Microsoft.Maui.ApplicationModel.Permissions.Media +Microsoft.Maui.ApplicationModel.Permissions.Media.Media() -> void +Microsoft.Maui.ApplicationModel.Permissions.Microphone +Microsoft.Maui.ApplicationModel.Permissions.Microphone.Microphone() -> void +Microsoft.Maui.ApplicationModel.Permissions.NetworkState +Microsoft.Maui.ApplicationModel.Permissions.NetworkState.NetworkState() -> void +Microsoft.Maui.ApplicationModel.Permissions.Phone +Microsoft.Maui.ApplicationModel.Permissions.Phone.Phone() -> void +Microsoft.Maui.ApplicationModel.Permissions.Photos +Microsoft.Maui.ApplicationModel.Permissions.Photos.Photos() -> void +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly +Microsoft.Maui.ApplicationModel.Permissions.PhotosAddOnly.PhotosAddOnly() -> void +Microsoft.Maui.ApplicationModel.Permissions.Reminders +Microsoft.Maui.ApplicationModel.Permissions.Reminders.Reminders() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sensors +Microsoft.Maui.ApplicationModel.Permissions.Sensors.Sensors() -> void +Microsoft.Maui.ApplicationModel.Permissions.Sms +Microsoft.Maui.ApplicationModel.Permissions.Sms.Sms() -> void +Microsoft.Maui.ApplicationModel.Permissions.Speech +Microsoft.Maui.ApplicationModel.Permissions.Speech.Speech() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageRead +Microsoft.Maui.ApplicationModel.Permissions.StorageRead.StorageRead() -> void +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite +Microsoft.Maui.ApplicationModel.Permissions.StorageWrite.StorageWrite() -> void +Microsoft.Maui.ApplicationModel.Permissions.Vibrate +Microsoft.Maui.ApplicationModel.Permissions.Vibrate.Vibrate() -> void +Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Denied = 1 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Disabled = 2 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Granted = 3 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Limited = 5 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Restricted = 4 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.PermissionStatus.Unknown = 0 -> Microsoft.Maui.ApplicationModel.PermissionStatus +Microsoft.Maui.ApplicationModel.Platform +Microsoft.Maui.ApplicationModel.VersionTracking +Microsoft.Maui.Authentication.AppleSignInAuthenticator +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeEmailScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.get -> bool +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.IncludeFullNameScope.set -> void +Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options.Options() -> void +Microsoft.Maui.Authentication.IAppleSignInAuthenticator +Microsoft.Maui.Authentication.IAppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.IPlatformWebAuthenticatorCallback +Microsoft.Maui.Authentication.IWebAuthenticator +Microsoft.Maui.Authentication.IWebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +Microsoft.Maui.Authentication.WebAuthenticator +Microsoft.Maui.Authentication.WebAuthenticatorExtensions +Microsoft.Maui.Authentication.WebAuthenticatorOptions +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.CallbackUrl.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.get -> bool +Microsoft.Maui.Authentication.WebAuthenticatorOptions.PrefersEphemeralWebBrowserSession.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.get -> System.Uri? +Microsoft.Maui.Authentication.WebAuthenticatorOptions.Url.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorOptions.WebAuthenticatorOptions() -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult +Microsoft.Maui.Authentication.WebAuthenticatorResult.ExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshTokenExpiresIn.get -> System.DateTimeOffset? +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Authentication.WebAuthenticatorResult.Timestamp.set -> void +Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult() -> void +Microsoft.Maui.Devices.Battery +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.BatteryInfoChangedEventArgs(double level, Microsoft.Maui.Devices.BatteryState state, Microsoft.Maui.Devices.BatteryPowerSource source) -> void +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ChargeLevel.get -> double +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.AC = 2 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Battery = 1 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Unknown = 0 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Usb = 3 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryPowerSource.Wireless = 4 -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Charging = 1 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Discharging = 2 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Full = 3 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotCharging = 4 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.NotPresent = 5 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.BatteryState.Unknown = 0 -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.DeviceDisplay +Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.DeviceIdiom.DeviceIdiom() -> void +Microsoft.Maui.Devices.DeviceIdiom.Equals(Microsoft.Maui.Devices.DeviceIdiom other) -> bool +Microsoft.Maui.Devices.DeviceInfo +Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.DevicePlatform.DevicePlatform() -> void +Microsoft.Maui.Devices.DevicePlatform.Equals(Microsoft.Maui.Devices.DevicePlatform other) -> bool +Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Physical = 1 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Unknown = 0 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DeviceType.Virtual = 2 -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfo.Density.get -> double +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo() -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation) -> void +Microsoft.Maui.Devices.DisplayInfo.DisplayInfo(double width, double height, double density, Microsoft.Maui.Devices.DisplayOrientation orientation, Microsoft.Maui.Devices.DisplayRotation rotation, float rate) -> void +Microsoft.Maui.Devices.DisplayInfo.Equals(Microsoft.Maui.Devices.DisplayInfo other) -> bool +Microsoft.Maui.Devices.DisplayInfo.Height.get -> double +Microsoft.Maui.Devices.DisplayInfo.Orientation.get -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayInfo.RefreshRate.get -> float +Microsoft.Maui.Devices.DisplayInfo.Rotation.get -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayInfo.Width.get -> double +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.DisplayInfoChangedEventArgs.DisplayInfoChangedEventArgs(Microsoft.Maui.Devices.DisplayInfo displayInfo) -> void +Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Landscape = 2 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Portrait = 1 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayOrientation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayOrientation +Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation0 = 1 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation180 = 3 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation270 = 4 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Rotation90 = 2 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.DisplayRotation.Unknown = 0 -> Microsoft.Maui.Devices.DisplayRotation +Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Off = 2 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.On = 1 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatus.Unknown = 0 -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.EnergySaverStatusChangedEventArgs(Microsoft.Maui.Devices.EnergySaverStatus saverStatus) -> void +Microsoft.Maui.Devices.Flashlight +Microsoft.Maui.Devices.HapticFeedback +Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.Click = 0 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.HapticFeedbackType.LongPress = 1 -> Microsoft.Maui.Devices.HapticFeedbackType +Microsoft.Maui.Devices.IBattery +Microsoft.Maui.Devices.IBattery.BatteryInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.ChargeLevel.get -> double +Microsoft.Maui.Devices.IBattery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +Microsoft.Maui.Devices.IBattery.EnergySaverStatusChanged -> System.EventHandler! +Microsoft.Maui.Devices.IBattery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +Microsoft.Maui.Devices.IBattery.State.get -> Microsoft.Maui.Devices.BatteryState +Microsoft.Maui.Devices.IDeviceDisplay +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.get -> bool +Microsoft.Maui.Devices.IDeviceDisplay.KeepScreenOn.set -> void +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +Microsoft.Maui.Devices.IDeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +Microsoft.Maui.Devices.IDeviceInfo +Microsoft.Maui.Devices.IDeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +Microsoft.Maui.Devices.IDeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +Microsoft.Maui.Devices.IDeviceInfo.Manufacturer.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Model.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Name.get -> string! +Microsoft.Maui.Devices.IDeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +Microsoft.Maui.Devices.IDeviceInfo.Version.get -> System.Version! +Microsoft.Maui.Devices.IDeviceInfo.VersionString.get -> string! +Microsoft.Maui.Devices.IFlashlight +Microsoft.Maui.Devices.IFlashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IFlashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.IHapticFeedback +Microsoft.Maui.Devices.IHapticFeedback.IsSupported.get -> bool +Microsoft.Maui.Devices.IHapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type) -> void +Microsoft.Maui.Devices.IVibration +Microsoft.Maui.Devices.IVibration.Cancel() -> void +Microsoft.Maui.Devices.IVibration.IsSupported.get -> bool +Microsoft.Maui.Devices.IVibration.Vibrate() -> void +Microsoft.Maui.Devices.IVibration.Vibrate(System.TimeSpan duration) -> void +Microsoft.Maui.Devices.Sensors.Accelerometer +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.AccelerometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.AccelerometerData reading) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData +Microsoft.Maui.Devices.Sensors.AccelerometerData.Acceleration.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData() -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.AccelerometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(Microsoft.Maui.Devices.Sensors.AccelerometerData other) -> bool +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Ellipsoid = 2 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Geoid = 3 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Surface = 4 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Terrain = 1 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem.Unspecified = 0 -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Barometer +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.BarometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.BarometerData reading) -> void +Microsoft.Maui.Devices.Sensors.BarometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData() -> void +Microsoft.Maui.Devices.Sensors.BarometerData.BarometerData(double pressure) -> void +Microsoft.Maui.Devices.Sensors.BarometerData.Equals(Microsoft.Maui.Devices.Sensors.BarometerData other) -> bool +Microsoft.Maui.Devices.Sensors.BarometerData.PressureInHectopascals.get -> double +Microsoft.Maui.Devices.Sensors.Compass +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.CompassChangedEventArgs(Microsoft.Maui.Devices.Sensors.CompassData reading) -> void +Microsoft.Maui.Devices.Sensors.CompassChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData +Microsoft.Maui.Devices.Sensors.CompassData.CompassData() -> void +Microsoft.Maui.Devices.Sensors.CompassData.CompassData(double headingMagneticNorth) -> void +Microsoft.Maui.Devices.Sensors.CompassData.Equals(Microsoft.Maui.Devices.Sensors.CompassData other) -> bool +Microsoft.Maui.Devices.Sensors.CompassData.HeadingMagneticNorth.get -> double +Microsoft.Maui.Devices.Sensors.CompassExtensions +Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Kilometers = 0 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.DistanceUnits.Miles = 1 -> Microsoft.Maui.Devices.Sensors.DistanceUnits +Microsoft.Maui.Devices.Sensors.Geocoding +Microsoft.Maui.Devices.Sensors.GeocodingExtensions +Microsoft.Maui.Devices.Sensors.Geolocation +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Best = 5 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Default = 0 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.High = 4 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Low = 2 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Lowest = 1 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationAccuracy.Medium = 3 -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationExtensions +Microsoft.Maui.Devices.Sensors.GeolocationRequest +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.get -> Microsoft.Maui.Devices.Sensors.GeolocationAccuracy +Microsoft.Maui.Devices.Sensors.GeolocationRequest.DesiredAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest() -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.GeolocationRequest(Microsoft.Maui.Devices.Sensors.GeolocationAccuracy accuracy, System.TimeSpan timeout) -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.GeolocationRequest.RequestFullAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.get -> System.TimeSpan +Microsoft.Maui.Devices.Sensors.GeolocationRequest.Timeout.set -> void +Microsoft.Maui.Devices.Sensors.Gyroscope +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.GyroscopeChangedEventArgs(Microsoft.Maui.Devices.Sensors.GyroscopeData reading) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData +Microsoft.Maui.Devices.Sensors.GyroscopeData.AngularVelocity.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(Microsoft.Maui.Devices.Sensors.GyroscopeData other) -> bool +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData() -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.GyroscopeData.GyroscopeData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IAccelerometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.ShakeDetected -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IAccelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IAccelerometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IBarometer +Microsoft.Maui.Devices.Sensors.IBarometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IBarometer.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.IBarometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IBarometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.ICompass +Microsoft.Maui.Devices.Sensors.ICompass.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.ICompass.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +Microsoft.Maui.Devices.Sensors.ICompass.Stop() -> void +Microsoft.Maui.Devices.Sensors.IGeocoding +Microsoft.Maui.Devices.Sensors.IGeocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Devices.Sensors.IGeolocation +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGeolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +Microsoft.Maui.Devices.Sensors.IGyroscope +Microsoft.Maui.Devices.Sensors.IGyroscope.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IGyroscope.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IGyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IGyroscope.Stop() -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IMagnetometer.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IMagnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IMagnetometer.Stop() -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.IOrientationSensor.ReadingChanged -> System.EventHandler! +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.IOrientationSensor.Stop() -> void +Microsoft.Maui.Devices.Sensors.IPlatformCompass +Microsoft.Maui.Devices.Sensors.IPlatformGeocoding +Microsoft.Maui.Devices.Sensors.Location +Microsoft.Maui.Devices.Sensors.Location.Accuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Accuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Altitude.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Altitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.get -> Microsoft.Maui.Devices.Sensors.AltitudeReferenceSystem +Microsoft.Maui.Devices.Sensors.Location.AltitudeReferenceSystem.set -> void +Microsoft.Maui.Devices.Sensors.Location.Course.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Course.set -> void +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.get -> bool +Microsoft.Maui.Devices.Sensors.Location.IsFromMockProvider.set -> void +Microsoft.Maui.Devices.Sensors.Location.Latitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Latitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.Location() -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, double altitude) -> void +Microsoft.Maui.Devices.Sensors.Location.Location(double latitude, double longitude, System.DateTimeOffset timestamp) -> void +Microsoft.Maui.Devices.Sensors.Location.Longitude.get -> double +Microsoft.Maui.Devices.Sensors.Location.Longitude.set -> void +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.get -> bool +Microsoft.Maui.Devices.Sensors.Location.ReducedAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.Location.Speed.get -> double? +Microsoft.Maui.Devices.Sensors.Location.Speed.set -> void +Microsoft.Maui.Devices.Sensors.Location.Timestamp.get -> System.DateTimeOffset +Microsoft.Maui.Devices.Sensors.Location.Timestamp.set -> void +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.get -> double? +Microsoft.Maui.Devices.Sensors.Location.VerticalAccuracy.set -> void +Microsoft.Maui.Devices.Sensors.LocationExtensions +Microsoft.Maui.Devices.Sensors.Magnetometer +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.MagnetometerChangedEventArgs(Microsoft.Maui.Devices.Sensors.MagnetometerData reading) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData +Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(Microsoft.Maui.Devices.Sensors.MagnetometerData other) -> bool +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagneticField.get -> System.Numerics.Vector3 +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData() -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(double x, double y, double z) -> void +Microsoft.Maui.Devices.Sensors.MagnetometerData.MagnetometerData(float x, float y, float z) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensor +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.OrientationSensorChangedEventArgs(Microsoft.Maui.Devices.Sensors.OrientationSensorData reading) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorChangedEventArgs.Reading.get -> Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(Microsoft.Maui.Devices.Sensors.OrientationSensorData other) -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorData.Orientation.get -> System.Numerics.Quaternion +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(double x, double y, double z, double w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorData.OrientationSensorData(float x, float y, float z, float w) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsMonitoring.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.IsSupported.get -> bool +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.OrientationSensorImplementation() -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.ReadingChanged -> System.EventHandler? +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +Microsoft.Maui.Devices.Sensors.OrientationSensorImplementation.Stop() -> void +Microsoft.Maui.Devices.Sensors.Placemark +Microsoft.Maui.Devices.Sensors.Placemark.Placemark() -> void +Microsoft.Maui.Devices.Sensors.PlacemarkExtensions +Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Default = 0 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Fastest = 3 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.Game = 2 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Sensors.SensorSpeed.UI = 1 -> Microsoft.Maui.Devices.Sensors.SensorSpeed +Microsoft.Maui.Devices.Vibration +Microsoft.Maui.Devices.VibrationExtensions +Microsoft.Maui.Media.IMediaPicker +Microsoft.Maui.Media.IMediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IMediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IMediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IPlatformScreenshot +Microsoft.Maui.Media.IScreenshot +Microsoft.Maui.Media.IScreenshot.CaptureAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshot.IsCaptureSupported.get -> bool +Microsoft.Maui.Media.IScreenshotResult +Microsoft.Maui.Media.IScreenshotResult.CopyToAsync(System.IO.Stream! destination, Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Height.get -> int +Microsoft.Maui.Media.IScreenshotResult.OpenReadAsync(Microsoft.Maui.Media.ScreenshotFormat format = Microsoft.Maui.Media.ScreenshotFormat.Png, int quality = 100) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.IScreenshotResult.Width.get -> int +Microsoft.Maui.Media.ITextToSpeech +Microsoft.Maui.Media.ITextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Media.ITextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options = null, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Maui.Media.Locale +Microsoft.Maui.Media.Locale.Country.get -> string! +Microsoft.Maui.Media.Locale.Id.get -> string! +Microsoft.Maui.Media.Locale.Language.get -> string! +Microsoft.Maui.Media.Locale.Name.get -> string! +Microsoft.Maui.Media.MediaPicker +Microsoft.Maui.Media.MediaPickerOptions +Microsoft.Maui.Media.MediaPickerOptions.MediaPickerOptions() -> void +Microsoft.Maui.Media.MediaPickerOptions.Title.get -> string? +Microsoft.Maui.Media.MediaPickerOptions.Title.set -> void +Microsoft.Maui.Media.Screenshot +Microsoft.Maui.Media.ScreenshotExtensions +Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Jpeg = 1 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.ScreenshotFormat.Png = 0 -> Microsoft.Maui.Media.ScreenshotFormat +Microsoft.Maui.Media.SpeechOptions +Microsoft.Maui.Media.SpeechOptions.Locale.get -> Microsoft.Maui.Media.Locale? +Microsoft.Maui.Media.SpeechOptions.Locale.set -> void +Microsoft.Maui.Media.SpeechOptions.Pitch.get -> float? +Microsoft.Maui.Media.SpeechOptions.Pitch.set -> void +Microsoft.Maui.Media.SpeechOptions.SpeechOptions() -> void +Microsoft.Maui.Media.SpeechOptions.Volume.get -> float? +Microsoft.Maui.Media.SpeechOptions.Volume.set -> void +Microsoft.Maui.Media.TextToSpeech +Microsoft.Maui.Media.UnitConverters +Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Bluetooth = 1 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Cellular = 2 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Ethernet = 3 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.Unknown = 0 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.ConnectionProfile.WiFi = 4 -> Microsoft.Maui.Networking.ConnectionProfile +Microsoft.Maui.Networking.Connectivity +Microsoft.Maui.Networking.ConnectivityChangedEventArgs +Microsoft.Maui.Networking.ConnectivityChangedEventArgs.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.IConnectivity +Microsoft.Maui.Networking.IConnectivity.ConnectivityChanged -> System.EventHandler +Microsoft.Maui.Networking.IConnectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.ConstrainedInternet = 3 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Internet = 4 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Local = 2 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.None = 1 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Networking.NetworkAccess.Unknown = 0 -> Microsoft.Maui.Networking.NetworkAccess +Microsoft.Maui.Storage.FileBase +Microsoft.Maui.Storage.FileBase.ContentType.get -> string! +Microsoft.Maui.Storage.FileBase.ContentType.set -> void +Microsoft.Maui.Storage.FileBase.FileBase(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileBase.FileName.get -> string! +Microsoft.Maui.Storage.FileBase.FileName.set -> void +Microsoft.Maui.Storage.FileBase.FullPath.get -> string! +Microsoft.Maui.Storage.FileBase.OpenReadAsync() -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FilePicker +Microsoft.Maui.Storage.FilePickerFileType +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType() -> void +Microsoft.Maui.Storage.FilePickerFileType.FilePickerFileType(System.Collections.Generic.IDictionary!>! fileTypes) -> void +Microsoft.Maui.Storage.FilePickerFileType.Value.get -> System.Collections.Generic.IEnumerable! +Microsoft.Maui.Storage.FileResult +Microsoft.Maui.Storage.FileResult.FileResult(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath) -> void +Microsoft.Maui.Storage.FileResult.FileResult(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.FileSystem +Microsoft.Maui.Storage.FileSystemImplementation +Microsoft.Maui.Storage.FileSystemImplementation.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.FileSystemImplementation.CacheDirectory.get -> string! +Microsoft.Maui.Storage.FileSystemImplementation.FileSystemImplementation() -> void +Microsoft.Maui.Storage.FileSystemImplementation.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker +Microsoft.Maui.Storage.IFilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +Microsoft.Maui.Storage.IFileSystem +Microsoft.Maui.Storage.IFileSystem.AppDataDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IFileSystem.CacheDirectory.get -> string! +Microsoft.Maui.Storage.IFileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.IPlatformSecureStorage +Microsoft.Maui.Storage.IPreferences +Microsoft.Maui.Storage.IPreferences.Clear(string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.ContainsKey(string! key, string? sharedName = null) -> bool +Microsoft.Maui.Storage.IPreferences.Get(string! key, T defaultValue, string? sharedName = null) -> T +Microsoft.Maui.Storage.IPreferences.Remove(string! key, string? sharedName = null) -> void +Microsoft.Maui.Storage.IPreferences.Set(string! key, T value, string? sharedName = null) -> void +Microsoft.Maui.Storage.ISecureStorage +Microsoft.Maui.Storage.ISecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.ISecureStorage.Remove(string! key) -> bool +Microsoft.Maui.Storage.ISecureStorage.RemoveAll() -> void +Microsoft.Maui.Storage.ISecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +Microsoft.Maui.Storage.PickOptions +Microsoft.Maui.Storage.PickOptions.FileTypes.get -> Microsoft.Maui.Storage.FilePickerFileType? +Microsoft.Maui.Storage.PickOptions.FileTypes.set -> void +Microsoft.Maui.Storage.PickOptions.PickerTitle.get -> string? +Microsoft.Maui.Storage.PickOptions.PickerTitle.set -> void +Microsoft.Maui.Storage.PickOptions.PickOptions() -> void +Microsoft.Maui.Storage.Preferences +Microsoft.Maui.Storage.ReadOnlyFile +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(Microsoft.Maui.Storage.FileBase! file) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath) -> void +Microsoft.Maui.Storage.ReadOnlyFile.ReadOnlyFile(string! fullPath, string! contentType) -> void +Microsoft.Maui.Storage.SecureStorage +Microsoft.Maui.Storage.SecureStorageExtensions +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.EnsureDeclared() -> void +override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.ShouldShowRationale() -> bool +override Microsoft.Maui.Devices.BatteryInfoChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.DeviceIdiom.GetHashCode() -> int +override Microsoft.Maui.Devices.DevicePlatform.GetHashCode() -> int +override Microsoft.Maui.Devices.DisplayInfo.GetHashCode() -> int +override Microsoft.Maui.Devices.EnergySaverStatusChangedEventArgs.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.AccelerometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.AccelerometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.AccelerometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.BarometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.BarometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.BarometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.CompassData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.CompassData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.CompassData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.GyroscopeData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.GyroscopeData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.GyroscopeData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.MagnetometerData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.MagnetometerData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.MagnetometerData.ToString() -> string! +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.Equals(object? obj) -> bool +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.GetHashCode() -> int +override Microsoft.Maui.Devices.Sensors.OrientationSensorData.ToString() -> string! +static Microsoft.Maui.Accessibility.SemanticScreenReader.Announce(string! text) -> void +static Microsoft.Maui.Accessibility.SemanticScreenReader.Default.get -> Microsoft.Maui.Accessibility.ISemanticScreenReader! +static Microsoft.Maui.ApplicationModel.AppActions.Current.get -> Microsoft.Maui.ApplicationModel.IAppActions! +static Microsoft.Maui.ApplicationModel.AppActions.GetAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.AppActions.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.AppActions.OnAppAction -> System.EventHandler? +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(params Microsoft.Maui.ApplicationModel.AppAction![]! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppActions.SetAsync(System.Collections.Generic.IEnumerable! actions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.AppInfo.BuildString.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.Current.get -> Microsoft.Maui.ApplicationModel.IAppInfo! +static Microsoft.Maui.ApplicationModel.AppInfo.Name.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackageName.get -> string! +static Microsoft.Maui.ApplicationModel.AppInfo.PackagingModel.get -> Microsoft.Maui.ApplicationModel.AppPackagingModel +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedLayoutDirection.get -> Microsoft.Maui.ApplicationModel.LayoutDirection +static Microsoft.Maui.ApplicationModel.AppInfo.RequestedTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme +static Microsoft.Maui.ApplicationModel.AppInfo.ShowSettingsUI() -> void +static Microsoft.Maui.ApplicationModel.AppInfo.Version.get -> System.Version! +static Microsoft.Maui.ApplicationModel.AppInfo.VersionString.get -> string! +static Microsoft.Maui.ApplicationModel.Browser.Default.get -> Microsoft.Maui.ApplicationModel.IBrowser! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Browser.OpenAsync(System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, string! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.BrowserExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IBrowser! browser, System.Uri! uri, Microsoft.Maui.ApplicationModel.BrowserLaunchMode launchMode) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IContacts! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.ApplicationModel.Communication.Contacts.PickContactAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.EmailMessage! message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.ComposeAsync(string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Email.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IEmail! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.EmailExtensions.ComposeAsync(this Microsoft.Maui.ApplicationModel.Communication.IEmail! email, string! subject, string! body, params string![]! to) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Current.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Default.get -> Microsoft.Maui.ApplicationModel.Communication.IPhoneDialer! +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.IsSupported.get -> bool +static Microsoft.Maui.ApplicationModel.Communication.PhoneDialer.Open(string! number) -> void +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.ComposeAsync(Microsoft.Maui.ApplicationModel.Communication.SmsMessage? message) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Communication.Sms.Default.get -> Microsoft.Maui.ApplicationModel.Communication.ISms! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.ClipboardContentChanged -> System.EventHandler! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IClipboard! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.GetTextAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.HasText.get -> bool +static Microsoft.Maui.ApplicationModel.DataTransfer.Clipboard.SetTextAsync(string? text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.Default.get -> Microsoft.Maui.ApplicationModel.DataTransfer.IShare! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(Microsoft.Maui.ApplicationModel.DataTransfer.ShareTextRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.Share.RequestAsync(string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareExtensions.RequestAsync(this Microsoft.Maui.ApplicationModel.DataTransfer.IShare! share, string! text, string! title) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest.explicit operator Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest!(Microsoft.Maui.ApplicationModel.DataTransfer.ShareFileRequest! request) -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareMultipleFilesRequest! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.CanOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.Default.get -> Microsoft.Maui.ApplicationModel.ILauncher! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(Microsoft.Maui.ApplicationModel.OpenFileRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.OpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Launcher.TryOpenAsync(System.Uri! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.CanOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.LauncherExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.ILauncher! launcher, string! uri) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MainThread.IsMainThread.get -> bool +static Microsoft.Maui.ApplicationModel.Map.Default.get -> Microsoft.Maui.ApplicationModel.IMap! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.OpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(double latitude, double longitude, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.Map.TryOpenAsync(Microsoft.Maui.Devices.Sensors.Placemark! placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.OpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, double latitude, double longitude) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Location! location, Microsoft.Maui.ApplicationModel.MapLaunchOptions! options) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.MapExtensions.TryOpenAsync(this Microsoft.Maui.ApplicationModel.IMap! map, Microsoft.Maui.Devices.Sensors.Placemark! placemark) -> System.Threading.Tasks.Task! +static Microsoft.Maui.ApplicationModel.VersionTracking.BuildHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentBuild.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.CurrentVersion.get -> string! +static Microsoft.Maui.ApplicationModel.VersionTracking.Default.get -> Microsoft.Maui.ApplicationModel.IVersionTracking! +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.FirstInstalledVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchEver.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForBuild(string! build) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentBuild.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForCurrentVersion.get -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.IsFirstLaunchForVersion(string! version) -> bool +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousBuild.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.PreviousVersion.get -> string? +static Microsoft.Maui.ApplicationModel.VersionTracking.Track() -> void +static Microsoft.Maui.ApplicationModel.VersionTracking.VersionHistory.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.AppleSignInAuthenticator.Options? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.AppleSignInAuthenticator.Default.get -> Microsoft.Maui.Authentication.IAppleSignInAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(Microsoft.Maui.Authentication.WebAuthenticatorOptions! webAuthenticatorOptions) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.AuthenticateAsync(System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Authentication.WebAuthenticator.Default.get -> Microsoft.Maui.Authentication.IWebAuthenticator! +static Microsoft.Maui.Authentication.WebAuthenticatorExtensions.AuthenticateAsync(this Microsoft.Maui.Authentication.IWebAuthenticator! webAuthenticator, System.Uri! url, System.Uri! callbackUrl) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Battery.BatteryInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.ChargeLevel.get -> double +static Microsoft.Maui.Devices.Battery.Default.get -> Microsoft.Maui.Devices.IBattery! +static Microsoft.Maui.Devices.Battery.EnergySaverStatus.get -> Microsoft.Maui.Devices.EnergySaverStatus +static Microsoft.Maui.Devices.Battery.EnergySaverStatusChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Battery.PowerSource.get -> Microsoft.Maui.Devices.BatteryPowerSource +static Microsoft.Maui.Devices.Battery.State.get -> Microsoft.Maui.Devices.BatteryState +static Microsoft.Maui.Devices.DeviceDisplay.Current.get -> Microsoft.Maui.Devices.IDeviceDisplay! +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.get -> bool +static Microsoft.Maui.Devices.DeviceDisplay.KeepScreenOn.set -> void +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfo.get -> Microsoft.Maui.Devices.DisplayInfo +static Microsoft.Maui.Devices.DeviceDisplay.MainDisplayInfoChanged -> System.EventHandler! +static Microsoft.Maui.Devices.DeviceIdiom.Desktop.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.operator !=(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.operator ==(Microsoft.Maui.Devices.DeviceIdiom left, Microsoft.Maui.Devices.DeviceIdiom right) -> bool +static Microsoft.Maui.Devices.DeviceIdiom.Phone.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Tablet.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.TV.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Unknown.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceIdiom.Watch.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Current.get -> Microsoft.Maui.Devices.IDeviceInfo! +static Microsoft.Maui.Devices.DeviceInfo.DeviceType.get -> Microsoft.Maui.Devices.DeviceType +static Microsoft.Maui.Devices.DeviceInfo.Idiom.get -> Microsoft.Maui.Devices.DeviceIdiom +static Microsoft.Maui.Devices.DeviceInfo.Manufacturer.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Model.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Name.get -> string! +static Microsoft.Maui.Devices.DeviceInfo.Platform.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DeviceInfo.Version.get -> System.Version! +static Microsoft.Maui.Devices.DeviceInfo.VersionString.get -> string! +static Microsoft.Maui.Devices.DevicePlatform.Android.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.iOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.MacCatalyst.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.macOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.operator !=(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.operator ==(Microsoft.Maui.Devices.DevicePlatform left, Microsoft.Maui.Devices.DevicePlatform right) -> bool +static Microsoft.Maui.Devices.DevicePlatform.Tizen.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.tvOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.Unknown.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.UWP.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.watchOS.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DevicePlatform.WinUI.get -> Microsoft.Maui.Devices.DevicePlatform +static Microsoft.Maui.Devices.DisplayInfo.operator !=(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.DisplayInfo.operator ==(Microsoft.Maui.Devices.DisplayInfo left, Microsoft.Maui.Devices.DisplayInfo right) -> bool +static Microsoft.Maui.Devices.Flashlight.Default.get -> Microsoft.Maui.Devices.IFlashlight! +static Microsoft.Maui.Devices.Flashlight.TurnOffAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Flashlight.TurnOnAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.HapticFeedback.Default.get -> Microsoft.Maui.Devices.IHapticFeedback! +static Microsoft.Maui.Devices.HapticFeedback.Perform(Microsoft.Maui.Devices.HapticFeedbackType type = Microsoft.Maui.Devices.HapticFeedbackType.Click) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Default.get -> Microsoft.Maui.Devices.Sensors.IAccelerometer! +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Accelerometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.ShakeDetected -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Accelerometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Accelerometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator !=(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.AccelerometerData.operator ==(Microsoft.Maui.Devices.Sensors.AccelerometerData left, Microsoft.Maui.Devices.Sensors.AccelerometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.Default.get -> Microsoft.Maui.Devices.Sensors.IBarometer! +static Microsoft.Maui.Devices.Sensors.Barometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Barometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Barometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Barometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.BarometerData.operator !=(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.BarometerData.operator ==(Microsoft.Maui.Devices.Sensors.BarometerData left, Microsoft.Maui.Devices.Sensors.BarometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.Compass.Default.get -> Microsoft.Maui.Devices.Sensors.ICompass! +static Microsoft.Maui.Devices.Sensors.Compass.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Compass.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter) -> void +static Microsoft.Maui.Devices.Sensors.Compass.Stop() -> void +static Microsoft.Maui.Devices.Sensors.CompassData.operator !=(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.CompassData.operator ==(Microsoft.Maui.Devices.Sensors.CompassData left, Microsoft.Maui.Devices.Sensors.CompassData right) -> bool +static Microsoft.Maui.Devices.Sensors.Geocoding.Default.get -> Microsoft.Maui.Devices.Sensors.IGeocoding! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetLocationsAsync(string! address) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(double latitude, double longitude) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geocoding.GetPlacemarksAsync(Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.GeocodingExtensions.GetPlacemarksAsync(this Microsoft.Maui.Devices.Sensors.IGeocoding! geocoding, Microsoft.Maui.Devices.Sensors.Location! location) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Devices.Sensors.Geolocation.Default.get -> Microsoft.Maui.Devices.Sensors.IGeolocation! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLastKnownLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Geolocation.GetLocationAsync(Microsoft.Maui.Devices.Sensors.GeolocationRequest! request, System.Threading.CancellationToken cancelToken) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.GeolocationExtensions.GetLocationAsync(this Microsoft.Maui.Devices.Sensors.IGeolocation! geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest! request) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Default.get -> Microsoft.Maui.Devices.Sensors.IGyroscope! +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Gyroscope.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Gyroscope.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Gyroscope.Stop() -> void +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator !=(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.GyroscopeData.operator ==(Microsoft.Maui.Devices.Sensors.GyroscopeData left, Microsoft.Maui.Devices.Sensors.GyroscopeData right) -> bool +static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +static Microsoft.Maui.Devices.Sensors.Magnetometer.Default.get -> Microsoft.Maui.Devices.Sensors.IMagnetometer! +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.Magnetometer.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.Magnetometer.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.Magnetometer.Stop() -> void +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator !=(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.MagnetometerData.operator ==(Microsoft.Maui.Devices.Sensors.MagnetometerData left, Microsoft.Maui.Devices.Sensors.MagnetometerData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Default.get -> Microsoft.Maui.Devices.Sensors.IOrientationSensor! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsMonitoring.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.IsSupported.get -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensor.ReadingChanged -> System.EventHandler! +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Start(Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed) -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensor.Stop() -> void +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator !=(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Sensors.OrientationSensorData.operator ==(Microsoft.Maui.Devices.Sensors.OrientationSensorData left, Microsoft.Maui.Devices.Sensors.OrientationSensorData right) -> bool +static Microsoft.Maui.Devices.Vibration.Cancel() -> void +static Microsoft.Maui.Devices.Vibration.Default.get -> Microsoft.Maui.Devices.IVibration! +static Microsoft.Maui.Devices.Vibration.Vibrate() -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(double duration) -> void +static Microsoft.Maui.Devices.Vibration.Vibrate(System.TimeSpan duration) -> void +static Microsoft.Maui.Devices.VibrationExtensions.Vibrate(this Microsoft.Maui.Devices.IVibration! vibration, double duration) -> void +static Microsoft.Maui.Media.MediaPicker.CapturePhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.CaptureVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.Default.get -> Microsoft.Maui.Media.IMediaPicker! +static Microsoft.Maui.Media.MediaPicker.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.MediaPicker.PickPhotoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.MediaPicker.PickVideoAsync(Microsoft.Maui.Media.MediaPickerOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.CaptureAsync() -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.Screenshot.Default.get -> Microsoft.Maui.Media.IScreenshot! +static Microsoft.Maui.Media.Screenshot.IsCaptureSupported.get -> bool +static Microsoft.Maui.Media.TextToSpeech.Default.get -> Microsoft.Maui.Media.ITextToSpeech! +static Microsoft.Maui.Media.TextToSpeech.GetLocalesAsync() -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, Microsoft.Maui.Media.SpeechOptions? options, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.TextToSpeech.SpeakAsync(string! text, System.Threading.CancellationToken cancelToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Media.UnitConverters.AtmospheresToPascals(double atm) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToFahrenheit(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CelsiusToKelvin(double celsius) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToKilometers(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.CoordinatesToMiles(double lat1, double lon1, double lat2, double lon2) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToHertz(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesPerSecondToRadiansPerSecond(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.DegreesToRadians(double degrees) -> double +static Microsoft.Maui.Media.UnitConverters.FahrenheitToCelsius(double fahrenheit) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToKilopascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HectopascalsToPascals(double hpa) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToDegreesPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.HertzToRadiansPerSecond(double hertz) -> double +static Microsoft.Maui.Media.UnitConverters.InternationalFeetToMeters(double internationalFeet) -> double +static Microsoft.Maui.Media.UnitConverters.KelvinToCelsius(double kelvin) -> double +static Microsoft.Maui.Media.UnitConverters.KilogramsToPounds(double kilograms) -> double +static Microsoft.Maui.Media.UnitConverters.KilometersToMiles(double kilometers) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToHectopascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.KilopascalsToPascals(double kpa) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToInternationalFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MetersToUSSurveyFeet(double meters) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToKilometers(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.MilesToMeters(double miles) -> double +static Microsoft.Maui.Media.UnitConverters.PascalsToAtmospheres(double pascals) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToKilograms(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.PoundsToStones(double pounds) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToDegreesPerSecond(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansPerSecondToHertz(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.RadiansToDegrees(double radians) -> double +static Microsoft.Maui.Media.UnitConverters.StonesToPounds(double stones) -> double +static Microsoft.Maui.Media.UnitConverters.USSurveyFeetToMeters(double usFeet) -> double +static Microsoft.Maui.Networking.Connectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable! +static Microsoft.Maui.Networking.Connectivity.ConnectivityChanged -> System.EventHandler! +static Microsoft.Maui.Networking.Connectivity.Current.get -> Microsoft.Maui.Networking.IConnectivity! +static Microsoft.Maui.Networking.Connectivity.NetworkAccess.get -> Microsoft.Maui.Networking.NetworkAccess +static Microsoft.Maui.Storage.FilePicker.Default.get -> Microsoft.Maui.Storage.IFilePicker! +static Microsoft.Maui.Storage.FilePicker.PickAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FilePicker.PickMultipleAsync(Microsoft.Maui.Storage.PickOptions? options = null) -> System.Threading.Tasks.Task!>! +static Microsoft.Maui.Storage.FileSystem.AppDataDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.AppPackageFileExistsAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.FileSystem.CacheDirectory.get -> string! +static Microsoft.Maui.Storage.FileSystem.Current.get -> Microsoft.Maui.Storage.IFileSystem! +static Microsoft.Maui.Storage.FileSystem.OpenAppPackageFileAsync(string! filename) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.PickOptions.Default.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.PickOptions.Images.get -> Microsoft.Maui.Storage.PickOptions! +static Microsoft.Maui.Storage.Preferences.Clear() -> void +static Microsoft.Maui.Storage.Preferences.Clear(string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key) -> bool +static Microsoft.Maui.Storage.Preferences.ContainsKey(string! key, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Default.get -> Microsoft.Maui.Storage.IPreferences! +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, bool defaultValue, string? sharedName) -> bool +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, double defaultValue, string? sharedName) -> double +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, float defaultValue, string? sharedName) -> float +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, int defaultValue, string? sharedName) -> int +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, long defaultValue, string? sharedName) -> long +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, string? defaultValue, string? sharedName) -> string? +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Get(string! key, System.DateTime defaultValue, string? sharedName) -> System.DateTime +static Microsoft.Maui.Storage.Preferences.Remove(string! key) -> void +static Microsoft.Maui.Storage.Preferences.Remove(string! key, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, bool value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, double value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, float value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, int value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, long value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, string? value, string? sharedName) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value) -> void +static Microsoft.Maui.Storage.Preferences.Set(string! key, System.DateTime value, string? sharedName) -> void +static Microsoft.Maui.Storage.SecureStorage.Default.get -> Microsoft.Maui.Storage.ISecureStorage! +static Microsoft.Maui.Storage.SecureStorage.GetAsync(string! key) -> System.Threading.Tasks.Task! +static Microsoft.Maui.Storage.SecureStorage.Remove(string! key) -> bool +static Microsoft.Maui.Storage.SecureStorage.RemoveAll() -> void +static Microsoft.Maui.Storage.SecureStorage.SetAsync(string! key, string! value) -> System.Threading.Tasks.Task! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Images -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Jpeg -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Pdf -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Png -> Microsoft.Maui.Storage.FilePickerFileType! +static readonly Microsoft.Maui.Storage.FilePickerFileType.Videos -> Microsoft.Maui.Storage.FilePickerFileType! +virtual Microsoft.Maui.Storage.FilePickerFileType.GetPlatformFileType(Microsoft.Maui.Devices.DevicePlatform platform) -> System.Collections.Generic.IEnumerable! +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~abstract Microsoft.Maui.ApplicationModel.Permissions.BasePermission.RequestAsync() -> System.Threading.Tasks.Task +~Microsoft.Maui.ApplicationModel.Communication.Contact.Contact(string id, string namePrefix, string givenName, string middleName, string familyName, string nameSuffix, System.Collections.Generic.IEnumerable phones, System.Collections.Generic.IEnumerable email, string displayName = null) -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.DisplayName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Emails.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.FamilyName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.GivenName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.Id.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.MiddleName.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NamePrefix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.get -> string +~Microsoft.Maui.ApplicationModel.Communication.Contact.NameSuffix.set -> void +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.get -> System.Collections.Generic.List +~Microsoft.Maui.ApplicationModel.Communication.Contact.Phones.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ContactEmail(string emailAddress) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactEmail.EmailAddress.set -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ContactPhone(string phoneNumber) -> void +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.get -> string +~Microsoft.Maui.ApplicationModel.Communication.ContactPhone.PhoneNumber.set -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotEnabledException.FeatureNotEnabledException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message) -> void +~Microsoft.Maui.ApplicationModel.FeatureNotSupportedException.FeatureNotSupportedException(string message, System.Exception innerException) -> void +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.get -> string +~Microsoft.Maui.ApplicationModel.MapLaunchOptions.Name.set -> void +~Microsoft.Maui.ApplicationModel.PermissionException.PermissionException(string message) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.AccessToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Get(string key) -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.IdToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.get -> System.Collections.Generic.Dictionary +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Properties.set -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.Put(string key, string value) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.RefreshToken.get -> string +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Collections.Generic.IDictionary properties) -> void +~Microsoft.Maui.Authentication.WebAuthenticatorResult.WebAuthenticatorResult(System.Uri uri) -> void +~Microsoft.Maui.Devices.Sensors.Location.Location(Microsoft.Maui.Devices.Sensors.Location point) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.AdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.CountryName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.FeatureName.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Locality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Location.get -> Microsoft.Maui.Devices.Sensors.Location +~Microsoft.Maui.Devices.Sensors.Placemark.Location.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Placemark(Microsoft.Maui.Devices.Sensors.Placemark placemark) -> void +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.PostalCode.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubAdminArea.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubLocality.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.SubThoroughfare.set -> void +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.get -> string +~Microsoft.Maui.Devices.Sensors.Placemark.Thoroughfare.set -> void +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ConnectivityChangedEventArgs(Microsoft.Maui.Networking.NetworkAccess access, System.Collections.Generic.IEnumerable connectionProfiles) -> void +~Microsoft.Maui.Networking.IConnectivity.ConnectionProfiles.get -> System.Collections.Generic.IEnumerable +~override Microsoft.Maui.ApplicationModel.Communication.Contact.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactEmail.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Communication.ContactPhone.ToString() -> string +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.CheckStatusAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.ApplicationModel.Permissions.BasePlatformPermission.RequestAsync() -> System.Threading.Tasks.Task +~override Microsoft.Maui.Devices.DeviceIdiom.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DeviceIdiom.ToString() -> string +~override Microsoft.Maui.Devices.DevicePlatform.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DevicePlatform.ToString() -> string +~override Microsoft.Maui.Devices.DisplayInfo.Equals(object obj) -> bool +~override Microsoft.Maui.Devices.DisplayInfo.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.GeolocationRequest.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Location.ToString() -> string +~override Microsoft.Maui.Devices.Sensors.Placemark.ToString() -> string +~override Microsoft.Maui.Networking.ConnectivityChangedEventArgs.ToString() -> string +~static Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(System.Action action) -> void +~static Microsoft.Maui.ApplicationModel.MainThread.GetMainThreadSynchronizationContextAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Action action) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func> funcTask) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.MainThread.InvokeOnMainThreadAsync(System.Func func) -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.CheckStatusAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.RequestAsync() -> System.Threading.Tasks.Task +~static Microsoft.Maui.ApplicationModel.Permissions.ShouldShowRationale() -> bool +~static Microsoft.Maui.Devices.DeviceIdiom.Create(string deviceIdiom) -> Microsoft.Maui.Devices.DeviceIdiom +~static Microsoft.Maui.Devices.DevicePlatform.Create(string devicePlatform) -> Microsoft.Maui.Devices.DevicePlatform +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(double latitudeStart, double longitudeStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.Location.CalculateDistance(Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, double latitudeEnd, double longitudeEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.CalculateDistance(this Microsoft.Maui.Devices.Sensors.Location locationStart, Microsoft.Maui.Devices.Sensors.Location locationEnd, Microsoft.Maui.Devices.Sensors.DistanceUnits units) -> double +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.LocationExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Location location, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark) -> System.Threading.Tasks.Task +~static Microsoft.Maui.Devices.Sensors.PlacemarkExtensions.OpenMapsAsync(this Microsoft.Maui.Devices.Sensors.Placemark placemark, Microsoft.Maui.ApplicationModel.MapLaunchOptions options) -> System.Threading.Tasks.Task diff --git a/src/Essentials/src/PublicAPI/netstandard/PublicAPI.Unshipped.txt b/src/Essentials/src/PublicAPI/netstandard/PublicAPI.Unshipped.txt new file mode 100644 index 000000000000..ab058de62d44 --- /dev/null +++ b/src/Essentials/src/PublicAPI/netstandard/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Essentials/src/Screenshot/Screenshot.ios.cs b/src/Essentials/src/Screenshot/Screenshot.ios.cs index 42d810e84b07..cfbfe16218f9 100644 --- a/src/Essentials/src/Screenshot/Screenshot.ios.cs +++ b/src/Essentials/src/Screenshot/Screenshot.ios.cs @@ -22,9 +22,9 @@ partial class ScreenshotImplementation : IPlatformScreenshot, IScreenshot public Task CaptureAsync() { var scenes = UIApplication.SharedApplication.ConnectedScenes; -//#pragma warning disable CA1416 // Known false positive with Lambda expression + //#pragma warning disable CA1416 // Known false positive with Lambda expression var currentScene = scenes.ToArray().Where(n => n.ActivationState == UISceneActivationState.ForegroundActive).FirstOrDefault(); -//#pragma warning restore CA1416 + //#pragma warning restore CA1416 if (currentScene == null) throw new InvalidOperationException("Unable to find current scene."); diff --git a/src/Essentials/src/Types/LocationExtensions.ios.tvos.watchos.macos.cs b/src/Essentials/src/Types/LocationExtensions.ios.tvos.watchos.macos.cs index f6bb6ac0b2a3..3ee9d81ef9d6 100644 --- a/src/Essentials/src/Types/LocationExtensions.ios.tvos.watchos.macos.cs +++ b/src/Essentials/src/Types/LocationExtensions.ios.tvos.watchos.macos.cs @@ -19,7 +19,7 @@ internal static Location ToLocation(this CLPlacemark placemark) => Altitude = placemark.Location.Altitude, AltitudeReferenceSystem = AltitudeReferenceSystem.Geoid, Timestamp = DateTimeOffset.UtcNow, - ReducedAccuracy = false, + ReducedAccuracy = false, }; internal static IEnumerable ToLocations(this IEnumerable placemarks) => diff --git a/src/Essentials/src/Types/Shared/Exceptions.shared.cs b/src/Essentials/src/Types/Shared/Exceptions.shared.cs index 3788a8a42854..c8e39fe847e3 100644 --- a/src/Essentials/src/Types/Shared/Exceptions.shared.cs +++ b/src/Essentials/src/Types/Shared/Exceptions.shared.cs @@ -4,7 +4,7 @@ namespace Microsoft.Maui.ApplicationModel { static class ExceptionUtils { -#if (NETSTANDARD || !PLATFORM) || NET6_0 +#if (NETSTANDARD || !PLATFORM) || NET6_0_OR_GREATER internal static NotImplementedInReferenceAssemblyException NotSupportedOrImplementedException => new NotImplementedInReferenceAssemblyException(); #else diff --git a/src/Essentials/test/DeviceTests/Essentials.DeviceTests.csproj b/src/Essentials/test/DeviceTests/Essentials.DeviceTests.csproj index 80ac8e4983f3..85a1710bbc19 100644 --- a/src/Essentials/test/DeviceTests/Essentials.DeviceTests.csproj +++ b/src/Essentials/test/DeviceTests/Essentials.DeviceTests.csproj @@ -11,8 +11,27 @@ Essentials Tests com.microsoft.maui.essentials.devicetests + CD693923-B3C2-4043-B044-F070046D2DAF 1 - 1.0.1.0 + 1.0 + + + + + + + + + + @@ -21,6 +40,7 @@ + diff --git a/src/Essentials/test/DeviceTests/Platforms/Windows/App.xaml.cs b/src/Essentials/test/DeviceTests/Platforms/Windows/App.xaml.cs index 2298dcdec404..b01ef8aa224b 100644 --- a/src/Essentials/test/DeviceTests/Platforms/Windows/App.xaml.cs +++ b/src/Essentials/test/DeviceTests/Platforms/Windows/App.xaml.cs @@ -8,23 +8,23 @@ namespace Microsoft.Maui.Essentials.DeviceTests.WinUI { - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - public partial class App : MiddleApp - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } - } + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + public partial class App : MiddleApp + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + } + } - public class MiddleApp : MauiWinUIApplication - { + public class MiddleApp : MauiWinUIApplication + { protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); } } diff --git a/src/Essentials/test/DeviceTests/Platforms/Windows/AppBundleFile.txt b/src/Essentials/test/DeviceTests/Platforms/Windows/AppBundleFile.txt deleted file mode 100644 index 0ca24c9ce251..000000000000 --- a/src/Essentials/test/DeviceTests/Platforms/Windows/AppBundleFile.txt +++ /dev/null @@ -1 +0,0 @@ -This file was in the app bundle. \ No newline at end of file diff --git a/src/Essentials/test/DeviceTests/Platforms/Windows/AppBundleFile_NoExtension b/src/Essentials/test/DeviceTests/Platforms/Windows/AppBundleFile_NoExtension deleted file mode 100644 index 0ca24c9ce251..000000000000 --- a/src/Essentials/test/DeviceTests/Platforms/Windows/AppBundleFile_NoExtension +++ /dev/null @@ -1 +0,0 @@ -This file was in the app bundle. \ No newline at end of file diff --git a/src/Essentials/test/DeviceTests/Platforms/Windows/Folder/AppBundleFile_Nested.txt b/src/Essentials/test/DeviceTests/Platforms/Windows/Folder/AppBundleFile_Nested.txt deleted file mode 100644 index 0ca24c9ce251..000000000000 --- a/src/Essentials/test/DeviceTests/Platforms/Windows/Folder/AppBundleFile_Nested.txt +++ /dev/null @@ -1 +0,0 @@ -This file was in the app bundle. \ No newline at end of file diff --git a/src/Essentials/test/DeviceTests/Platforms/Windows/Package.appxmanifest b/src/Essentials/test/DeviceTests/Platforms/Windows/Package.appxmanifest index 520d22301bb6..afa2dcd56da0 100644 --- a/src/Essentials/test/DeviceTests/Platforms/Windows/Package.appxmanifest +++ b/src/Essentials/test/DeviceTests/Platforms/Windows/Package.appxmanifest @@ -1,20 +1,16 @@  - - + - Essentials Tests + $placeholder$ Microsoft - appiconStoreLogo.png + $placeholder$.png @@ -23,30 +19,19 @@ - + - + - - - - - - - + DisplayName="$placeholder$" + Description="$placeholder$" + Square150x150Logo="$placeholder$.png" + Square44x44Logo="$placeholder$.png" + BackgroundColor="transparent"> + + diff --git a/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/AppBundleFile.txt b/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/AppBundleFile.txt deleted file mode 100644 index 0ca24c9ce251..000000000000 --- a/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/AppBundleFile.txt +++ /dev/null @@ -1 +0,0 @@ -This file was in the app bundle. \ No newline at end of file diff --git a/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/AppBundleFile_NoExtension b/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/AppBundleFile_NoExtension deleted file mode 100644 index 0ca24c9ce251..000000000000 --- a/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/AppBundleFile_NoExtension +++ /dev/null @@ -1 +0,0 @@ -This file was in the app bundle. \ No newline at end of file diff --git a/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/Folder/AppBundleFile_Nested.txt b/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/Folder/AppBundleFile_Nested.txt deleted file mode 100644 index 0ca24c9ce251..000000000000 --- a/src/Essentials/test/DeviceTests/Platforms/iOS/Resources/Folder/AppBundleFile_Nested.txt +++ /dev/null @@ -1 +0,0 @@ -This file was in the app bundle. \ No newline at end of file diff --git a/src/Essentials/test/DeviceTests/Platforms/Android/Assets/AppBundleFile.txt b/src/Essentials/test/DeviceTests/Resources/Raw/AppBundleFile.txt similarity index 100% rename from src/Essentials/test/DeviceTests/Platforms/Android/Assets/AppBundleFile.txt rename to src/Essentials/test/DeviceTests/Resources/Raw/AppBundleFile.txt diff --git a/src/Essentials/test/DeviceTests/Platforms/Android/Assets/AppBundleFile_NoExtension b/src/Essentials/test/DeviceTests/Resources/Raw/AppBundleFile_NoExtension similarity index 100% rename from src/Essentials/test/DeviceTests/Platforms/Android/Assets/AppBundleFile_NoExtension rename to src/Essentials/test/DeviceTests/Resources/Raw/AppBundleFile_NoExtension diff --git a/src/Essentials/test/DeviceTests/Platforms/Android/Assets/Folder/AppBundleFile_Nested.txt b/src/Essentials/test/DeviceTests/Resources/Raw/Folder/AppBundleFile_Nested.txt similarity index 100% rename from src/Essentials/test/DeviceTests/Platforms/Android/Assets/Folder/AppBundleFile_Nested.txt rename to src/Essentials/test/DeviceTests/Resources/Raw/Folder/AppBundleFile_Nested.txt diff --git a/src/Essentials/test/DeviceTests/Tests/Accelerometer_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Accelerometer_Tests.cs index 8be3e200ec80..89fa51d79c09 100644 --- a/src/Essentials/test/DeviceTests/Tests/Accelerometer_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Accelerometer_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - these tests require an accelerometer to be present + [Category("Accelerometer")] public class Accelerometer_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Android/FileProvider_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Android/FileProvider_Tests.cs index 21a9d4b23d47..447a544fbaa3 100644 --- a/src/Essentials/test/DeviceTests/Tests/Android/FileProvider_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Android/FileProvider_Tests.cs @@ -9,6 +9,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests.Shared { using Platform = Microsoft.Maui.ApplicationModel.Platform; + [Category("Android FileProvider")] public class Android_FileProvider_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/AppActions_Tests.cs b/src/Essentials/test/DeviceTests/Tests/AppActions_Tests.cs index 673d62919022..ff0e2e1b3773 100644 --- a/src/Essentials/test/DeviceTests/Tests/AppActions_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/AppActions_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("AppActions")] public class AppActions_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/AppInfo_Tests.cs b/src/Essentials/test/DeviceTests/Tests/AppInfo_Tests.cs new file mode 100644 index 000000000000..8fbba0b2c43b --- /dev/null +++ b/src/Essentials/test/DeviceTests/Tests/AppInfo_Tests.cs @@ -0,0 +1,71 @@ +using System; +using System.Threading.Tasks; +using Microsoft.Maui.ApplicationModel; +using Microsoft.Maui.Devices; +using Xunit; + +namespace Microsoft.Maui.Essentials.DeviceTests +{ + [Category("AppInfo")] + public class AppInfo_Tests + { + [Fact] + public void AppName_Is_Correct() + { + Assert.Equal("Essentials Tests", AppInfo.Name); + } + + [Fact] + public void AppPackageName_Is_Correct() + { +#if WINDOWS_UWP || WINDOWS + Assert.Equal("CD693923-B3C2-4043-B044-F070046D2DAF", AppInfo.PackageName); +#elif __IOS__ + Assert.Equal("com.microsoft.maui.essentials.devicetests", AppInfo.PackageName); +#elif __ANDROID__ + Assert.Equal("com.microsoft.maui.essentials.devicetests", AppInfo.PackageName); +#else + throw new PlatformNotSupportedException(); +#endif + } + + [Fact] + public void App_Theme_Is_Correct() + { +#if __IOS__ + if (DeviceInfo.Version.Major >= 13) + Assert.NotEqual(AppTheme.Unspecified, AppInfo.RequestedTheme); + else + Assert.Equal(AppTheme.Unspecified, AppInfo.RequestedTheme); +#elif WINDOWS_UWP || WINDOWS || __ANDROID__ + Assert.NotEqual(AppTheme.Unspecified, AppInfo.RequestedTheme); +#else + Assert.Equal(AppTheme.Unspecified, AppInfo.RequestedTheme); +#endif + } + + [Fact] + public void App_Build_Is_Correct() + { + Assert.Equal("1", AppInfo.BuildString); + } + + [Fact] + public void App_RequestedLayoutDirection_Is_Correct() + { + Assert.Equal(LayoutDirection.LeftToRight, AppInfo.RequestedLayoutDirection); + } + + [Fact] + public void App_Versions_Are_Correct() + { +#if WINDOWS_UWP || WINDOWS + Assert.Equal("1.0.0.1", AppInfo.VersionString); + Assert.Equal(new Version(1, 0, 0, 1), AppInfo.Version); +#else + Assert.Equal("1.0", AppInfo.VersionString); + Assert.Equal(new Version(1, 0), AppInfo.Version); +#endif + } + } +} diff --git a/src/Essentials/test/DeviceTests/Tests/Barometer_Shared.cs b/src/Essentials/test/DeviceTests/Tests/Barometer_Shared.cs index 7817f873f32d..301e89488d6d 100644 --- a/src/Essentials/test/DeviceTests/Tests/Barometer_Shared.cs +++ b/src/Essentials/test/DeviceTests/Tests/Barometer_Shared.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Barometer")] public class Barometer_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Battery_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Battery_Tests.cs index 0d6422c54918..ed81389eef90 100644 --- a/src/Essentials/test/DeviceTests/Tests/Battery_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Battery_Tests.cs @@ -5,6 +5,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - these tests require a battery to be present + [Category("Battery")] public class Battery_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Clipboard_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Clipboard_Tests.cs index 2efcaa4b85a6..42d63aa35728 100644 --- a/src/Essentials/test/DeviceTests/Tests/Clipboard_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Clipboard_Tests.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Clipboard")] public class Clipboard_Tests { [Theory] diff --git a/src/Essentials/test/DeviceTests/Tests/Compass_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Compass_Tests.cs index e053606cd2c1..6b2ae63df57f 100644 --- a/src/Essentials/test/DeviceTests/Tests/Compass_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Compass_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - these tests require a compass to be present + [Category("Compass")] public class Compass_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Connectivity_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Connectivity_Tests.cs index 57fcae1b6652..e85502f05413 100644 --- a/src/Essentials/test/DeviceTests/Tests/Connectivity_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Connectivity_Tests.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Connectivity")] public class Connectivity_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Contacts_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Contacts_Tests.cs index e50de0e90acd..9c533c78edfc 100644 --- a/src/Essentials/test/DeviceTests/Tests/Contacts_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Contacts_Tests.cs @@ -10,6 +10,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests.Shared { using Contacts = ApplicationModel.Communication.Contacts; + [Category("Contacts")] public class Contacts_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/DeviceDisplay_Tests.cs b/src/Essentials/test/DeviceTests/Tests/DeviceDisplay_Tests.cs new file mode 100644 index 000000000000..004d82535aa4 --- /dev/null +++ b/src/Essentials/test/DeviceTests/Tests/DeviceDisplay_Tests.cs @@ -0,0 +1,72 @@ +using System; +using System.Threading.Tasks; +using Microsoft.Maui.ApplicationModel; +using Microsoft.Maui.Devices; +using Xunit; + +namespace Microsoft.Maui.Essentials.DeviceTests +{ + [Category("DeviceDisplay")] + public class DeviceDisplay_Tests + { + [Fact] + public Task Screen_Metrics_Are_Not_Null() + { + return Utils.OnMainThread(() => + { + var metrics = DeviceDisplay.MainDisplayInfo; + + Assert.True(metrics.Width > 0); + Assert.True(metrics.Height > 0); + Assert.True(metrics.Density > 0); + }); + } + + [Fact] + [Trait(Traits.UI, Traits.FeatureSupport.Supported)] + public Task ScreenLock_Locks() + { + return Utils.OnMainThread(() => + { + Assert.False(DeviceDisplay.KeepScreenOn); + + DeviceDisplay.KeepScreenOn = true; + Assert.True(DeviceDisplay.KeepScreenOn); + + DeviceDisplay.KeepScreenOn = false; + Assert.False(DeviceDisplay.KeepScreenOn); + }); + } + + [Fact] + [Trait(Traits.UI, Traits.FeatureSupport.Supported)] + public Task ScreenLock_Unlocks_Without_Locking() + { + return Utils.OnMainThread(() => + { + Assert.False(DeviceDisplay.KeepScreenOn); + + DeviceDisplay.KeepScreenOn = false; + Assert.False(DeviceDisplay.KeepScreenOn); + }); + } + + [Fact] + [Trait(Traits.UI, Traits.FeatureSupport.Supported)] + public Task ScreenLock_Locks_Only_Once() + { + return Utils.OnMainThread(() => + { + Assert.False(DeviceDisplay.KeepScreenOn); + + DeviceDisplay.KeepScreenOn = true; + Assert.True(DeviceDisplay.KeepScreenOn); + DeviceDisplay.KeepScreenOn = true; + Assert.True(DeviceDisplay.KeepScreenOn); + + DeviceDisplay.KeepScreenOn = false; + Assert.False(DeviceDisplay.KeepScreenOn); + }); + } + } +} diff --git a/src/Essentials/test/DeviceTests/Tests/DeviceInfo_Tests.cs b/src/Essentials/test/DeviceTests/Tests/DeviceInfo_Tests.cs index c0facacf5df4..3e78b83880b0 100644 --- a/src/Essentials/test/DeviceTests/Tests/DeviceInfo_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/DeviceInfo_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("DeviceInfo")] public class DeviceInfo_Tests { [Fact] @@ -20,12 +21,6 @@ public void Versions_Are_Correct() #endif } - [Fact] - public void AppName_Is_Correct() - { - Assert.Equal("Essentials Tests", AppInfo.Name); - } - [Fact] public void DeviceModel_Is_Correct() { @@ -53,20 +48,6 @@ public void DeviceModel_Is_Correct() #endif } - [Fact] - public void AppPackageName_Is_Correct() - { -#if WINDOWS_UWP || WINDOWS - Assert.Equal("ec0cc741-fd3e-485c-81be-68815c480690", AppInfo.PackageName); -#elif __IOS__ - Assert.Equal("com.microsoft.maui.essentials.devicetests", AppInfo.PackageName); -#elif __ANDROID__ - Assert.Equal("com.microsoft.maui.essentials.devicetests", AppInfo.PackageName); -#else - throw new PlatformNotSupportedException(); -#endif - } - [Fact] public void Platform_Is_Correct() { @@ -80,99 +61,5 @@ public void Platform_Is_Correct() throw new PlatformNotSupportedException(); #endif } - - [Fact] - public void App_Theme_Is_Correct() - { -#if __IOS__ - if (DeviceInfo.Version.Major >= 13) - Assert.NotEqual(AppTheme.Unspecified, AppInfo.RequestedTheme); - else - Assert.Equal(AppTheme.Unspecified, AppInfo.RequestedTheme); -#elif WINDOWS_UWP || WINDOWS || __ANDROID__ - Assert.NotEqual(AppTheme.Unspecified, AppInfo.RequestedTheme); -#else - Assert.Equal(AppTheme.Unspecified, AppInfo.RequestedTheme); -#endif - } - - [Fact] - public void App_Build_Is_Correct() - { - Assert.Equal("1", AppInfo.BuildString); - } - - [Fact] - public void App_RequestedLayoutDirection_Is_Correct() - { - Assert.Equal(LayoutDirection.LeftToRight, AppInfo.RequestedLayoutDirection); - } - - [Fact] - public void App_Versions_Are_Correct() - { - Assert.Equal("1.0.1.0", AppInfo.VersionString); - Assert.Equal(new Version(1, 0, 1, 0), AppInfo.Version); - } - - [Fact] - public Task Screen_Metrics_Are_Not_Null() - { - return Utils.OnMainThread(() => - { - var metrics = DeviceDisplay.MainDisplayInfo; - - Assert.True(metrics.Width > 0); - Assert.True(metrics.Height > 0); - Assert.True(metrics.Density > 0); - }); - } - - [Fact] - [Trait(Traits.UI, Traits.FeatureSupport.Supported)] - public Task ScreenLock_Locks() - { - return Utils.OnMainThread(() => - { - Assert.False(DeviceDisplay.KeepScreenOn); - - DeviceDisplay.KeepScreenOn = true; - Assert.True(DeviceDisplay.KeepScreenOn); - - DeviceDisplay.KeepScreenOn = false; - Assert.False(DeviceDisplay.KeepScreenOn); - }); - } - - [Fact] - [Trait(Traits.UI, Traits.FeatureSupport.Supported)] - public Task ScreenLock_Unlocks_Without_Locking() - { - return Utils.OnMainThread(() => - { - Assert.False(DeviceDisplay.KeepScreenOn); - - DeviceDisplay.KeepScreenOn = false; - Assert.False(DeviceDisplay.KeepScreenOn); - }); - } - - [Fact] - [Trait(Traits.UI, Traits.FeatureSupport.Supported)] - public Task ScreenLock_Locks_Only_Once() - { - return Utils.OnMainThread(() => - { - Assert.False(DeviceDisplay.KeepScreenOn); - - DeviceDisplay.KeepScreenOn = true; - Assert.True(DeviceDisplay.KeepScreenOn); - DeviceDisplay.KeepScreenOn = true; - Assert.True(DeviceDisplay.KeepScreenOn); - - DeviceDisplay.KeepScreenOn = false; - Assert.False(DeviceDisplay.KeepScreenOn); - }); - } } } diff --git a/src/Essentials/test/DeviceTests/Tests/Email_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Email_Tests.cs index f923bc74fa95..eafce4e37240 100644 --- a/src/Essentials/test/DeviceTests/Tests/Email_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Email_Tests.cs @@ -9,6 +9,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - a human needs to close the email composer window + [Category("Email")] public class Email_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/FileSystem_Tests.cs b/src/Essentials/test/DeviceTests/Tests/FileSystem_Tests.cs index 9a6301a17634..a934f1d7d8f1 100644 --- a/src/Essentials/test/DeviceTests/Tests/FileSystem_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/FileSystem_Tests.cs @@ -5,6 +5,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("FileSystem")] public class FileSystem_Tests { const string bundleFileContents = "This file was in the app bundle."; diff --git a/src/Essentials/test/DeviceTests/Tests/Flashlight_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Flashlight_Tests.cs index a5d0f216225d..58aa43e861ac 100644 --- a/src/Essentials/test/DeviceTests/Tests/Flashlight_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Flashlight_Tests.cs @@ -7,6 +7,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests // TEST NOTES: // - a human needs to accept permissions on Android // - the camera flash is not always available + [Category("Flashlight")] public class Flashlight_Tests { [Theory] diff --git a/src/Essentials/test/DeviceTests/Tests/Geocoding_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Geocoding_Tests.cs index 48b02144d017..cf2606ef0973 100644 --- a/src/Essentials/test/DeviceTests/Tests/Geocoding_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Geocoding_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Geocoding")] public class Geocoding_Tests { public Geocoding_Tests() diff --git a/src/Essentials/test/DeviceTests/Tests/Geolocation_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Geolocation_Tests.cs index a9350cd1663c..66812c7b1796 100644 --- a/src/Essentials/test/DeviceTests/Tests/Geolocation_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Geolocation_Tests.cs @@ -8,6 +8,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - a human needs to accept permissions on all systems + [Category("Geolocation")] public class Geolocation_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Gyroscope_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Gyroscope_Tests.cs index 96d0a2eb525f..40080e8120e9 100644 --- a/src/Essentials/test/DeviceTests/Tests/Gyroscope_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Gyroscope_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - these tests require a gyroscope to be present + [Category("Gyroscope")] public class Gyroscope_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/HapticFeedback_Tests.cs b/src/Essentials/test/DeviceTests/Tests/HapticFeedback_Tests.cs index 7b7a2fd49ffe..15c38a0c6b96 100644 --- a/src/Essentials/test/DeviceTests/Tests/HapticFeedback_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/HapticFeedback_Tests.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("HapticFeedback")] public class HapticFeedback_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Launcher_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Launcher_Tests.cs index 47e6f648dbe0..8e94872da743 100644 --- a/src/Essentials/test/DeviceTests/Tests/Launcher_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Launcher_Tests.cs @@ -10,6 +10,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - a human needs to close the browser window + [Category("Launcher")] public class Launcher_Tests { [Theory] diff --git a/src/Essentials/test/DeviceTests/Tests/Magnetometer_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Magnetometer_Tests.cs index 7164d01d6315..f02dda3162f8 100644 --- a/src/Essentials/test/DeviceTests/Tests/Magnetometer_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Magnetometer_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { // TEST NOTES: // - these tests require a magnetometer to be present + [Category("Magnetometer")] public class Magnetometer_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/MainThread_Tests.cs b/src/Essentials/test/DeviceTests/Tests/MainThread_Tests.cs index f347638d99ee..62834c7b4ac9 100644 --- a/src/Essentials/test/DeviceTests/Tests/MainThread_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/MainThread_Tests.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("MainThread")] public class MainThread_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/Maps_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Maps_Tests.cs index e20a3f620722..a1664a7b9f74 100644 --- a/src/Essentials/test/DeviceTests/Tests/Maps_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Maps_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Maps")] public class Maps_Tests { const double testLatitude = 47.645160; diff --git a/src/Essentials/test/DeviceTests/Tests/Permissions_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Permissions_Tests.cs index 591ece432739..8de912fd1e83 100644 --- a/src/Essentials/test/DeviceTests/Tests/Permissions_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Permissions_Tests.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Permissions")] public class Permissions_Tests { [Theory] diff --git a/src/Essentials/test/DeviceTests/Tests/PhoneDialer_Tests.cs b/src/Essentials/test/DeviceTests/Tests/PhoneDialer_Tests.cs index bf30d4ced196..01ecc9735d10 100644 --- a/src/Essentials/test/DeviceTests/Tests/PhoneDialer_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/PhoneDialer_Tests.cs @@ -2,6 +2,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("PhoneDialer")] public class PhoneDialer_Tests { } diff --git a/src/Essentials/test/DeviceTests/Tests/Preferences_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Preferences_Tests.cs index e1e773fcaaf1..286ce661c92d 100644 --- a/src/Essentials/test/DeviceTests/Tests/Preferences_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Preferences_Tests.cs @@ -5,6 +5,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Preferences")] [Collection("UsesPreferences")] public class Preferences_Tests { diff --git a/src/Essentials/test/DeviceTests/Tests/Screenshot_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Screenshot_Tests.cs index 44a74460b8f7..f47c8ffab732 100644 --- a/src/Essentials/test/DeviceTests/Tests/Screenshot_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Screenshot_Tests.cs @@ -7,6 +7,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Screenshot")] public class Screenshot_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/SecureStorage_Tests.cs b/src/Essentials/test/DeviceTests/Tests/SecureStorage_Tests.cs index ae0b4df31d77..1fc97678f2d2 100644 --- a/src/Essentials/test/DeviceTests/Tests/SecureStorage_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/SecureStorage_Tests.cs @@ -9,6 +9,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("SecureStorage")] [Collection("UsesPreferences")] public class SecureStorage_Tests { diff --git a/src/Essentials/test/DeviceTests/Tests/Share_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Share_Tests.cs index 2d3a438de988..20437eb63be4 100644 --- a/src/Essentials/test/DeviceTests/Tests/Share_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Share_Tests.cs @@ -6,6 +6,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Share")] public class Share_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/VersionTracking_Tests.cs b/src/Essentials/test/DeviceTests/Tests/VersionTracking_Tests.cs index a727f02116b8..6526fa59f563 100644 --- a/src/Essentials/test/DeviceTests/Tests/VersionTracking_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/VersionTracking_Tests.cs @@ -6,13 +6,17 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("VersionTracking")] public class VersionTracking_Tests { - /// - /// We cannot mock the app version but it should be constant value - /// - const string currentVersion = "1.0.1.0"; + // We cannot mock the app version but it should be constant value +#if WINDOWS_UWP || WINDOWS + const string currentVersion = "1.0.0.1"; const string currentBuild = "1"; +#else + const string currentVersion = "1.0"; + const string currentBuild = "1"; +#endif const string versionsKey = "VersionTracking.Versions"; const string buildsKey = "VersionTracking.Builds"; diff --git a/src/Essentials/test/DeviceTests/Tests/Vibration_Tests.cs b/src/Essentials/test/DeviceTests/Tests/Vibration_Tests.cs index 4b71e16b01c3..8b962e03187b 100644 --- a/src/Essentials/test/DeviceTests/Tests/Vibration_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/Vibration_Tests.cs @@ -4,6 +4,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("Vibration")] public class Vibration_Tests { [Fact] diff --git a/src/Essentials/test/DeviceTests/Tests/WebAuthenticator_Tests.cs b/src/Essentials/test/DeviceTests/Tests/WebAuthenticator_Tests.cs index e467e69cef2a..783952e49c65 100644 --- a/src/Essentials/test/DeviceTests/Tests/WebAuthenticator_Tests.cs +++ b/src/Essentials/test/DeviceTests/Tests/WebAuthenticator_Tests.cs @@ -8,6 +8,7 @@ namespace Microsoft.Maui.Essentials.DeviceTests { + [Category("WebAuthenticator")] public class WebAuthenticator_Tests { [Theory] diff --git a/src/ProfiledAot/src/CommonMethods.cs b/src/ProfiledAot/src/CommonMethods.cs index 9a32ed6376ea..58aee9ab4a82 100644 --- a/src/ProfiledAot/src/CommonMethods.cs +++ b/src/ProfiledAot/src/CommonMethods.cs @@ -16,42 +16,42 @@ static class CommonMethods { - // Returns '200 OK' if the caller wants to set that on the UI - public static async Task Invoke() - { - var url = $"https://httpstat.us/{200}"; + // Returns '200 OK' if the caller wants to set that on the UI + public static async Task Invoke() + { + var url = $"https://httpstat.us/{200}"; - var foo = "foo"; - foo.StartsWith("f"); - foo.Contains("o"); - var split = "foo;bar".Split(';'); - var x = int.Parse("999"); - x.ToString(); + var foo = "foo"; + foo.StartsWith("f"); + foo.Contains("o"); + var split = "foo;bar".Split(';'); + var x = int.Parse("999"); + x.ToString(); - string someString = MauiTest.Resources.Strings.SomeString; + string someString = MauiTest.Resources.Strings.SomeString; - InitializeCommonEssentials(); + InitializeCommonEssentials(); - _ = new Microsoft.Maui.Layouts.GridLayoutManager(new Grid()).Measure(100, 100); + _ = new Microsoft.Maui.Layouts.GridLayoutManager(new Grid()).Measure(100, 100); - _ = new Label { FontAttributes = FontAttributes.Bold, Text = "Test" }; + _ = new Label { FontAttributes = FontAttributes.Bold, Text = "Test" }; - Color c = Color.Parse("MistyRose"); - c = Color.Parse("#663399"); + Color c = Color.Parse("MistyRose"); + c = Color.Parse("#663399"); - using var client = new HttpClient(); - var send = client.SendAsync (new HttpRequestMessage (HttpMethod.Get, url)); - var getstring = client.GetStringAsync (url); - await Task.WhenAll (send, getstring, Task.CompletedTask, Task.Delay(1)); - var text = getstring.Result; + using var client = new HttpClient(); + var send = client.SendAsync(new HttpRequestMessage(HttpMethod.Get, url)); + var getstring = client.GetStringAsync(url); + await Task.WhenAll(send, getstring, Task.CompletedTask, Task.Delay(1)); + var text = getstring.Result; - return text; - } + return text; + } - private static void InitializeCommonEssentials() - { - NetworkAccess networkAccess = Connectivity.NetworkAccess; - DeviceIdiom deviceIdiom = DeviceInfo.Idiom; - AppTheme appTheme = AppInfo.RequestedTheme; - } + private static void InitializeCommonEssentials() + { + NetworkAccess networkAccess = Connectivity.NetworkAccess; + DeviceIdiom deviceIdiom = DeviceInfo.Idiom; + AppTheme appTheme = AppInfo.RequestedTheme; + } } \ No newline at end of file diff --git a/src/PublicAPI.targets b/src/PublicAPI.targets new file mode 100644 index 000000000000..6383438b35cf --- /dev/null +++ b/src/PublicAPI.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/SingleProject/Resizetizer/src/AndroidAdaptiveIconGenerator.cs b/src/SingleProject/Resizetizer/src/AndroidAdaptiveIconGenerator.cs index 6e8337532f1e..1d639d995432 100644 --- a/src/SingleProject/Resizetizer/src/AndroidAdaptiveIconGenerator.cs +++ b/src/SingleProject/Resizetizer/src/AndroidAdaptiveIconGenerator.cs @@ -1,150 +1,141 @@ using System.Collections.Generic; +using System.Diagnostics; using System.IO; namespace Microsoft.Maui.Resizetizer { internal class AndroidAdaptiveIconGenerator { - public AndroidAdaptiveIconGenerator(ResizeImageInfo info, string appIconName, string intermediateOutputPath, ILogger logger, bool useVectors) + public AndroidAdaptiveIconGenerator(ResizeImageInfo info, string appIconName, string intermediateOutputPath, ILogger logger) { Info = info; Logger = logger; - UseVectors = useVectors; IntermediateOutputPath = intermediateOutputPath; AppIconName = appIconName; } public ResizeImageInfo Info { get; } + public string IntermediateOutputPath { get; } + public ILogger Logger { get; private set; } - public bool UseVectors { get; } + public string AppIconName { get; } const string AdaptiveIconDrawableXml = @" - - + + "; - const string EmptyVectorDrawable = -@" -"; - public IEnumerable Generate() { + var sw = new Stopwatch(); + sw.Start(); + var results = new List(); var fullIntermediateOutputPath = new DirectoryInfo(IntermediateOutputPath); + ProcessBackground(results, fullIntermediateOutputPath); + ProcessForeground(results, fullIntermediateOutputPath); + ProcessAdaptiveIcon(results, fullIntermediateOutputPath); + + sw.Stop(); + Logger?.Log($"Generating app icon took {sw.ElapsedMilliseconds}ms"); + + return results; + } + + void ProcessBackground(List results, DirectoryInfo fullIntermediateOutputPath) + { var backgroundFile = Info.Filename; - var backgroundIsVector = UseVectors && Info.IsVector; - var backgroundExt = backgroundIsVector ? ".xml" : ".png"; - var backgroundDestFilename = AppIconName + "_background" + backgroundExt; + var backgroundExists = File.Exists(backgroundFile); + var backgroundDestFilename = AppIconName + "_background.png"; - var foregroundFile = Info.ForegroundFilename; - var foregroundExists = File.Exists(foregroundFile); - var foregroundIsVector = !foregroundExists || (UseVectors && Info.ForegroundIsVector); - var foregroundExt = foregroundIsVector ? ".xml" : ".png"; - var foregroundDestFilename = AppIconName + "_foreground" + foregroundExt; + if (backgroundExists) + Logger.Log("Converting Background SVG to PNG: " + backgroundFile); + else + Logger.Log("Background was not found (will manufacture): " + backgroundFile); - if (backgroundIsVector) + foreach (var dpi in DpiPath.Android.AppIconParts) { - Logger.Log("Converting Background SVG to Android Drawable Vector: " + backgroundFile); - - var dir = Path.Combine(fullIntermediateOutputPath.FullName, "drawable-v24"); + var dir = Path.Combine(fullIntermediateOutputPath.FullName, dpi.Path); var destination = Path.Combine(dir, backgroundDestFilename); Directory.CreateDirectory(dir); - Svg2VectorDrawable.Svg2Vector.Convert(backgroundFile, destination); - - results.Add(new ResizedImageInfo { Dpi = new DpiPath("drawable-v24", 1, "_background"), Filename = destination }); - } - else - { - Logger.Log("Converting Background SVG to PNG: " + backgroundFile); + Logger.Log($"App Icon Background Part: " + destination); - foreach (var dpi in DpiPath.Android.AppIconParts) + if (backgroundExists) { - var dir = Path.Combine(fullIntermediateOutputPath.FullName, dpi.Path); - var destination = Path.Combine(dir, backgroundDestFilename); - Directory.CreateDirectory(dir); - - Logger.Log($"App Icon Background Part: " + destination); - - var tools = SkiaSharpTools.Create(Info.IsVector, Info.Filename, dpi.Size, null, Logger); + // resize the background + var tools = SkiaSharpTools.Create(Info.IsVector, Info.Filename, dpi.Size, Info.Color, null, Logger); + tools.Resize(dpi, destination, dpiSizeIsAbsolute: true); + } + else + { + // manufacture + var tools = SkiaSharpTools.CreateImaginary(Info.Color, Logger); tools.Resize(dpi, destination); - - results.Add(new ResizedImageInfo { Dpi = dpi, Filename = destination }); } - } - Logger.Log("Looking for Foreground File: " + foregroundFile); + results.Add(new ResizedImageInfo { Dpi = dpi, Filename = destination }); + } + } - var foregroundDestinationDir = Path.Combine(fullIntermediateOutputPath.FullName, "drawable"); - var foregroundDestination = Path.Combine(foregroundDestinationDir, foregroundDestFilename); - Directory.CreateDirectory(foregroundDestinationDir); + void ProcessForeground(List results, DirectoryInfo fullIntermediateOutputPath) + { + var foregroundFile = Info.ForegroundFilename; + var foregroundExists = File.Exists(foregroundFile); + var foregroundDestFilename = AppIconName + "_foreground.png"; if (foregroundExists) + Logger.Log("Converting Foreground SVG to PNG: " + foregroundFile); + else + Logger.Log("Foreground was not found (will manufacture): " + foregroundFile); + + foreach (var dpi in DpiPath.Android.AppIconParts) { - if (foregroundIsVector) - { - Logger.Log("Converting Foreground SVG to Android Drawable Vector: " + foregroundFile); - Svg2VectorDrawable.Svg2Vector.Convert(foregroundFile, foregroundDestination); + var dir = Path.Combine(fullIntermediateOutputPath.FullName, dpi.Path); + var destination = Path.Combine(dir, foregroundDestFilename); + Directory.CreateDirectory(dir); - results.Add(new ResizedImageInfo { Dpi = new DpiPath("drawable", 1, "_foreground"), Filename = foregroundDestination }); + Logger.Log($"App Icon Foreground Part: " + destination); + + if (foregroundExists) + { + // resize the forground + var tools = SkiaSharpTools.Create(Info.ForegroundIsVector, Info.ForegroundFilename, dpi.Size, null, Info.TintColor, Logger); + tools.Resize(dpi, destination, Info.ForegroundScale, dpiSizeIsAbsolute: true); } else { - Logger.Log("Converting Foreground SVG to PNG: " + foregroundFile); - - foreach (var dpi in DpiPath.Android.AppIconParts) - { - var dir = Path.Combine(fullIntermediateOutputPath.FullName, dpi.Path); - var destination = Path.Combine(dir, foregroundDestFilename); - Directory.CreateDirectory(dir); - - Logger.Log($"App Icon Foreground Part: " + destination); - - var tools = SkiaSharpTools.Create(Info.ForegroundIsVector, Info.ForegroundFilename, dpi.Size, null, Logger); - tools.Resize(dpi, destination); - - results.Add(new ResizedImageInfo { Dpi = dpi, Filename = destination }); - } + // manufacture + var tools = SkiaSharpTools.CreateImaginary(null, Logger); + tools.Resize(dpi, destination); } - } - else - { - Logger.Log("Foreground was not found: " + foregroundFile); - File.WriteAllText(foregroundDestination, EmptyVectorDrawable); + results.Add(new ResizedImageInfo { Dpi = dpi, Filename = destination }); } + } - // process adaptive icon xml - { - var adaptiveIconXmlStr = AdaptiveIconDrawableXml - .Replace("{name}", AppIconName) - .Replace("{backgroundType}", backgroundIsVector ? "drawable" : "mipmap") - .Replace("{foregroundType}", foregroundIsVector ? "drawable" : "mipmap"); - - var dir = Path.Combine(fullIntermediateOutputPath.FullName, "mipmap-anydpi-v26"); - var adaptiveIconDestination = Path.Combine(dir, AppIconName + ".xml"); - var adaptiveIconRoundDestination = Path.Combine(dir, AppIconName + "_round.xml"); - Directory.CreateDirectory(dir); + void ProcessAdaptiveIcon(List results, DirectoryInfo fullIntermediateOutputPath) + { + var adaptiveIconXmlStr = AdaptiveIconDrawableXml + .Replace("{name}", AppIconName); - // Write out the adaptive icon xml drawables - File.WriteAllText(adaptiveIconDestination, adaptiveIconXmlStr); - File.WriteAllText(adaptiveIconRoundDestination, adaptiveIconXmlStr); + var dir = Path.Combine(fullIntermediateOutputPath.FullName, "mipmap-anydpi-v26"); + var adaptiveIconDestination = Path.Combine(dir, AppIconName + ".xml"); + var adaptiveIconRoundDestination = Path.Combine(dir, AppIconName + "_round.xml"); + Directory.CreateDirectory(dir); - results.Add(new ResizedImageInfo { Dpi = new DpiPath("mipmap-anydpi-v26", 1), Filename = adaptiveIconDestination }); - results.Add(new ResizedImageInfo { Dpi = new DpiPath("mipmap-anydpi-v26", 1, "_round"), Filename = adaptiveIconRoundDestination }); - } + // Write out the adaptive icon xml drawables + File.WriteAllText(adaptiveIconDestination, adaptiveIconXmlStr); + File.WriteAllText(adaptiveIconRoundDestination, adaptiveIconXmlStr); - return results; + results.Add(new ResizedImageInfo { Dpi = new DpiPath("mipmap-anydpi-v26", 1), Filename = adaptiveIconDestination }); + results.Add(new ResizedImageInfo { Dpi = new DpiPath("mipmap-anydpi-v26", 1, "_round"), Filename = adaptiveIconRoundDestination }); } } } diff --git a/src/SingleProject/Resizetizer/src/DetectInvalidResourceOutputFilenamesTask.cs b/src/SingleProject/Resizetizer/src/DetectInvalidResourceOutputFilenamesTask.cs index aa100164e1a0..7ebb69b8b79b 100644 --- a/src/SingleProject/Resizetizer/src/DetectInvalidResourceOutputFilenamesTask.cs +++ b/src/SingleProject/Resizetizer/src/DetectInvalidResourceOutputFilenamesTask.cs @@ -46,11 +46,13 @@ public override bool Execute() if (ThrowsError) { var builder = new StringBuilder(); - builder.AppendLine(ErrorMessage); - foreach (var file in invalidFilenames) + builder.Append(ErrorMessage); + + for (var i = 0; i < invalidFilenames.Count; i++) { - builder.AppendLine(); - builder.Append('\t'); + if (i > 0) + builder.Append(", "); + var file = invalidFilenames[i]; builder.Append(Path.GetFileNameWithoutExtension(file)); } @@ -62,4 +64,4 @@ public override bool Execute() return !Log.HasLoggedErrors; } } -} \ No newline at end of file +} diff --git a/src/SingleProject/Resizetizer/src/GenerateSplashAndroidResources.cs b/src/SingleProject/Resizetizer/src/GenerateSplashAndroidResources.cs index 2de1a74766b6..5aaff4b12550 100644 --- a/src/SingleProject/Resizetizer/src/GenerateSplashAndroidResources.cs +++ b/src/SingleProject/Resizetizer/src/GenerateSplashAndroidResources.cs @@ -23,8 +23,12 @@ public class GenerateSplashAndroidResources : Task public override bool Execute() { var splash = MauiSplashScreen[0]; - WriteColors(splash); - WriteDrawable(splash); + + var info = ResizeImageInfo.Parse(splash); + + WriteColors(info); + WriteDrawable(info); + return !Log.HasLoggedErrors; } @@ -32,7 +36,7 @@ public override bool Execute() const string Namespace = "http://schemas.android.com/apk/res/android"; const string Comment = "This file was auto-generated by .NET MAUI."; - void WriteColors(ITaskItem splash) + void WriteColors(ResizeImageInfo splash) { Directory.CreateDirectory(Path.GetDirectoryName(ColorsFile)); @@ -40,24 +44,18 @@ void WriteColors(ITaskItem splash) writer.WriteComment(Comment); writer.WriteStartElement("resources"); - var colorMetadata = splash.GetMetadata("Color"); - var color = Utils.ParseColorString(colorMetadata); - if (color != null) + if (splash.Color is not null) { writer.WriteStartElement("color"); writer.WriteAttributeString("name", "maui_splash_color"); - writer.WriteString(color.ToString()); + writer.WriteString(splash.Color.ToString()); writer.WriteEndElement(); } - else if (!string.IsNullOrEmpty(colorMetadata)) - { - Log.LogWarning($"Unable to parse color value '{colorMetadata}' for '{splash.ItemSpec}'."); - } writer.WriteEndDocument(); } - void WriteDrawable(ITaskItem splash) + void WriteDrawable(ResizeImageInfo splash) { Directory.CreateDirectory(Path.GetDirectoryName(DrawableFile)); @@ -67,7 +65,7 @@ void WriteDrawable(ITaskItem splash) writer.WriteAttributeString("xmlns", "android", ns: null, value: Namespace); writer.WriteStartElement("item"); - writer.WriteAttributeString("android", "drawable", Namespace, "@drawable/" + Path.GetFileNameWithoutExtension(splash.ItemSpec.ToLowerInvariant())); + writer.WriteAttributeString("android", "drawable", Namespace, "@drawable/" + splash.OutputName); writer.WriteEndDocument(); } diff --git a/src/SingleProject/Resizetizer/src/GenerateSplashAssets.cs b/src/SingleProject/Resizetizer/src/GenerateSplashAssets.cs index 6f805555b2ca..61c0734b9a60 100644 --- a/src/SingleProject/Resizetizer/src/GenerateSplashAssets.cs +++ b/src/SingleProject/Resizetizer/src/GenerateSplashAssets.cs @@ -20,20 +20,7 @@ public override bool Execute() { var splash = MauiSplashScreen[0]; - var colorMetadata = splash.GetMetadata("Color"); - var color = Utils.ParseColorString(colorMetadata); - if (color == null && !string.IsNullOrEmpty(colorMetadata)) - Log.LogWarning($"Unable to parse color value '{colorMetadata}' for '{splash.ItemSpec}'."); - - var fileInfo = new FileInfo(splash.GetMetadata("FullPath")); - if (!fileInfo.Exists) - throw new FileNotFoundException("Unable to find background file: " + fileInfo.FullName, fileInfo.FullName); - - var img = new ResizeImageInfo - { - Filename = fileInfo.FullName, - Color = color ?? SKColors.Transparent, - }; + var img = ResizeImageInfo.Parse(splash); Directory.CreateDirectory(IntermediateOutputPath); diff --git a/src/SingleProject/Resizetizer/src/GenerateSplashStoryboard.cs b/src/SingleProject/Resizetizer/src/GenerateSplashStoryboard.cs index 274d84d96d86..ad80da3ff226 100644 --- a/src/SingleProject/Resizetizer/src/GenerateSplashStoryboard.cs +++ b/src/SingleProject/Resizetizer/src/GenerateSplashStoryboard.cs @@ -20,35 +20,50 @@ public class GenerateSplashStoryboard : Task public override bool Execute() { var splash = MauiSplashScreen[0]; - var colorMetadata = splash.GetMetadata("Color"); - var color = Utils.ParseColorString(colorMetadata); - if (color == null) + + var info = ResizeImageInfo.Parse(splash); + + var outputFileName = info.OutputName; + var image = outputFileName + ".png"; + + var color = info.Color ?? SKColors.White; + float r = color.Red / (float)byte.MaxValue; + float g = color.Green / (float)byte.MaxValue; + float b = color.Blue / (float)byte.MaxValue; + float a = color.Alpha / (float)byte.MaxValue; + + var rStr = r.ToString(CultureInfo.InvariantCulture); + var gStr = g.ToString(CultureInfo.InvariantCulture); + var bStr = b.ToString(CultureInfo.InvariantCulture); + var aStr = a.ToString(CultureInfo.InvariantCulture); + + var dir = Path.GetDirectoryName(OutputFile); + Directory.CreateDirectory(dir); + + using (var writer = File.CreateText(OutputFile)) { - if (!string.IsNullOrEmpty(colorMetadata)) - { - Log.LogWarning($"Unable to parse color value '{colorMetadata}' for '{splash.ItemSpec}'."); - } - color = SKColors.White; + SubstituteStoryboard(writer, image, rStr, gStr, bStr, aStr); } - Directory.CreateDirectory(Path.GetDirectoryName(OutputFile)); - using var resourceStream = GetType().Assembly.GetManifestResourceStream("MauiSplash.storyboard"); - using var reader = new StreamReader(resourceStream); - using var writer = File.CreateText(OutputFile); + return !Log.HasLoggedErrors; + } - string image = Path.GetFileNameWithoutExtension(splash.ItemSpec) + ".png"; - float r = color.Value.Red / (float)byte.MaxValue; - float g = color.Value.Green / (float)byte.MaxValue; - float b = color.Value.Blue / (float)byte.MaxValue; - float a = color.Value.Alpha / (float)byte.MaxValue; + internal static void SubstituteStoryboard(TextWriter writer, string image, string r, string g, string b, string a) + { + using var resourceStream = typeof(GenerateSplashStoryboard).Assembly.GetManifestResourceStream("MauiSplash.storyboard"); + using var reader = new StreamReader(resourceStream); while (!reader.EndOfStream) { - var line = string.Format(CultureInfo.InvariantCulture, reader.ReadLine(), image, r, g, b, a); + var line = reader.ReadLine() + .Replace("{imageView.image}", image) + .Replace("{color.red}", r) + .Replace("{color.green}", g) + .Replace("{color.blue}", b) + .Replace("{color.alpha}", a); + writer.WriteLine(line); } - - return !Log.HasLoggedErrors; } } } diff --git a/src/SingleProject/Resizetizer/src/ResizeImageInfo.cs b/src/SingleProject/Resizetizer/src/ResizeImageInfo.cs index 5782f66a5aa4..1e8841ffa652 100644 --- a/src/SingleProject/Resizetizer/src/ResizeImageInfo.cs +++ b/src/SingleProject/Resizetizer/src/ResizeImageInfo.cs @@ -1,4 +1,5 @@ -using System; +#nullable enable +using System; using System.Collections.Generic; using System.IO; using Microsoft.Build.Framework; @@ -8,18 +9,22 @@ namespace Microsoft.Maui.Resizetizer { internal class ResizeImageInfo { - public string Alias { get; set; } + public string? Alias { get; set; } - public string Filename { get; set; } + public string? Filename { get; set; } public string OutputName => string.IsNullOrWhiteSpace(Alias) - ? Path.GetFileNameWithoutExtension(Filename) + ? string.IsNullOrWhiteSpace(Filename) + ? Path.GetFileNameWithoutExtension(ForegroundFilename) + : Path.GetFileNameWithoutExtension(Filename) : Path.GetFileNameWithoutExtension(Alias); public string OutputExtension => string.IsNullOrWhiteSpace(Alias) || !Path.HasExtension(Alias) - ? Path.GetExtension(Filename) + ? string.IsNullOrWhiteSpace(Filename) || !Path.HasExtension(Filename) + ? Path.GetExtension(ForegroundFilename) + : Path.GetExtension(Filename) : Path.GetExtension(Alias); public SKSize? BaseSize { get; set; } @@ -34,13 +39,13 @@ internal class ResizeImageInfo public bool IsAppIcon { get; set; } - public string ForegroundFilename { get; set; } + public string? ForegroundFilename { get; set; } public bool ForegroundIsVector => IsVectorFilename(ForegroundFilename); public double ForegroundScale { get; set; } = 1.0; - private static bool IsVectorFilename(string filename) + private static bool IsVectorFilename(string? filename) => Path.GetExtension(filename)?.Equals(".svg", StringComparison.OrdinalIgnoreCase) ?? false; public static ResizeImageInfo Parse(ITaskItem image) @@ -77,8 +82,15 @@ public static List Parse(IEnumerable images) info.Resize = false; } - info.TintColor = Utils.ParseColorString(image.GetMetadata("TintColor")); - info.Color = Utils.ParseColorString(image.GetMetadata("Color")); + var tintColor = image.GetMetadata("TintColor"); + info.TintColor = Utils.ParseColorString(tintColor); + if (info.TintColor is null && !string.IsNullOrEmpty(tintColor)) + throw new InvalidDataException($"Unable to parse color value '{tintColor}' for '{info.Filename}'."); + + var color = image.GetMetadata("Color"); + info.Color = Utils.ParseColorString(color); + if (info.Color is null && !string.IsNullOrEmpty(color)) + throw new InvalidDataException($"Unable to parse color value '{color}' for '{info.Filename}'."); if (bool.TryParse(image.GetMetadata("IsAppIcon"), out var iai)) info.IsAppIcon = iai; @@ -96,6 +108,13 @@ public static List Parse(IEnumerable images) info.ForegroundFilename = fgFileInfo.FullName; } + // make sure the image is a foreground if this is an icon + if (info.IsAppIcon && string.IsNullOrEmpty(info.ForegroundFilename)) + { + info.ForegroundFilename = info.Filename; + info.Filename = null; + } + // TODO: // - Parse out custom DPI's diff --git a/src/SingleProject/Resizetizer/src/Resizer.cs b/src/SingleProject/Resizetizer/src/Resizer.cs index ade967522a0d..3154cd14ac0a 100644 --- a/src/SingleProject/Resizetizer/src/Resizer.cs +++ b/src/SingleProject/Resizetizer/src/Resizer.cs @@ -35,33 +35,20 @@ public static string GetFileDestination(ResizeImageInfo info, DpiPath dpi, strin return destination; } - public ResizedImageInfo CopyFile(DpiPath dpi, string inputsFile, bool isAndroid = false) + public ResizedImageInfo CopyFile(DpiPath dpi, string inputsFile) { var destination = GetFileDestination(dpi); - var androidVector = false; - if (isAndroid && Info.IsVector && !Info.Resize) - { - // Update destination to be .xml file - destination = Path.ChangeExtension(destination, ".xml"); - androidVector = true; - } + if (Info.IsVector) + destination = Path.ChangeExtension(destination, ".png"); if (IsUpToDate(Info.Filename, destination, inputsFile, Logger)) return new ResizedImageInfo { Filename = destination, Dpi = dpi }; - if (androidVector) - { - Logger.Log("Converting SVG to Android Drawable Vector: " + Info.Filename); - - // Transform into an android vector drawable - Svg2VectorDrawable.Svg2Vector.Convert(Info.Filename, destination); - } + if (Info.IsVector) + Rasterize(dpi, destination); else - { - // Otherwise just copy it straight File.Copy(Info.Filename, destination, true); - } return new ResizedImageInfo { Filename = destination, Dpi = dpi }; } @@ -93,14 +80,15 @@ public ResizedImageInfo Resize(DpiPath dpi, string inputsFile) if (IsUpToDate(Info.Filename, destination, inputsFile, Logger)) return new ResizedImageInfo { Filename = destination, Dpi = dpi }; - if (tools == null) - { - tools = SkiaSharpTools.Create(Info.IsVector, Info.Filename, Info.BaseSize, Info.TintColor, Logger); - } - - tools.Resize(dpi, destination); + Rasterize(dpi, destination); return new ResizedImageInfo { Filename = destination, Dpi = dpi }; } + + void Rasterize(DpiPath dpi, string destination) + { + tools ??= SkiaSharpTools.Create(Info.IsVector, Info.Filename, Info.BaseSize, Info.Color, Info.TintColor, Logger); + tools.Resize(dpi, destination); + } } } diff --git a/src/SingleProject/Resizetizer/src/ResizetizeImages.cs b/src/SingleProject/Resizetizer/src/ResizetizeImages.cs index 13366cc64b0f..e6717a0b2155 100644 --- a/src/SingleProject/Resizetizer/src/ResizetizeImages.cs +++ b/src/SingleProject/Resizetizer/src/ResizetizeImages.cs @@ -11,8 +11,6 @@ namespace Microsoft.Maui.Resizetizer { public class ResizetizeImages : MauiAsyncTask, ILogger { - internal bool AllowVectorAdaptiveIcons = false; - [Required] public string PlatformType { get; set; } = "android"; @@ -134,7 +132,7 @@ void ProcessAppIcon(ResizeImageInfo img, ConcurrentBag resized appIconName = appIconName.ToLowerInvariant(); - var adaptiveIconGen = new AndroidAdaptiveIconGenerator(img, appIconName, IntermediateOutputPath, this, AllowVectorAdaptiveIcons); + var adaptiveIconGen = new AndroidAdaptiveIconGenerator(img, appIconName, IntermediateOutputPath, this); var iconsGenerated = adaptiveIconGen.Generate(); foreach (var iconGenerated in iconsGenerated) @@ -205,7 +203,7 @@ void ProcessImageCopy(ResizeImageInfo img, DpiPath originalScaleDpi, ConcurrentB LogDebugMessage($"Copying {img.Filename}"); - var r = resizer.CopyFile(originalScaleDpi, InputsFile, PlatformType.Equals("android", StringComparison.OrdinalIgnoreCase)); + var r = resizer.CopyFile(originalScaleDpi, InputsFile); resizedImages.Add(r); LogDebugMessage($"Copied {img.Filename}"); diff --git a/src/SingleProject/Resizetizer/src/ResizetizerPackages.projitems b/src/SingleProject/Resizetizer/src/ResizetizerPackages.projitems index 53031752fd14..0c41bd45ebab 100644 --- a/src/SingleProject/Resizetizer/src/ResizetizerPackages.projitems +++ b/src/SingleProject/Resizetizer/src/ResizetizerPackages.projitems @@ -18,14 +18,13 @@ - + - @@ -63,8 +62,6 @@ <_ResizetizerFiles Include="$(PkgHarfBuzzSharp_NativeAssets_Linux)\runtimes\linux-arm64\native\libHarfBuzzSharp.so" Link="arm64\libHarfBuzzSharp.so" Arch="arm64/" /> <_ResizetizerFiles Include="$(PkgHarfBuzzSharp_NativeAssets_Linux)\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so" Link="musl-x64\libHarfBuzzSharp.so" Arch="musl-x64/" /> <_ResizetizerFiles Include="$(PkgHarfBuzzSharp_NativeAssets_Linux)\runtimes\linux-x64\native\libHarfBuzzSharp.so" Link="x64\libHarfBuzzSharp.so" Arch="x64/" /> - <_ResizetizerFiles Include="$(PkgSvg2VectorDrawable_Net)\lib\netstandard2.0\Svg2VectorDrawable.Net.dll" /> - <_ResizetizerFiles Include="$(PkgSvg2VectorDrawable_Net)\lib\netstandard2.0\Svg2VectorDrawable.Net.pdb" /> <_ResizetizerFiles Include="$(PkgNewtonsoft_Json)\lib\netstandard2.0\Newtonsoft.Json.dll" /> diff --git a/src/SingleProject/Resizetizer/src/Resources/MauiSplash.storyboard b/src/SingleProject/Resizetizer/src/Resources/MauiSplash.storyboard index 9742fadf76c5..cbcbf306543a 100644 --- a/src/SingleProject/Resizetizer/src/Resources/MauiSplash.storyboard +++ b/src/SingleProject/Resizetizer/src/Resources/MauiSplash.storyboard @@ -19,12 +19,12 @@ - + - + diff --git a/src/SingleProject/Resizetizer/src/SkiaSharpAppIconTools.cs b/src/SingleProject/Resizetizer/src/SkiaSharpAppIconTools.cs index f2b205bfb74a..67ca95cca608 100644 --- a/src/SingleProject/Resizetizer/src/SkiaSharpAppIconTools.cs +++ b/src/SingleProject/Resizetizer/src/SkiaSharpAppIconTools.cs @@ -1,4 +1,5 @@ -using System; +#nullable enable +using System; using System.Diagnostics; using System.IO; using SkiaSharp; @@ -7,123 +8,50 @@ namespace Microsoft.Maui.Resizetizer { internal class SkiaSharpAppIconTools { - public SkiaSharpAppIconTools(ResizeImageInfo info, ILogger logger) + public SkiaSharpAppIconTools(ResizeImageInfo info, ILogger? logger) { Info = info; Logger = logger; AppIconName = info.OutputName; - hasForeground = File.Exists(info.ForegroundFilename); + var hasBackground = !string.IsNullOrWhiteSpace(info.Filename) && File.Exists(info.Filename); + var hasForeground = !string.IsNullOrWhiteSpace(info.ForegroundFilename) && File.Exists(info.ForegroundFilename); + if (!hasBackground && !hasForeground) + throw new InvalidOperationException("An app icon needs at least one image."); + if (hasBackground) + backgroundTools = SkiaSharpTools.Create(info.IsVector, info.Filename, null, null, null, logger); if (hasForeground) - foregroundTools = SkiaSharpTools.Create(info.ForegroundIsVector, info.ForegroundFilename, null, info.TintColor, logger); - - backgroundTools = SkiaSharpTools.Create(info.IsVector, info.Filename, null, null, logger); - - backgroundOriginalSize = backgroundTools.GetOriginalSize(); - - if (hasForeground) - foregroundOriginalSize = foregroundTools.GetOriginalSize(); + foregroundTools = SkiaSharpTools.Create(info.ForegroundIsVector, info.ForegroundFilename, null, null, info.TintColor, logger); } - bool hasForeground = false; - - SkiaSharpTools backgroundTools; - SkiaSharpTools foregroundTools; - - SKSize foregroundOriginalSize; - SKSize backgroundOriginalSize; + SkiaSharpTools? backgroundTools; + SkiaSharpTools? foregroundTools; public ResizeImageInfo Info { get; } - public ILogger Logger { get; } + public ILogger? Logger { get; } public string AppIconName { get; } - public ResizedImageInfo Resize(DpiPath dpi, string destination, Func getStream = null) + public ResizedImageInfo Resize(DpiPath dpi, string destination, Func? getStream = null) { var sw = new Stopwatch(); sw.Start(); - var (bgScaledSize, bgScale) = backgroundTools.GetScaledSize(backgroundOriginalSize, dpi); + // 1. if an explicit size was given by the type of image, use that + // 2. if an explicit size was given in the csproj, use that + // 3. try determine the best size based on the background then foreground + var (canvasSize, unscaledCanvasSize) = SkiaSharpTools.GetCanvasSize( + dpi, + Info.BaseSize, + backgroundTools ?? foregroundTools); - // Make the canvas size match the desired size - var canvasSize = bgScaledSize; - if (dpi.Size is SKSize size && size.Width != size.Height) - { - var scale = (float)dpi.Scale; - canvasSize = new SKSizeI((int)(size.Width * scale), (int)(size.Height * scale)); - } - - // Allocate using (var tempBitmap = new SKBitmap(canvasSize.Width, canvasSize.Height)) { - // Draw (copy) - using (var canvas = new SKCanvas(tempBitmap)) - { - canvas.Clear(Info.Color ?? SKColors.Transparent); - canvas.Save(); - canvas.Translate( - (canvasSize.Width - bgScaledSize.Width) / 2, - (canvasSize.Height - bgScaledSize.Height) / 2); - canvas.Scale(bgScale, bgScale); - - backgroundTools.DrawUnscaled(canvas, bgScale); - canvas.Restore(); - - if (hasForeground) - { - var userFgScale = (float)Info.ForegroundScale; - - // get the ratio to make the foreground fill the background - var fitRatio = bgScaledSize.Width / foregroundOriginalSize.Width; - - // calculate the scale for the foreground to fit the background exactly - var (fgScaledSize, fgScale) = foregroundTools.GetScaledSize(foregroundOriginalSize, (decimal)fitRatio); - - //Logger.Log("\tdpi.Size: " + dpi.Size); - //Logger.Log("\tdpi.Scale: " + dpi.Scale); - //Logger.Log("\tbgScaledSize: " + bgScaledSize); - //Logger.Log("\tbgScale: " + bgScale); - //Logger.Log("\tforegroundOriginalSize: " + foregroundOriginalSize); - //Logger.Log("\tfgScaledSize: " + fgScaledSize); - //Logger.Log("\tfgScale: " + fgScale); - //Logger.Log("\tuserFgScale: " + userFgScale); - - // now work out the center as if the canvas was exactly the same size as the foreground - var fgScaledSizeCenterX = foregroundOriginalSize.Width / 2; - var fgScaledSizeCenterY = foregroundOriginalSize.Height / 2; - - //Logger.Log("\tfgScaledSizeCenterX: " + fgScaledSizeCenterX); - //Logger.Log("\tfgScaledSizeCenterY: " + fgScaledSizeCenterY); - - // center the foreground - canvas.Translate( - (canvasSize.Width - fgScaledSize.Width) / 2, - (canvasSize.Height - fgScaledSize.Height) / 2); - - // scale so the forground is the same size as the background - canvas.Scale(fgScale, fgScale); - - // scale to the user scale, centering - canvas.Scale(userFgScale, userFgScale, fgScaledSizeCenterX, fgScaledSizeCenterY); - - foregroundTools.DrawUnscaled(canvas, fgScale * userFgScale); - } - } - - // Save (encode) - if (getStream is not null) - { - var stream = getStream(); - tempBitmap.Encode(stream, SKEncodedImageFormat.Png, 100); - } - else - { - using var wrapper = File.Create(destination); - tempBitmap.Encode(wrapper, SKEncodedImageFormat.Png, 100); - } + Draw(tempBitmap, dpi, unscaledCanvasSize); + Save(tempBitmap, destination, getStream); } sw.Stop(); @@ -131,5 +59,87 @@ public ResizedImageInfo Resize(DpiPath dpi, string destination, Func get return new ResizedImageInfo { Dpi = dpi, Filename = destination }; } + + void Save(SKBitmap tempBitmap, string destination, Func? getStream) + { + if (getStream is not null) + { + var stream = getStream(); + tempBitmap.Encode(stream, SKEncodedImageFormat.Png, 100); + } + else + { + var dir = Path.GetDirectoryName(destination); + Directory.CreateDirectory(dir); + + using var wrapper = File.Create(destination); + tempBitmap.Encode(wrapper, SKEncodedImageFormat.Png, 100); + } + } + + void Draw(SKBitmap tempBitmap, DpiPath dpi, SKSize unscaledCanvasSize) + { + var canvasSize = tempBitmap.Info.Size; + + using var canvas = new SKCanvas(tempBitmap); + + canvas.Clear(Info.Color ?? SKColors.Transparent); + + // draw background + if (backgroundTools is not null) + { + canvas.Save(); + + var backgroundOriginalSize = backgroundTools.GetOriginalSize(); + var (bgScaledSize, bgScale) = backgroundTools.GetScaledSize(backgroundOriginalSize, dpi, unscaledCanvasSize); + + // center the background + canvas.Translate( + (canvasSize.Width - bgScaledSize.Width) / 2, + (canvasSize.Height - bgScaledSize.Height) / 2); + + // scale the background to the desired size + canvas.Scale(bgScale, bgScale); + + // draw + backgroundTools.DrawUnscaled(canvas, bgScale); + + canvas.Restore(); + } + + // draw foreground + if (foregroundTools is not null) + { + var foregroundOriginalSize = foregroundTools.GetOriginalSize(); + var (fgScaledSize, fgScale) = foregroundTools.GetScaledSize(foregroundOriginalSize, dpi, unscaledCanvasSize); + + // center the foreground + canvas.Translate( + (canvasSize.Width - fgScaledSize.Width) / 2, + (canvasSize.Height - fgScaledSize.Height) / 2); + + // scale the background to the desired size + canvas.Scale(fgScale, fgScale); + + // add any foreground scale on top + if (Info.ForegroundScale != 1.0) + { + var userFgScale = (float)Info.ForegroundScale; + + // add the user scale to the main scale + fgScale *= userFgScale; + + // work out the center as if the canvas was exactly the same size as the foreground + var fgCenterX = foregroundOriginalSize.Width / 2; + var fgCenterY = foregroundOriginalSize.Height / 2; + + // scale to the user scale, centering + canvas.Scale(userFgScale, userFgScale, fgCenterX, fgCenterY); + } + + // draw + foregroundTools.DrawUnscaled(canvas, fgScale); + } + } } } diff --git a/src/SingleProject/Resizetizer/src/SkiaSharpBitmapTools.cs b/src/SingleProject/Resizetizer/src/SkiaSharpBitmapTools.cs index 1cd5e6f20c12..4cf25481d7c2 100644 --- a/src/SingleProject/Resizetizer/src/SkiaSharpBitmapTools.cs +++ b/src/SingleProject/Resizetizer/src/SkiaSharpBitmapTools.cs @@ -9,12 +9,12 @@ internal class SkiaSharpBitmapTools : SkiaSharpTools, IDisposable SKBitmap bmp; public SkiaSharpBitmapTools(ResizeImageInfo info, ILogger logger) - : this(info.Filename, info.BaseSize, info.TintColor, logger) + : this(info.Filename, info.BaseSize, info.Color, info.TintColor, logger) { } - public SkiaSharpBitmapTools(string filename, SKSize? baseSize, SKColor? tintColor, ILogger logger) - : base(filename, baseSize, tintColor, logger) + public SkiaSharpBitmapTools(string filename, SKSize? baseSize, SKColor? backgroundColor, SKColor? tintColor, ILogger logger) + : base(filename, baseSize, backgroundColor, tintColor, logger) { var sw = new Stopwatch(); sw.Start(); diff --git a/src/SingleProject/Resizetizer/src/SkiaSharpImaginaryTools.cs b/src/SingleProject/Resizetizer/src/SkiaSharpImaginaryTools.cs new file mode 100644 index 000000000000..e1d7e34b7b17 --- /dev/null +++ b/src/SingleProject/Resizetizer/src/SkiaSharpImaginaryTools.cs @@ -0,0 +1,29 @@ +using System; +using SkiaSharp; + +namespace Microsoft.Maui.Resizetizer +{ + internal class SkiaSharpImaginaryTools : SkiaSharpTools, IDisposable + { + public SkiaSharpImaginaryTools(ResizeImageInfo info, ILogger logger) + : this(info.Color, logger) + { + } + + public SkiaSharpImaginaryTools(SKColor? backgroundColor, ILogger logger) + : base(null, new SKSize(1, 1), backgroundColor, null, logger) + { + } + + public override SKSize GetOriginalSize() => BaseSize.Value; + + public override void DrawUnscaled(SKCanvas canvas, float scale) + { + // no-op + } + + public void Dispose() + { + } + } +} diff --git a/src/SingleProject/Resizetizer/src/SkiaSharpSvgTools.cs b/src/SingleProject/Resizetizer/src/SkiaSharpSvgTools.cs index 050ac761c7f3..430fcc5d6af7 100644 --- a/src/SingleProject/Resizetizer/src/SkiaSharpSvgTools.cs +++ b/src/SingleProject/Resizetizer/src/SkiaSharpSvgTools.cs @@ -10,12 +10,12 @@ internal class SkiaSharpSvgTools : SkiaSharpTools, IDisposable SKSvg svg; public SkiaSharpSvgTools(ResizeImageInfo info, ILogger logger) - : this(info.Filename, info.BaseSize, info.TintColor, logger) + : this(info.Filename, info.BaseSize, info.Color, info.TintColor, logger) { } - public SkiaSharpSvgTools(string filename, SKSize? baseSize, SKColor? tintColor, ILogger logger) - : base(filename, baseSize, tintColor, logger) + public SkiaSharpSvgTools(string filename, SKSize? baseSize, SKColor? backgroundColor, SKColor? tintColor, ILogger logger) + : base(filename, baseSize, backgroundColor, tintColor, logger) { var sw = new Stopwatch(); sw.Start(); diff --git a/src/SingleProject/Resizetizer/src/SkiaSharpTools.cs b/src/SingleProject/Resizetizer/src/SkiaSharpTools.cs index 0c66ef35d5a4..cc570187423e 100644 --- a/src/SingleProject/Resizetizer/src/SkiaSharpTools.cs +++ b/src/SingleProject/Resizetizer/src/SkiaSharpTools.cs @@ -7,21 +7,25 @@ namespace Microsoft.Maui.Resizetizer { internal abstract class SkiaSharpTools { - public static SkiaSharpTools Create(bool isVector, string filename, SKSize? baseSize, SKColor? tintColor, ILogger logger) + public static SkiaSharpTools Create(bool isVector, string filename, SKSize? baseSize, SKColor? backgroundColor, SKColor? tintColor, ILogger logger) => isVector - ? new SkiaSharpSvgTools(filename, baseSize, tintColor, logger) as SkiaSharpTools - : new SkiaSharpBitmapTools(filename, baseSize, tintColor, logger); + ? new SkiaSharpSvgTools(filename, baseSize, backgroundColor, tintColor, logger) as SkiaSharpTools + : new SkiaSharpBitmapTools(filename, baseSize, backgroundColor, tintColor, logger); + + public static SkiaSharpTools CreateImaginary(SKColor? backgroundColor, ILogger logger) + => new SkiaSharpImaginaryTools(backgroundColor, logger); public SkiaSharpTools(ResizeImageInfo info, ILogger logger) - : this(info.Filename, info.BaseSize, info.TintColor, logger) + : this(info.Filename, info.BaseSize, info.Color, info.TintColor, logger) { } - public SkiaSharpTools(string filename, SKSize? baseSize, SKColor? tintColor, ILogger logger) + public SkiaSharpTools(string filename, SKSize? baseSize, SKColor? backgroundColor, SKColor? tintColor, ILogger logger) { Logger = logger; Filename = filename; BaseSize = baseSize; + BackgroundColor = backgroundColor; if (tintColor is SKColor tint) { @@ -38,71 +42,128 @@ public SkiaSharpTools(string filename, SKSize? baseSize, SKColor? tintColor, ILo public SKSize? BaseSize { get; } + public SKColor? BackgroundColor { get; } + public ILogger Logger { get; } public SKPaint Paint { get; } - public void Resize(DpiPath dpi, string destination) + public void Resize(DpiPath dpi, string destination, double additionalScale = 1.0, bool dpiSizeIsAbsolute = false) { - var originalSize = GetOriginalSize(); - var (scaledSize, scale) = GetScaledSize(originalSize, dpi.Scale); - var sw = new Stopwatch(); sw.Start(); - // Allocate - using (var tempBitmap = new SKBitmap(scaledSize.Width, scaledSize.Height)) + var originalSize = GetOriginalSize(); + var absoluteSize = dpiSizeIsAbsolute ? dpi.Size : null; + var (scaledSize, scale) = GetScaledSize(originalSize, dpi, absoluteSize); + var (canvasSize, _) = GetCanvasSize(dpi, null, this); + + using (var tempBitmap = new SKBitmap(canvasSize.Width, canvasSize.Height)) { - // Draw (copy) - using (var canvas = new SKCanvas(tempBitmap)) - { - canvas.Clear(SKColors.Transparent); - canvas.Save(); - canvas.Scale(scale, scale); - DrawUnscaled(canvas, scale); - } - - // Save (encode) - using var stream = File.Create(destination); - tempBitmap.Encode(stream, SKEncodedImageFormat.Png, 100); + Draw(tempBitmap, additionalScale, originalSize, scale, scaledSize); + Save(destination, tempBitmap); } sw.Stop(); Logger?.Log($"Save Image took {sw.ElapsedMilliseconds}ms ({destination})"); } - public abstract SKSize GetOriginalSize(); + public static (SKSizeI Scaled, SKSize Unscaled) GetCanvasSize(DpiPath dpi, SKSize? baseSize = null, SkiaSharpTools baseTools = null) + { + // if an explicit size was given by the type of image, use that + if (dpi.Size is SKSize size) + { + var scale = (float)dpi.Scale; + var scaled = new SKSizeI( + (int)(size.Width * scale), + (int)(size.Height * scale)); + return (scaled, size); + } - public abstract void DrawUnscaled(SKCanvas canvas, float scale); + // if an explicit size was given in the csproj, use that + if (baseSize is SKSize bs) + { + var scale = (float)dpi.Scale; + var scaled = new SKSizeI( + (int)(bs.Width * scale), + (int)(bs.Height * scale)); + return (scaled, bs); + } - public (SKSizeI, float) GetScaledSize(SKSize originalSize, DpiPath dpi) - { - if (dpi.Size.HasValue) - return GetScaledSize(originalSize, dpi.Scale, dpi.Size.Value); - else - return GetScaledSize(originalSize, dpi.Scale); + // try determine the best size based on the loaded image + if (baseTools is not null) + { + var baseOriginalSize = baseTools.GetOriginalSize(); + var (baseScaledSize, _) = baseTools.GetScaledSize(baseOriginalSize, dpi.Scale); + return (baseScaledSize, baseOriginalSize); + } + + throw new InvalidOperationException("The canvas size cannot be calculated if there is no size to start from (DPI size, BaseSize or image size)."); } - (SKSizeI, float) GetScaledSize(SKSize originalSize, decimal scale, SKSize absoluteSize) + void Draw(SKBitmap tempBitmap, double additionalScale, SKSize originalSize, float scale, SKSizeI scaledSize) { - var ratio = Math.Min( - (decimal)absoluteSize.Width / (decimal)originalSize.Width, - (decimal)absoluteSize.Height / (decimal)originalSize.Height); + using var canvas = new SKCanvas(tempBitmap); - return GetScaledSize(originalSize, ratio * scale); + var canvasSize = tempBitmap.Info.Size; + + // clear + canvas.Clear(BackgroundColor ?? SKColors.Transparent); + + // center the drawing + canvas.Translate( + (canvasSize.Width - scaledSize.Width) / 2, + (canvasSize.Height - scaledSize.Height) / 2); + + // apply initial scale to size the image to fit the canvas + canvas.Scale(scale, scale); + + // apply additional user scaling + if (additionalScale != 1.0) + { + var userFgScale = (float)additionalScale; + + // add the user scale to the main scale + scale *= userFgScale; + + // work out the center as if the canvas was exactly the same size as the foreground + var fgCenterX = originalSize.Width / 2; + var fgCenterY = originalSize.Height / 2; + + // scale to the user scale, centering + canvas.Scale(userFgScale, userFgScale, fgCenterX, fgCenterY); + } + + // draw + DrawUnscaled(canvas, scale); } - public (SKSizeI, float) GetScaledSize(SKSize originalSize, decimal resizeRatio) + void Save(string destination, SKBitmap tempBitmap) + { + using var stream = File.Create(destination); + tempBitmap.Encode(stream, SKEncodedImageFormat.Png, 100); + } + + public abstract SKSize GetOriginalSize(); + + public abstract void DrawUnscaled(SKCanvas canvas, float scale); + + public (SKSizeI, float) GetScaledSize(SKSize originalSize, DpiPath dpi, SKSize? absoluteSize = null) => + GetScaledSize(originalSize, dpi.Scale, absoluteSize ?? dpi.Size); + + public (SKSizeI, float) GetScaledSize(SKSize originalSize, decimal resizeRatio, SKSize? absoluteSize = null) { - var sourceNominalWidth = (int)(BaseSize?.Width ?? originalSize.Width); - var sourceNominalHeight = (int)(BaseSize?.Height ?? originalSize.Height); + var sourceNominalWidth = (int)(absoluteSize?.Width ?? BaseSize?.Width ?? originalSize.Width); + var sourceNominalHeight = (int)(absoluteSize?.Height ?? BaseSize?.Height ?? originalSize.Height); // Find the actual size of the image var sourceActualWidth = (double)originalSize.Width; var sourceActualHeight = (double)originalSize.Height; // Figure out what the ratio to convert the actual image size to the nominal size is - var nominalRatio = Math.Max(sourceNominalWidth / sourceActualWidth, sourceNominalHeight / sourceActualHeight); + var nominalRatio = Math.Min( + sourceNominalWidth / sourceActualWidth, + sourceNominalHeight / sourceActualHeight); // Multiply nominal ratio by the resize ratio to get our final ratio we actually adjust by var adjustRatio = nominalRatio * (double)resizeRatio; @@ -110,7 +171,9 @@ public void Resize(DpiPath dpi, string destination) // Figure out our scaled width and height to make a new canvas for var scaledWidth = sourceActualWidth * adjustRatio; var scaledHeight = sourceActualHeight * adjustRatio; - var scaledSize = new SKSizeI((int)Math.Round(scaledWidth), (int)Math.Round(scaledHeight)); + var scaledSize = new SKSizeI( + (int)Math.Round(scaledWidth), + (int)Math.Round(scaledHeight)); return (scaledSize, (float)adjustRatio); } diff --git a/src/SingleProject/Resizetizer/src/TizenResourceXmlGenerator.cs b/src/SingleProject/Resizetizer/src/TizenResourceXmlGenerator.cs index cecec52c5caa..ebb2e2f3cef4 100644 --- a/src/SingleProject/Resizetizer/src/TizenResourceXmlGenerator.cs +++ b/src/SingleProject/Resizetizer/src/TizenResourceXmlGenerator.cs @@ -71,17 +71,17 @@ public void Generate() foreach (XmlNode groupNode in rootNode) { XmlElement node = doc.CreateElement("node", NamespaceURI); - node.SetAttribute("folder", $"contents/{ subDir.Name }"); + node.SetAttribute("folder", $"contents/{subDir.Name}"); node.SetAttribute("screen-dpi-range", dpiRange); groupNode.AppendChild(node); - Logger.Log($"Add { subDir.Name } to { groupNode.Name }"); + Logger.Log($"Add {subDir.Name} to {groupNode.Name}"); } } } } doc.Save(Path.Combine(outputResourceDir, "res.xml")); - Logger.Log($"res.xml file has been saved in { outputResourceDir }"); + Logger.Log($"res.xml file has been saved in {outputResourceDir}"); } } } diff --git a/src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs b/src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs index 7459197728d2..b2423b4bb6f1 100644 --- a/src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs +++ b/src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs @@ -25,6 +25,7 @@ public override bool Execute() { if (UpdateSplashImage()) UpdateManifest(); + return !Log.HasLoggedErrors; } @@ -38,27 +39,30 @@ public override bool Execute() public bool UpdateSplashImage() { var splash = MauiSplashScreen[0]; - var image = Path.GetFileNameWithoutExtension(splash.ItemSpec) + ".png"; + + var info = ResizeImageInfo.Parse(splash); + + var image = info.OutputName + ".png"; var sharedResFullPath = Path.GetFullPath(Path.Combine(IntermediateOutputPath, "shared/res/")); var splashFullPath = Path.Combine(sharedResFullPath, splashDirectoryName); if (Directory.Exists(splashFullPath)) - { Directory.Delete(splashFullPath, true); - } Directory.CreateDirectory(splashFullPath); foreach (var dpi in DpiPath.Tizen.SplashScreen) { var imageOutputPath = Path.GetFullPath(Path.Combine(IntermediateOutputPath, dpi.Path)); var imageFullPath = Path.Combine(imageOutputPath, image); + if (File.Exists(imageFullPath)) { var resolution = dpi.Path.Split('-')[1].ToLower(); foreach (var orientation in orientations) { - var newImage = Path.GetFileNameWithoutExtension(splash.ItemSpec) + "." + resolution + "." + orientation + ".png"; - splashDpiMap.Add((resolution, orientation), $"{splashDirectoryName}/{ newImage }"); + var newImage = $"{info.OutputName}.{resolution}.{orientation}.png"; + + splashDpiMap.Add((resolution, orientation), $"{splashDirectoryName}/{newImage}"); UpdateColorAndMoveFile(GetScreenSize(resolution, orientation), imageFullPath, Path.Combine(splashFullPath, newImage)); } } @@ -68,65 +72,51 @@ public bool UpdateSplashImage() return false; } } + return true; } - Size GetScreenSize(string resolution, string orientation) - { - if (resolution == "mdpi") + Size GetScreenSize(string resolution, string orientation) => + resolution switch { - return orientation == "portrait" ? hdSize : new Size(hdSize.Height, hdSize.Width); - } - else - { - return orientation == "portrait" ? fhdSize : new Size(fhdSize.Height, fhdSize.Width); - } - } + "mdpi" => orientation == "portrait" ? hdSize : new Size(hdSize.Height, hdSize.Width), + _ => orientation == "portrait" ? fhdSize : new Size(fhdSize.Height, fhdSize.Width) + }; public void UpdateColorAndMoveFile(Size screenSize, string sourceFilePath, string destFilePath) { var splash = MauiSplashScreen[0]; - var colorMetadata = splash.GetMetadata("Color"); - var color = Utils.ParseColorString(colorMetadata); - if (color == null) - { - if (!string.IsNullOrEmpty(colorMetadata)) - { - Log.LogWarning($"Unable to parse color value '{colorMetadata}' for '{splash.ItemSpec}'."); - } - color = SKColors.White; - } - using (SKBitmap bmp = SKBitmap.Decode(sourceFilePath)) + var splashInfo = ResizeImageInfo.Parse(splash); + + var color = splashInfo.Color ?? SKColors.White; + + using var bmp = SKBitmap.Decode(sourceFilePath); + SKImageInfo info = new SKImageInfo(screenSize.Width, screenSize.Height); + + using var surface = SKSurface.Create(info); + SKCanvas canvas = surface.Canvas; + canvas.Clear(color); + + using var paint = new SKPaint { - SKImageInfo info = new SKImageInfo(screenSize.Width, screenSize.Height); - using (SKSurface surface = SKSurface.Create(info)) - { - SKCanvas canvas = surface.Canvas; - canvas.Clear(color.Value); - using SKPaint paint = new SKPaint - { - IsAntialias = true, - FilterQuality = SKFilterQuality.High - }; - - var left = screenSize.Width <= bmp.Width ? 0 : (screenSize.Width - bmp.Width) / 2; - var top = screenSize.Height <= bmp.Height ? 0 : (screenSize.Height - bmp.Height) / 2; - var right = screenSize.Width <= bmp.Width ? left + screenSize.Width : left + bmp.Width; - var bottom = screenSize.Height <= bmp.Height ? top + screenSize.Height : top + bmp.Height; - canvas.DrawBitmap(bmp, new SKRect(left, top, right, bottom), paint); - canvas.Flush(); - - var updatedsplash = surface.Snapshot(); - using (var data = updatedsplash.Encode(SKEncodedImageFormat.Png, 100)) - { - using (var stream = File.Create(destFilePath)) - { - data.SaveTo(stream); - } - } - } - } + IsAntialias = true, + FilterQuality = SKFilterQuality.High + }; + + var left = screenSize.Width <= bmp.Width ? 0 : (screenSize.Width - bmp.Width) / 2; + var top = screenSize.Height <= bmp.Height ? 0 : (screenSize.Height - bmp.Height) / 2; + var right = screenSize.Width <= bmp.Width ? left + screenSize.Width : left + bmp.Width; + var bottom = screenSize.Height <= bmp.Height ? top + screenSize.Height : top + bmp.Height; + + canvas.DrawBitmap(bmp, new SKRect(left, top, right, bottom), paint); + canvas.Flush(); + + var updatedsplash = surface.Snapshot(); + + using var data = updatedsplash.Encode(SKEncodedImageFormat.Png, 100); + using var stream = File.Create(destFilePath); + data.SaveTo(stream); } public void UpdateManifest() @@ -151,6 +141,7 @@ public void UpdateManifest() Log.LogWarning($"Failed to find "); return; } + var splashScreensNodeList = doc.SelectNodes("//manifest:splash-screens", nsmgr); XmlNode splashScreensNode; if (splashScreensNodeList.Count == 0) @@ -166,9 +157,7 @@ public void UpdateManifest() { var dpiValue = splashScreenNode.Attributes.GetNamedItem("dpi")?.Value; if (dpiValue == "mdpi" || dpiValue == "hdpi") - { nodesToRemove.Add(splashScreenNode); - } } foreach (XmlNode node in nodesToRemove) { diff --git a/src/SingleProject/Resizetizer/src/WindowsIconGenerator.cs b/src/SingleProject/Resizetizer/src/WindowsIconGenerator.cs index da85d4393e3a..c051fb07ad27 100644 --- a/src/SingleProject/Resizetizer/src/WindowsIconGenerator.cs +++ b/src/SingleProject/Resizetizer/src/WindowsIconGenerator.cs @@ -35,7 +35,7 @@ public ResizedImageInfo Generate() MemoryStream memoryStream = new MemoryStream(); tools.Resize(dpi, destination, () => memoryStream); memoryStream.Position = 0; - + int numberOfImages = 1; using BinaryWriter writer = new BinaryWriter(File.Create(destination)); writer.Write((short)0x0); // Reserved. Must always be 0. @@ -49,7 +49,7 @@ public ResizedImageInfo Generate() writer.Write((short)0x1); // Specifies color planes. Should be 0 or 1 writer.Write((short)0x8); // Specifies bits per pixel. writer.Write((int)memoryStream.Length); // Specifies the size of the image's data in bytes - + int offset = 6 + (16 * numberOfImages); // + length of previous images writer.Write(offset); // Specifies the offset of BMP or PNG data from the beginning of the ICO/CUR file diff --git a/src/SingleProject/Resizetizer/test/UnitTests/BaseTest.cs b/src/SingleProject/Resizetizer/test/UnitTests/BaseTest.cs new file mode 100644 index 000000000000..6763d1ea33d1 --- /dev/null +++ b/src/SingleProject/Resizetizer/test/UnitTests/BaseTest.cs @@ -0,0 +1,179 @@ +using System; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Runtime.CompilerServices; +using SkiaSharp; +using Xunit; + +namespace Microsoft.Maui.Resizetizer.Tests +{ + public class BaseTest : IDisposable + { + private const string TestFolderName = "Microsoft.Maui.Resizetizer.Tests"; + private const string TestImagesFolderName = "imageresults"; + + private readonly string DeleteDirectory; + protected readonly string DestinationDirectory; + + public BaseTest(string testContextDirectory = null) + { + if (!string.IsNullOrEmpty(testContextDirectory)) + { + DestinationDirectory = testContextDirectory; + DeleteDirectory = testContextDirectory; + } + else + { + var name = GetType().FullName; + if (name.StartsWith(TestFolderName + ".", StringComparison.OrdinalIgnoreCase)) + name = name.Substring(TestFolderName.Length + 1); + + var dir = Path.Combine(Path.GetTempPath(), TestFolderName, name, Path.GetRandomFileName()); + + DestinationDirectory = dir; + DeleteDirectory = dir; + } + } + + public virtual void Dispose() + { + if (Directory.Exists(DeleteDirectory)) + Directory.Delete(DeleteDirectory, true); + } + + protected void AssertFileSize(string file, int width, int height) + { + file = Path.Combine(DestinationDirectory, file); + + Assert.True(File.Exists(file), $"File did not exist: {file}"); + + using var codec = SKCodec.Create(file); + Assert.Equal(new SKSizeI(width, height), codec.Info.Size); + } + + protected void AssertFileExists(string file) + { + file = Path.Combine(DestinationDirectory, file); + + Assert.True(File.Exists(file), $"File did not exist: {file}"); + } + + protected void AssertFileNotExists(string file) + { + file = Path.Combine(DestinationDirectory, file); + + Assert.False(File.Exists(file), $"File existed: {file}"); + } + + protected void AssertFileContains(string file, params string[] snippet) + { + file = Path.Combine(DestinationDirectory, file); + + var content = File.ReadAllText(file); + + foreach (var snip in snippet) + Assert.Contains(snip, content, StringComparison.Ordinal); + } + + protected void AssertFileContains(string file, SKColor color, int x, int y) + { + file = Path.Combine(DestinationDirectory, file); + + using var resultImage = SKBitmap.Decode(file); + Assert.Equal(color, resultImage.GetPixel(x, y)); + } + + protected void AssertFileDoesNotContain(string file, SKColor color, int x, int y) + { + file = Path.Combine(DestinationDirectory, file); + + using var resultImage = SKBitmap.Decode(file); + Assert.NotEqual(color, resultImage.GetPixel(x, y)); + } + + protected void AssertFileContains(string file, params SKColor[] colors) + { + file = Path.Combine(DestinationDirectory, file); + + using var resultImage = SKBitmap.Decode(file); + var pixels = resultImage.Pixels; + foreach (var color in colors) + Assert.Contains(color, pixels); + } + + protected void AssertFileDoesNotContain(string file, params SKColor[] colors) + { + file = Path.Combine(DestinationDirectory, file); + + using var resultImage = SKBitmap.Decode(file); + var pixels = resultImage.Pixels; + foreach (var color in colors) + Assert.DoesNotContain(color, pixels); + } + + protected void AssertFileMatches(string destinationFilename, object[] args = null, [CallerMemberName] string methodName = null) => + AssertFileMatchesReal(destinationFilename, args, methodName); + + protected void SaveImageResultFile(string destinationFilename, object[] args = null, [CallerMemberName] string methodName = null) => + SaveImageResultFileReal(destinationFilename, args, methodName); + + void AssertFileMatchesReal(string destinationFilename, object[] args = null, [CallerMemberName] string methodName = null) + { + var imagePath = GetTestImageFileName(args, methodName); + var expected = SKBitmap.Decode(imagePath); + Assert.NotNull(expected); + + var src = Path.IsPathRooted(destinationFilename) + ? destinationFilename + : Path.Combine(DestinationDirectory, destinationFilename); + var actual = SKBitmap.Decode(src); + Assert.NotNull(actual); + + Assert.Equal(expected.Info.Size, actual.Info.Size); + Assert.Equal(expected.Pixels, actual.Pixels); + } + + void SaveImageResultFileReal(string destinationFilename, object[] args = null, [CallerMemberName] string methodName = null) + { + // working + up 3 levels (../../..) + var root = Directory.GetCurrentDirectory(); + root = Path.GetDirectoryName(root); + root = Path.GetDirectoryName(root); + root = Path.GetDirectoryName(root); + + var imagePath = GetTestImageFileName(args, methodName); + var path = Path.Combine(root, imagePath); + + var dir = Path.GetDirectoryName(path); + Directory.CreateDirectory(dir); + + var src = Path.IsPathRooted(destinationFilename) + ? destinationFilename + : Path.Combine(DestinationDirectory, destinationFilename); + + File.Copy(src, path, true); + } + + private string GetTestImageFileName(object[] args, string methodName) + { + var strsSelect = args?.Select(a => string + .Format(CultureInfo.InvariantCulture, "{0}", a ?? "NULL") + .Replace("\\", "SLASH", StringComparison.OrdinalIgnoreCase) + .Replace("/", "SLASH", StringComparison.OrdinalIgnoreCase) + .Replace("#", "", StringComparison.OrdinalIgnoreCase)); + + var strs = strsSelect?.ToArray(); + var sepStr = strs?.Length > 0 ? "-" : ""; + var argStr = strs?.Length > 0 ? string.Join("-", strs) : ""; + + var filename = $"output{sepStr}{argStr}.png"; + + var name = GetType().FullName; + if (name.StartsWith(TestFolderName + ".", StringComparison.OrdinalIgnoreCase)) + name = name.Substring(TestFolderName.Length + 1); + + return Path.Combine(TestImagesFolderName, name, methodName, filename); + } + } +} diff --git a/src/SingleProject/Resizetizer/test/UnitTests/DetectInvalidResourceOutputFilenamesTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/DetectInvalidResourceOutputFilenamesTests.cs index 928b63cb3aee..fcf068259354 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/DetectInvalidResourceOutputFilenamesTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/DetectInvalidResourceOutputFilenamesTests.cs @@ -92,6 +92,31 @@ public void InvalidFileFails() AssertInvalidFilename(task, i); Assert.False(success); } + + [Fact] + public void SingleInvalidFileFailsWithCorrectErrorMessage() + { + var i = new TaskItem("images/appiconfg-red-512.svg"); + var task = GetNewTask(i); + + var success = task.Execute(); + Assert.False(success); + + Assert.Equal("Invalid Filenames: appiconfg-red-512", LogErrorEvents[0].Message); + } + + [Fact] + public void MultipleInvalidFileFailsWithCorrectErrorMessage() + { + var i = new TaskItem("images/appiconfg-red-512.svg"); + var j = new TaskItem("images/appiconfg-red-512.svg"); + var task = GetNewTask(i, j); + + var success = task.Execute(); + Assert.False(success); + + Assert.Equal("Invalid Filenames: appiconfg-red-512, appiconfg-red-512", LogErrorEvents[0].Message); + } } } } diff --git a/src/SingleProject/Resizetizer/test/UnitTests/GeneratePackageAppxManifestTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/GeneratePackageAppxManifestTests.cs index 094e83ff7c40..8b8a1ad52267 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/GeneratePackageAppxManifestTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/GeneratePackageAppxManifestTests.cs @@ -10,7 +10,8 @@ namespace Microsoft.Maui.Resizetizer.Tests { public class GeneratePackageAppxManifestTests : MSBuildTaskTestFixture { - protected GeneratePackageAppxManifest GetNewTask(string manifest, + protected GeneratePackageAppxManifest GetNewTask( + string manifest, string? generatedFilename = null, string? guid = null, string? displayVersion = null, diff --git a/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAndroidResourcesTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAndroidResourcesTests.cs index 9b90364480ea..29f2a145b91d 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAndroidResourcesTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAndroidResourcesTests.cs @@ -1,4 +1,7 @@ -using System.IO; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; using System.Xml.Linq; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; @@ -17,23 +20,35 @@ public GenerateSplashAndroidResourcesTests() _drawable = Path.Combine(DestinationDirectory, "maui_splash_image.xml"); } - protected GenerateSplashAndroidResources GetNewTask(ITaskItem splash) => new() + protected GenerateSplashAndroidResources GetNewTask(ITaskItem splash) => + new() + { + MauiSplashScreen = new[] { splash }, + ColorsFile = _colors, + DrawableFile = _drawable, + BuildEngine = this, + }; + + void AssertColorsFile(string color) { - MauiSplashScreen = new[] { splash }, - ColorsFile = _colors, - DrawableFile = _drawable, - BuildEngine = this, - }; + var expectedXml = File.ReadAllText($"testdata/androidsplash/maui_colors.xml") + .Replace("{maui_splash_color}", color, StringComparison.OrdinalIgnoreCase); + + var actual = XElement.Load(_colors); + var expected = XElement.Parse(expectedXml); + + Assert.True(XNode.DeepEquals(actual, expected), $"{_colors} did not match:\n{actual}"); + } - void AssertFile(string actualPath, params object[] args) + void AssertImageFile(string image) { - using var actualStream = File.OpenRead(actualPath); - var actual = XElement.Load(actualStream); + var expectedXml = File.ReadAllText($"testdata/androidsplash/maui_splash_image.xml") + .Replace("{drawable}", image, StringComparison.OrdinalIgnoreCase); - using var expectedStream = GetType().Assembly.GetManifestResourceStream(Path.GetFileName(actualPath)); - using var reader = new StreamReader(expectedStream); - var expected = XElement.Parse(string.Format(reader.ReadToEnd(), args)); - Assert.True(XNode.DeepEquals(actual, expected), $"{actualPath} did not match:\n{actual}"); + var actual = XElement.Load(_drawable); + var expected = XElement.Parse(expectedXml); + + Assert.True(XNode.DeepEquals(actual, expected), $"{_drawable} did not match:\n{actual}"); } [Theory] @@ -41,14 +56,34 @@ void AssertFile(string actualPath, params object[] args) [InlineData("Red", "#ffff0000")] public void XmlIsValid(string inputColor, string outputColor) { - var splash = new TaskItem("images/appiconfg.svg"); - splash.SetMetadata("Color", inputColor); + var splash = new TaskItem("images/appiconfg.svg", new Dictionary + { + ["Color"] = inputColor, + }); + var task = GetNewTask(splash); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + AssertColorsFile(outputColor); + AssertImageFile("@drawable/appiconfg"); + } + + [Theory] + [InlineData(null, "appiconfg")] + [InlineData("images/CustomAlias.svg", "CustomAlias")] + public void SplashScreenResectsAlias(string alias, string outputImage) + { + var splash = new TaskItem("images/appiconfg.svg", new Dictionary + { + ["Link"] = alias, + }); + + var task = GetNewTask(splash); var success = task.Execute(); - Assert.True(success, $"{task.GetType()}.Execute() failed."); - AssertFile(_colors, outputColor); - AssertFile(_drawable, "@drawable/appiconfg"); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + + AssertImageFile($"@drawable/{outputImage}"); } } } diff --git a/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAssetsTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAssetsTests.cs index fe92d6b12546..b2b16aad10c1 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAssetsTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashAssetsTests.cs @@ -1,4 +1,6 @@ -using System.IO; +using System.Collections.Generic; +using System.IO; +using System.Linq; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using SkiaSharp; @@ -32,16 +34,37 @@ void AssertFile(string file, int width, int height) [InlineData("appiconfg", "#0000FF")] public void FileIsGenerated(string image, string color) { - var splash = new TaskItem($"images/{image}.svg"); - splash.SetMetadata("Color", color); - var task = GetNewTask(splash); + var splash = new TaskItem($"images/{image}.svg", new Dictionary + { + ["Color"] = color, + }); + var task = GetNewTask(splash); var success = task.Execute(); - Assert.True(success, $"{task.GetType()}.Execute() failed."); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFile($"{image}SplashScreen.scale-100.png", 620, 300); AssertFile($"{image}SplashScreen.scale-125.png", 775, 375); AssertFile($"{image}SplashScreen.scale-200.png", 1240, 600); } + + [Theory] + [InlineData(null, "appiconfg")] + [InlineData("images/CustomAlias.svg", "CustomAlias")] + public void SplashScreenResectsAlias(string alias, string outputImage) + { + var splash = new TaskItem("images/appiconfg.svg", new Dictionary + { + ["Link"] = alias, + }); + + var task = GetNewTask(splash); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + + AssertFile($"{outputImage}SplashScreen.scale-100.png", 620, 300); + AssertFile($"{outputImage}SplashScreen.scale-125.png", 775, 375); + AssertFile($"{outputImage}SplashScreen.scale-200.png", 1240, 600); + } } } diff --git a/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashStoryboardTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashStoryboardTests.cs index b175696fda21..3213ee15107a 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashStoryboardTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/GenerateSplashStoryboardTests.cs @@ -1,4 +1,7 @@ -using System.IO; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; using System.Xml.Linq; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; @@ -15,21 +18,23 @@ public GenerateSplashStoryboardTests() _storyboard = Path.Combine(DestinationDirectory, "MauiSplash.storyboard"); } - protected GenerateSplashStoryboard GetNewTask(ITaskItem splash) => new() - { - OutputFile = _storyboard, - MauiSplashScreen = new[] { splash }, - BuildEngine = this, - }; + protected GenerateSplashStoryboard GetNewTask(ITaskItem splash) => + new() + { + OutputFile = _storyboard, + MauiSplashScreen = new[] { splash }, + BuildEngine = this, + }; - void AssertFile(string actualPath, params object[] args) + void AssertFile(string actualPath, string image, string r, string g, string b, string a) { using var actualStream = File.OpenRead(actualPath); var actual = XElement.Load(actualStream); - using var expectedStream = typeof(GenerateSplashStoryboard).Assembly.GetManifestResourceStream(Path.GetFileName(actualPath)); - using var reader = new StreamReader(expectedStream); - var expected = XElement.Parse(string.Format(reader.ReadToEnd(), args)); + using var expectedBuilder = new StringWriter(); + GenerateSplashStoryboard.SubstituteStoryboard(expectedBuilder, image, r, g, b, a); + var expected = XElement.Parse(expectedBuilder.ToString()); + Assert.True(XNode.DeepEquals(actual, expected), $"{actualPath} did not match:\n{actual}"); } @@ -38,13 +43,33 @@ void AssertFile(string actualPath, params object[] args) [InlineData("Green", "0", "0.5019608", "0", "1")] public void XmlIsValid(string inputColor, string r, string g, string b, string a) { - var splash = new TaskItem("images/appiconfg.svg"); - splash.SetMetadata("Color", inputColor); - var task = GetNewTask(splash); + var splash = new TaskItem("images/appiconfg.svg", new Dictionary + { + ["Color"] = inputColor, + }); + var task = GetNewTask(splash); var success = task.Execute(); - Assert.True(success, $"{task.GetType()}.Execute() failed."); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + AssertFile(_storyboard, "appiconfg.png", r, g, b, a); } + + [Theory] + [InlineData(null, "appiconfg.png")] + [InlineData("images/CustomAlias.svg", "CustomAlias.png")] + public void SplashScreenResectsAlias(string alias, string outputImage) + { + var splash = new TaskItem("images/appiconfg.svg", new Dictionary + { + ["Link"] = alias, + }); + + var task = GetNewTask(splash); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + + AssertFile(_storyboard, outputImage, "1", "1", "1", "1"); + } } } diff --git a/src/SingleProject/Resizetizer/test/UnitTests/MSBuildTaskFixture.cs b/src/SingleProject/Resizetizer/test/UnitTests/MSBuildTaskFixture.cs index e13bfe6c0bcf..72ec25e7c25d 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/MSBuildTaskFixture.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/MSBuildTaskFixture.cs @@ -1,16 +1,13 @@ using System; using System.Collections; using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; using Microsoft.Build.Framework; namespace Microsoft.Maui.Resizetizer.Tests { - public abstract class MSBuildTaskTestFixture : IDisposable, IBuildEngine where TTask : Microsoft.Build.Framework.ITask + public abstract class MSBuildTaskTestFixture : BaseTest, IBuildEngine + where TTask : Microsoft.Build.Framework.ITask { - protected readonly string DestinationDirectory; protected readonly TestLogger Logger; protected List LogErrorEvents = new List(); @@ -18,17 +15,6 @@ public abstract class MSBuildTaskTestFixture : IDisposable, IBuildEngine protected List LogCustomEvents = new List(); protected List LogWarningEvents = new List(); - public MSBuildTaskTestFixture(string testContextDirectory = null) - { - DestinationDirectory = testContextDirectory ?? Path.Combine(Path.GetTempPath(), GetType().Name, Path.GetRandomFileName()); - } - - void IDisposable.Dispose() - { - if (Directory.Exists(DestinationDirectory)) - Directory.Delete(DestinationDirectory, true); - } - // IBuildEngine bool IBuildEngine.ContinueOnError => false; diff --git a/src/SingleProject/Resizetizer/test/UnitTests/ResizetizeImagesTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/ResizetizeImagesTests.cs index 4b99b48a96cd..7dff630d8c33 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/ResizetizeImagesTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/ResizetizeImagesTests.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Globalization; using System.IO; using System.Linq; using Microsoft.Build.Framework; @@ -15,11 +16,6 @@ public abstract class ExecuteForApp : MSBuildTaskTestFixture { protected static readonly Dictionary ResizeMetadata = new() { ["Resize"] = "true" }; - public ExecuteForApp(string type) - : base(Path.Combine(Path.GetTempPath(), "ResizetizeImagesTests", type, Path.GetRandomFileName())) - { - } - protected ResizetizeImages GetNewTask(string type, params ITaskItem[] items) => new ResizetizeImages { @@ -32,59 +28,10 @@ protected ResizetizeImages GetNewTask(string type, params ITaskItem[] items) => protected ITaskItem GetCopiedResource(ResizetizeImages task, string path) => task.CopiedResources.Single(c => c.ItemSpec.Replace('\\', '/').EndsWith(path, StringComparison.Ordinal)); - - protected void AssertFileSize(string file, int width, int height) - { - file = Path.Combine(DestinationDirectory, file); - - Assert.True(File.Exists(file), $"File did not exist: {file}"); - - using var codec = SKCodec.Create(file); - Assert.Equal(width, codec.Info.Width); - Assert.Equal(height, codec.Info.Height); - } - - protected void AssertFileExists(string file) - { - file = Path.Combine(DestinationDirectory, file); - - Assert.True(File.Exists(file), $"File did not exist: {file}"); - } - - protected void AssertFileNotExists(string file) - { - file = Path.Combine(DestinationDirectory, file); - - Assert.False(File.Exists(file), $"File existed: {file}"); - } - - protected void AssertFileContains(string file, params string[] snippet) - { - file = Path.Combine(DestinationDirectory, file); - - var content = File.ReadAllText(file); - - foreach (var snip in snippet) - Assert.Contains(snip, content, StringComparison.Ordinal); - } - - protected void AssertFileContains(string file, SKColor color, int x, int y) - { - file = Path.Combine(DestinationDirectory, file); - - using var resultImage = SKBitmap.Decode(file); - using var pixmap = resultImage.PeekPixels(); - Assert.Equal(color, pixmap.GetPixelColor(x, y)); - } } public class ExecuteForAndroid : ExecuteForApp { - public ExecuteForAndroid() - : base("Android") - { - } - ResizetizeImages GetNewTask(params ITaskItem[] items) => GetNewTask("android", items); @@ -95,7 +42,7 @@ public void NoItemsSucceed() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -105,7 +52,7 @@ public void NullItemsSucceed() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -135,7 +82,7 @@ public void ValidFileSucceeds() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -150,7 +97,7 @@ public void ValidVectorFileSucceeds() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -163,7 +110,7 @@ public void SingleImageWithOnlyPathSucceeds() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("drawable-mdpi/camera.png", 1792, 1792); // 1x AssertFileSize("drawable-xhdpi/camera.png", 3584, 3584); // 2x @@ -179,7 +126,7 @@ public void SingleVectorImageWithOnlyPathSucceeds() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("drawable-mdpi/camera.png", 1792, 1792); // 1x AssertFileSize("drawable-xhdpi/camera.png", 3584, 3584); // 2x @@ -196,7 +143,7 @@ public void TwoImagesWithOnlyPathSucceed() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("drawable-mdpi/camera.png", 1792, 1792); AssertFileSize("drawable-mdpi/camera_color.png", 256, 256); @@ -215,7 +162,7 @@ public void ImageWithOnlyPathHasMetadata() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); var copied = task.CopiedResources; Assert.Equal(items.Length * DpiPath.Android.Image.Length, copied.Length); @@ -240,7 +187,7 @@ public void TwoImagesWithOnlyPathHasMetadata() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); var copied = task.CopiedResources; Assert.Equal(items.Length * DpiPath.Android.Image.Length, copied.Length); @@ -275,9 +222,10 @@ public void SingleImageNoResizeSucceeds() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("drawable/camera.png", 1792, 1792); + AssertFileMatches("drawable/camera.png"); } [Fact] @@ -293,9 +241,9 @@ public void SingleVectorImageNoResizeSucceeds() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); - AssertFileExists("drawable/camera.xml"); + AssertFileSize("drawable/camera.png", 1792, 1792); } [Theory] @@ -320,7 +268,7 @@ public void SingleImageWithBaseSizeSucceeds(string alias, string outputName) var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"drawable-mdpi/{outputName}.png", 44, 44); AssertFileSize($"drawable-xhdpi/{outputName}.png", 88, 88); @@ -343,7 +291,7 @@ public void SingleImageWithBaseSizeSucceeds(string alias, string outputName) [InlineData("camera_color", "the_alias", "the_alias")] [InlineData("camera_color", "the_alias.png", "the_alias")] [InlineData("camera_color", "folder/the_alias.png", "the_alias")] - public void SingleRasterAppIconWithOnlyPathSucceedsWithVectors(string name, string alias, string outputName) + public void SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors(string name, string alias, string outputName) { var items = new[] { @@ -355,31 +303,34 @@ public void SingleRasterAppIconWithOnlyPathSucceedsWithVectors(string name, stri }; var task = GetNewTask(items); - task.AllowVectorAdaptiveIcons = true; var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"mipmap-mdpi/{outputName}.png", 48, 48); AssertFileSize($"mipmap-mdpi/{outputName}_background.png", 108, 108); - AssertFileNotExists($"mipmap-mdpi/{outputName}_foreground.png"); + AssertFileSize($"mipmap-mdpi/{outputName}_foreground.png", 108, 108); AssertFileSize($"mipmap-xhdpi/{outputName}.png", 96, 96); AssertFileSize($"mipmap-xhdpi/{outputName}_background.png", 216, 216); - AssertFileNotExists($"mipmap-xhdpi/{outputName}_foreground.png"); - - AssertFileExists($"drawable/{outputName}_foreground.xml"); - AssertFileNotExists($"drawable-v24/{outputName}_background.xml"); + AssertFileSize($"mipmap-xhdpi/{outputName}_foreground.png", 216, 216); AssertFileExists($"mipmap-anydpi-v26/{outputName}.xml"); AssertFileExists($"mipmap-anydpi-v26/{outputName}_round.xml"); AssertFileContains($"mipmap-anydpi-v26/{outputName}.xml", - $"", + $"", $""); AssertFileContains($"mipmap-anydpi-v26/{outputName}_round.xml", - $"", + $"", $""); + + AssertFileMatches($"mipmap-mdpi/{outputName}.png", new object[] { name, alias, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/{outputName}_background.png", new object[] { name, alias, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/{outputName}_foreground.png", new object[] { name, alias, "m", "f" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}.png", new object[] { name, alias, "xh", "i" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}_background.png", new object[] { name, alias, "xh", "b" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}_foreground.png", new object[] { name, alias, "xh", "f" }); } [Theory] @@ -399,7 +350,7 @@ public void SingleRasterAppIconWithOnlyPathSucceedsWithVectors(string name, stri [InlineData("camera", "the_alias", "the_alias")] [InlineData("camera", "the_alias.png", "the_alias")] [InlineData("camera", "folder/the_alias.png", "the_alias")] - public void SingleVectorAppIconWithOnlyPathSucceedsWithVectors(string name, string alias, string outputName) + public void SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors(string name, string alias, string outputName) { var items = new[] { @@ -411,205 +362,388 @@ public void SingleVectorAppIconWithOnlyPathSucceedsWithVectors(string name, stri }; var task = GetNewTask(items); - task.AllowVectorAdaptiveIcons = true; var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"mipmap-mdpi/{outputName}.png", 48, 48); - AssertFileNotExists($"mipmap-mdpi/{outputName}_background.png"); - AssertFileNotExists($"mipmap-mdpi/{outputName}_foreground.png"); + AssertFileSize($"mipmap-mdpi/{outputName}_background.png", 108, 108); + AssertFileSize($"mipmap-mdpi/{outputName}_foreground.png", 108, 108); AssertFileSize($"mipmap-xhdpi/{outputName}.png", 96, 96); - AssertFileNotExists($"mipmap-xhdpi/{outputName}_background.png"); - AssertFileNotExists($"mipmap-xhdpi/{outputName}_foreground.png"); - - AssertFileExists($"drawable/{outputName}_foreground.xml"); - AssertFileExists($"drawable-v24/{outputName}_background.xml"); + AssertFileSize($"mipmap-xhdpi/{outputName}_background.png", 216, 216); + AssertFileSize($"mipmap-xhdpi/{outputName}_foreground.png", 216, 216); AssertFileExists($"mipmap-anydpi-v26/{outputName}.xml"); AssertFileExists($"mipmap-anydpi-v26/{outputName}_round.xml"); AssertFileContains($"mipmap-anydpi-v26/{outputName}.xml", - $"", - $""); + $"", + $""); AssertFileContains($"mipmap-anydpi-v26/{outputName}_round.xml", - $"", - $""); + $"", + $""); + + AssertFileMatches($"mipmap-mdpi/{outputName}.png", new object[] { name, alias, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/{outputName}_background.png", new object[] { name, alias, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/{outputName}_foreground.png", new object[] { name, alias, "m", "f" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}.png", new object[] { name, alias, "xh", "i" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}_background.png", new object[] { name, alias, "xh", "b" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}_foreground.png", new object[] { name, alias, "xh", "f" }); } [Theory] - [InlineData("camera", null, "camera")] - [InlineData("camera", "", "camera")] + [InlineData("appicon", null, "dotnet_background")] + [InlineData("appicon", "", "dotnet_background")] + [InlineData("appicon", "appicon", "appicon")] + [InlineData("appicon", "appicon.png", "appicon")] + [InlineData("appicon", "folder/appicon.png", "appicon")] + [InlineData("appicon", "the_alias", "the_alias")] + [InlineData("appicon", "the_alias.png", "the_alias")] + [InlineData("appicon", "folder/the_alias.png", "the_alias")] + [InlineData("camera", null, "dotnet_background")] + [InlineData("camera", "", "dotnet_background")] [InlineData("camera", "camera", "camera")] [InlineData("camera", "camera.png", "camera")] [InlineData("camera", "folder/camera.png", "camera")] [InlineData("camera", "the_alias", "the_alias")] [InlineData("camera", "the_alias.png", "the_alias")] [InlineData("camera", "folder/the_alias.png", "the_alias")] - [InlineData("camera_color", null, "camera_color")] - [InlineData("camera_color", "", "camera_color")] - [InlineData("camera_color", "camera_color", "camera_color")] - [InlineData("camera_color", "camera_color.png", "camera_color")] - [InlineData("camera_color", "folder/camera_color.png", "camera_color")] - [InlineData("camera_color", "the_alias", "the_alias")] - [InlineData("camera_color", "the_alias.png", "the_alias")] - [InlineData("camera_color", "folder/the_alias.png", "the_alias")] - public void SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors(string name, string alias, string outputName) + [InlineData("prismicon", "rasters", "rasters")] + public void MultipleVectorAppIconWithOnlyPathConvertsToRaster(string name, string alias, string outputName) { var items = new[] { - new TaskItem($"images/{name}.png", new Dictionary + new TaskItem("images/dotnet_background.svg", new Dictionary { ["IsAppIcon"] = bool.TrueString, + ["ForegroundFile"] = $"images/{name}.svg", ["Link"] = alias, }), }; var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"mipmap-mdpi/{outputName}.png", 48, 48); AssertFileSize($"mipmap-mdpi/{outputName}_background.png", 108, 108); - AssertFileNotExists($"mipmap-mdpi/{outputName}_foreground.png"); + AssertFileSize($"mipmap-mdpi/{outputName}_foreground.png", 108, 108); AssertFileSize($"mipmap-xhdpi/{outputName}.png", 96, 96); AssertFileSize($"mipmap-xhdpi/{outputName}_background.png", 216, 216); - AssertFileNotExists($"mipmap-xhdpi/{outputName}_foreground.png"); - - AssertFileExists($"drawable/{outputName}_foreground.xml"); - AssertFileNotExists($"drawable-v24/{outputName}_background.xml"); + AssertFileSize($"mipmap-xhdpi/{outputName}_foreground.png", 216, 216); AssertFileExists($"mipmap-anydpi-v26/{outputName}.xml"); AssertFileExists($"mipmap-anydpi-v26/{outputName}_round.xml"); AssertFileContains($"mipmap-anydpi-v26/{outputName}.xml", - $"", + $"", $""); AssertFileContains($"mipmap-anydpi-v26/{outputName}_round.xml", - $"", + $"", $""); + + AssertFileMatches($"mipmap-mdpi/{outputName}.png", new object[] { name, alias, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/{outputName}_background.png", new object[] { name, alias, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/{outputName}_foreground.png", new object[] { name, alias, "m", "f" }); + + AssertFileMatches($"mipmap-xhdpi/{outputName}.png", new object[] { name, alias, "xh", "i" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}_background.png", new object[] { name, alias, "xh", "b" }); + AssertFileMatches($"mipmap-xhdpi/{outputName}_foreground.png", new object[] { name, alias, "xh", "f" }); } [Theory] - [InlineData("appicon", null, "appicon")] - [InlineData("appicon", "", "appicon")] - [InlineData("appicon", "appicon", "appicon")] - [InlineData("appicon", "appicon.png", "appicon")] - [InlineData("appicon", "folder/appicon.png", "appicon")] - [InlineData("appicon", "the_alias", "the_alias")] - [InlineData("appicon", "the_alias.png", "the_alias")] - [InlineData("appicon", "folder/the_alias.png", "the_alias")] - [InlineData("camera", null, "camera")] - [InlineData("camera", "", "camera")] - [InlineData("camera", "camera", "camera")] - [InlineData("camera", "camera.png", "camera")] - [InlineData("camera", "folder/camera.png", "camera")] - [InlineData("camera", "the_alias", "the_alias")] - [InlineData("camera", "the_alias.png", "the_alias")] - [InlineData("camera", "folder/the_alias.png", "the_alias")] - public void SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors(string name, string alias, string outputName) + [InlineData("camera.png", "#00FF00", "#00FF00")] + [InlineData("camera.png", "#00FF00", "#FFFFFF")] + [InlineData("camera.png", "#00FF00", null)] + [InlineData("camera.png", "#FFFFFF", "#00FF00")] + [InlineData("camera.png", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.png", "#FFFFFF", null)] + [InlineData("camera.png", null, "#00FF00")] + [InlineData("camera.png", null, "#FFFFFF")] + [InlineData("camera.png", null, null)] + [InlineData("camera.svg", "#00FF00", "#00FF00")] + [InlineData("camera.svg", "#00FF00", "#FFFFFF")] + [InlineData("camera.svg", "#00FF00", null)] + [InlineData("camera.svg", "#FFFFFF", "#00FF00")] + [InlineData("camera.svg", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.svg", "#FFFFFF", null)] + [InlineData("camera.svg", null, "#00FF00")] + [InlineData("camera.svg", null, "#FFFFFF")] + [InlineData("camera.svg", null, null)] + public void SingleAppIconWithColors(string filename, string colorString, string tintColorString) { var items = new[] { - new TaskItem($"images/{name}.svg", new Dictionary + new TaskItem($"images/{filename}", new Dictionary { ["IsAppIcon"] = bool.TrueString, - ["Link"] = alias, + ["Color"] = colorString, + ["TintColor"] = tintColorString, }), }; var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); - AssertFileSize($"mipmap-mdpi/{outputName}.png", 48, 48); - AssertFileSize($"mipmap-mdpi/{outputName}_background.png", 108, 108); - AssertFileNotExists($"mipmap-mdpi/{outputName}_foreground.png"); + var fn = filename.Replace("camera.", "", StringComparison.OrdinalIgnoreCase); + AssertFileMatches($"mipmap-mdpi/camera.png", new object[] { fn, colorString, tintColorString, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/camera_background.png", new object[] { fn, colorString, tintColorString, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/camera_foreground.png", new object[] { fn, colorString, tintColorString, "m", "f" }); + } - AssertFileSize($"mipmap-xhdpi/{outputName}.png", 96, 96); - AssertFileSize($"mipmap-xhdpi/{outputName}_background.png", 216, 216); - AssertFileNotExists($"mipmap-xhdpi/{outputName}_foreground.png"); + [Theory] + [InlineData("camera.png", "#00FF00", "#00FF00")] + [InlineData("camera.png", "#00FF00", "#FFFFFF")] + [InlineData("camera.png", "#00FF00", null)] + [InlineData("camera.png", "#FFFFFF", "#00FF00")] + [InlineData("camera.png", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.png", "#FFFFFF", null)] + [InlineData("camera.png", null, "#00FF00")] + [InlineData("camera.png", null, "#FFFFFF")] + [InlineData("camera.png", null, null)] + [InlineData("camera.svg", "#00FF00", "#00FF00")] + [InlineData("camera.svg", "#00FF00", "#FFFFFF")] + [InlineData("camera.svg", "#00FF00", null)] + [InlineData("camera.svg", "#FFFFFF", "#00FF00")] + [InlineData("camera.svg", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.svg", "#FFFFFF", null)] + [InlineData("camera.svg", null, "#00FF00")] + [InlineData("camera.svg", null, "#FFFFFF")] + [InlineData("camera.svg", null, null)] + public void SingleAppIconGeneratesCorrectFilesWithForegroundScale(string filename, string colorString, string tintColorString) + { + var items = new[] + { + new TaskItem($"images/{filename}", new Dictionary + { + ["IsAppIcon"] = bool.TrueString, + ["Color"] = colorString, + ["TintColor"] = tintColorString, + ["ForegroundScale"] = "0.5", + }), + }; - AssertFileExists($"drawable/{outputName}_foreground.xml"); - AssertFileNotExists($"drawable-v24/{outputName}_background.xml"); + var task = GetNewTask(items); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); - AssertFileExists($"mipmap-anydpi-v26/{outputName}.xml"); - AssertFileExists($"mipmap-anydpi-v26/{outputName}_round.xml"); + var fn = filename.Replace("camera.", "", StringComparison.OrdinalIgnoreCase); + AssertFileMatches($"mipmap-mdpi/camera.png", new object[] { fn, colorString, tintColorString, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/camera_background.png", new object[] { fn, colorString, tintColorString, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/camera_foreground.png", new object[] { fn, colorString, tintColorString, "m", "f" }); + } - AssertFileContains($"mipmap-anydpi-v26/{outputName}.xml", - $"", - $""); + [Theory] + [InlineData("camera.png", "#00FF00", "#00FF00")] + [InlineData("camera.png", "#00FF00", "#FFFFFF")] + [InlineData("camera.png", "#00FF00", null)] + [InlineData("camera.png", "#FFFFFF", "#00FF00")] + [InlineData("camera.png", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.png", "#FFFFFF", null)] + [InlineData("camera.png", null, "#00FF00")] + [InlineData("camera.png", null, "#FFFFFF")] + [InlineData("camera.png", null, null)] + [InlineData("camera.svg", "#00FF00", "#00FF00")] + [InlineData("camera.svg", "#00FF00", "#FFFFFF")] + [InlineData("camera.svg", "#00FF00", null)] + [InlineData("camera.svg", "#FFFFFF", "#00FF00")] + [InlineData("camera.svg", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.svg", "#FFFFFF", null)] + [InlineData("camera.svg", null, "#00FF00")] + [InlineData("camera.svg", null, "#FFFFFF")] + [InlineData("camera.svg", null, null)] + public void MultipleAppIconWithColors(string filename, string colorString, string tintColorString) + { + var items = new[] + { + new TaskItem($"images/dotnet_background.svg", new Dictionary + { + ["ForegroundFile"] = $"images/{filename}", + ["IsAppIcon"] = bool.TrueString, + ["Color"] = colorString, + ["TintColor"] = tintColorString, + }), + }; - AssertFileContains($"mipmap-anydpi-v26/{outputName}_round.xml", - $"", - $""); + var task = GetNewTask(items); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + + var fn = filename.Replace("camera.", "", StringComparison.OrdinalIgnoreCase); + AssertFileMatches($"mipmap-mdpi/dotnet_background.png", new object[] { fn, colorString, tintColorString, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/dotnet_background_background.png", new object[] { fn, colorString, tintColorString, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/dotnet_background_foreground.png", new object[] { fn, colorString, tintColorString, "m", "f" }); } [Theory] - [InlineData("appicon", null, "dotnet_background")] - [InlineData("appicon", "", "dotnet_background")] - [InlineData("appicon", "appicon", "appicon")] - [InlineData("appicon", "appicon.png", "appicon")] - [InlineData("appicon", "folder/appicon.png", "appicon")] - [InlineData("appicon", "the_alias", "the_alias")] - [InlineData("appicon", "the_alias.png", "the_alias")] - [InlineData("appicon", "folder/the_alias.png", "the_alias")] - [InlineData("camera", null, "dotnet_background")] - [InlineData("camera", "", "dotnet_background")] - [InlineData("camera", "camera", "camera")] - [InlineData("camera", "camera.png", "camera")] - [InlineData("camera", "folder/camera.png", "camera")] - [InlineData("camera", "the_alias", "the_alias")] - [InlineData("camera", "the_alias.png", "the_alias")] - [InlineData("camera", "folder/the_alias.png", "the_alias")] - [InlineData("prismicon", "rasters", "rasters")] - public void MultipleVectorAppIconWithOnlyPathConvertsToRaster(string name, string alias, string outputName) + [InlineData("camera.png", "#00FF00", "#00FF00")] + [InlineData("camera.png", "#00FF00", "#FFFFFF")] + [InlineData("camera.png", "#00FF00", null)] + [InlineData("camera.png", "#FFFFFF", "#00FF00")] + [InlineData("camera.png", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.png", "#FFFFFF", null)] + [InlineData("camera.png", null, "#00FF00")] + [InlineData("camera.png", null, "#FFFFFF")] + [InlineData("camera.png", null, null)] + [InlineData("camera.svg", "#00FF00", "#00FF00")] + [InlineData("camera.svg", "#00FF00", "#FFFFFF")] + [InlineData("camera.svg", "#00FF00", null)] + [InlineData("camera.svg", "#FFFFFF", "#00FF00")] + [InlineData("camera.svg", "#FFFFFF", "#FFFFFF")] + [InlineData("camera.svg", "#FFFFFF", null)] + [InlineData("camera.svg", null, "#00FF00")] + [InlineData("camera.svg", null, "#FFFFFF")] + [InlineData("camera.svg", null, null)] + public void MultipleAppIconGeneratesCorrectFilesWithForegroundScale(string filename, string colorString, string tintColorString) { var items = new[] { - new TaskItem("images/dotnet_background.svg", new Dictionary + new TaskItem($"images/dotnet_background.svg", new Dictionary { + ["ForegroundFile"] = $"images/{filename}", ["IsAppIcon"] = bool.TrueString, - ["ForegroundFile"] = $"images/{name}.svg", - ["Link"] = alias, + ["Color"] = colorString, + ["TintColor"] = tintColorString, + ["ForegroundScale"] = "0.5", }), }; var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); - AssertFileSize($"mipmap-mdpi/{outputName}.png", 48, 48); - AssertFileSize($"mipmap-mdpi/{outputName}_background.png", 108, 108); - AssertFileSize($"mipmap-mdpi/{outputName}_foreground.png", 108, 108); + var fn = filename.Replace("camera.", "", StringComparison.OrdinalIgnoreCase); + AssertFileMatches($"mipmap-mdpi/dotnet_background.png", new object[] { fn, colorString, tintColorString, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/dotnet_background_background.png", new object[] { fn, colorString, tintColorString, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/dotnet_background_foreground.png", new object[] { fn, colorString, tintColorString, "m", "f" }); + } - AssertFileSize($"mipmap-xhdpi/{outputName}.png", 96, 96); - AssertFileSize($"mipmap-xhdpi/{outputName}_background.png", 216, 216); - AssertFileSize($"mipmap-xhdpi/{outputName}_foreground.png", 216, 216); + [Fact] + public void DiffPropoprtionWithoutBase() + { + var task = GetNewTask(new TaskItem($"images/dotnet_bot.svg")); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); - AssertFileExists($"mipmap-anydpi-v26/{outputName}.xml"); - AssertFileExists($"mipmap-anydpi-v26/{outputName}_round.xml"); + AssertFileSize($"drawable-mdpi/dotnet_bot.png", 249, 280); + AssertFileSize($"drawable-xhdpi/dotnet_bot.png", 498, 560); - AssertFileContains($"mipmap-anydpi-v26/{outputName}.xml", - $"", - $""); + AssertFileMatches($"drawable-mdpi/dotnet_bot.png", new object[] { "mdpi" }); + AssertFileMatches($"drawable-xhdpi/dotnet_bot.png", new object[] { "xhdpi" }); + } - AssertFileContains($"mipmap-anydpi-v26/{outputName}_round.xml", - $"", - $""); + [Theory] + [InlineData(1, "dotnet_background.svg", "tall_image.png")] + [InlineData(1, "dotnet_background.svg", "wide_image.png")] + [InlineData(1, "tall_image.png", "camera.svg")] + [InlineData(1, "wide_image.png", "camera.svg")] + [InlineData(0.5, "dotnet_background.svg", "tall_image.png")] + [InlineData(0.5, "dotnet_background.svg", "wide_image.png")] + [InlineData(0.5, "tall_image.png", "camera.svg")] + [InlineData(0.5, "wide_image.png", "camera.svg")] + public void DiffPropoprtionAppIconWithoutBaseUseBackgroundSize(double fgScale, string bg, string fg) + { + var items = new[] + { + new TaskItem($"images/{bg}", new Dictionary + { + ["ForegroundFile"] = $"images/{fg}", + ["IsAppIcon"] = bool.TrueString, + ["ForegroundScale"] = fgScale.ToString(CultureInfo.InvariantCulture), + }), + }; + + var task = GetNewTask(items); + var success = task.Execute(); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); + + AssertFileSize($"mipmap-mdpi/{Path.GetFileNameWithoutExtension(bg)}_background.png", 108, 108); + AssertFileSize($"mipmap-mdpi/{Path.GetFileNameWithoutExtension(bg)}_foreground.png", 108, 108); + + AssertFileSize($"mipmap-xhdpi/{Path.GetFileNameWithoutExtension(bg)}_background.png", 216, 216); + AssertFileSize($"mipmap-xhdpi/{Path.GetFileNameWithoutExtension(bg)}_foreground.png", 216, 216); + + AssertFileMatches($"mipmap-mdpi/{Path.GetFileNameWithoutExtension(bg)}.png", new object[] { fgScale, bg, fg, "m", "i" }); + AssertFileMatches($"mipmap-mdpi/{Path.GetFileNameWithoutExtension(bg)}_background.png", new object[] { fgScale, bg, fg, "m", "b" }); + AssertFileMatches($"mipmap-mdpi/{Path.GetFileNameWithoutExtension(bg)}_foreground.png", new object[] { fgScale, bg, fg, "m", "f" }); + + AssertFileMatches($"mipmap-xhdpi/{Path.GetFileNameWithoutExtension(bg)}.png", new object[] { fgScale, bg, fg, "xh", "i" }); + AssertFileMatches($"mipmap-xhdpi/{Path.GetFileNameWithoutExtension(bg)}_background.png", new object[] { fgScale, bg, fg, "xh", "b" }); + AssertFileMatches($"mipmap-xhdpi/{Path.GetFileNameWithoutExtension(bg)}_foreground.png", new object[] { fgScale, bg, fg, "xh", "f" }); } + + //[Theory] + //[InlineData(1, 1, "dotnet_background.svg", "tall_image.png", 300, 300)] + //[InlineData(1, 1, "dotnet_background.svg", "wide_image.png", 300, 300)] + //[InlineData(0.5, 1, "dotnet_background.svg", "tall_image.png", 150, 150)] + //[InlineData(0.5, 1, "dotnet_background.svg", "wide_image.png", 150, 150)] + //[InlineData(1, 0.5, "dotnet_background.svg", "tall_image.png", 300, 300)] + //[InlineData(1, 0.5, "dotnet_background.svg", "wide_image.png", 300, 300)] + //[InlineData(1, 1, "tall_image.png", "camera.svg", 300, 300)] + //[InlineData(0.5, 1, "tall_image.png", "camera.svg", 150, 150)] + //[InlineData(1, 0.5, "tall_image.png", "camera.svg", 300, 300)] + //[InlineData(1, 1, "wide_image.png", "camera.svg", 300, 300)] + //[InlineData(0.5, 1, "wide_image.png", "camera.svg", 150, 150)] + //[InlineData(1, 0.5, "wide_image.png", "camera.svg", 300, 300)] + //public void DiffPropoprtionWithBaseSize(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) + //{ + // var info = new ResizeImageInfo + // { + // Filename = "images/" + bg, + // ForegroundFilename = "images/" + fg, + // ForegroundScale = fgScale, + // IsAppIcon = true, + // Color = SKColors.Orange, + // BaseSize = new SKSize(300, 300), + // }; + + // var tools = new SkiaSharpAppIconTools(info, Logger); + // var dpiPath = new DpiPath("", (decimal)dpi); + + // tools.Resize(dpiPath, DestinationFilename); + + // AssertFileSize(DestinationFilename, exWidth, exHeight); + //} + + //[Theory] + //[InlineData(1, 1, "dotnet_background.svg", "tall_image.png", 300, 300)] + //[InlineData(1, 1, "dotnet_background.svg", "wide_image.png", 300, 300)] + //[InlineData(0.5, 1, "dotnet_background.svg", "tall_image.png", 150, 150)] + //[InlineData(0.5, 1, "dotnet_background.svg", "wide_image.png", 150, 150)] + //[InlineData(1, 0.5, "dotnet_background.svg", "tall_image.png", 300, 300)] + //[InlineData(1, 0.5, "dotnet_background.svg", "wide_image.png", 300, 300)] + //[InlineData(1, 1, "tall_image.png", "camera.svg", 300, 300)] + //[InlineData(0.5, 1, "tall_image.png", "camera.svg", 150, 150)] + //[InlineData(1, 0.5, "tall_image.png", "camera.svg", 300, 300)] + //[InlineData(1, 1, "wide_image.png", "camera.svg", 300, 300)] + //[InlineData(0.5, 1, "wide_image.png", "camera.svg", 150, 150)] + //[InlineData(1, 0.5, "wide_image.png", "camera.svg", 300, 300)] + //public void DiffPropoprtionWithDpiSize(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) + //{ + // var info = new ResizeImageInfo + // { + // Filename = "images/" + bg, + // ForegroundFilename = "images/" + fg, + // ForegroundScale = fgScale, + // IsAppIcon = true, + // Color = SKColors.Orange, + // }; + + // var tools = new SkiaSharpAppIconTools(info, Logger); + // var dpiPath = new DpiPath("", (decimal)dpi, size: new SKSize(300, 300)); + + // tools.Resize(dpiPath, DestinationFilename); + + // AssertFileSize(DestinationFilename, exWidth, exHeight); + //} } public class ExecuteForiOS : ExecuteForApp { - public ExecuteForiOS() - : base("iOS") - { - } - ResizetizeImages GetNewTask(params ITaskItem[] items) => GetNewTask("ios", items); @@ -620,7 +754,7 @@ public void NoItemsSucceed() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -630,7 +764,7 @@ public void NullItemsSucceed() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -660,7 +794,7 @@ public void ValidFileSucceeds() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -673,7 +807,7 @@ public void SingleImageWithOnlyPathSucceeds() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("camera.png", 1792, 1792); AssertFileSize("camera@2x.png", 3584, 3584); @@ -690,7 +824,7 @@ public void TwoImagesWithOnlyPathSucceed() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("camera.png", 1792, 1792); AssertFileSize("camera_color.png", 256, 256); @@ -709,7 +843,7 @@ public void ImageWithOnlyPathHasMetadata() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); var copied = task.CopiedResources; Assert.Equal(items.Length * DpiPath.Ios.Image.Length, copied.Length); @@ -734,7 +868,7 @@ public void TwoImagesWithOnlyPathHasMetadata() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); var copied = task.CopiedResources; Assert.Equal(items.Length * DpiPath.Ios.Image.Length, copied.Length); @@ -778,7 +912,7 @@ public void SingleImageWithBaseSizeSucceeds(string alias, string outputName) var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"{outputName}.png", 44, 44); AssertFileSize($"{outputName}@2x.png", 88, 88); @@ -814,7 +948,7 @@ public void SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors(string name, s var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"Assets.xcassets/{outputName}.appiconset/{outputName}20x20@2x.png", 40, 40); AssertFileSize($"Assets.xcassets/{outputName}.appiconset/{outputName}20x20@3x.png", 60, 60); @@ -867,7 +1001,7 @@ public void SingleVectorAppIconWithOnlyPathSucceedsWithVectors(string name, stri var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"Assets.xcassets/{outputName}.appiconset/{outputName}20x20@2x.png", 40, 40); AssertFileSize($"Assets.xcassets/{outputName}.appiconset/{outputName}20x20@3x.png", 60, 60); @@ -885,11 +1019,6 @@ public void SingleVectorAppIconWithOnlyPathSucceedsWithVectors(string name, stri public class ExecuteForWindows : ExecuteForApp { - public ExecuteForWindows() - : base("Windows") - { - } - ResizetizeImages GetNewTask(params ITaskItem[] items) => GetNewTask("uwp", items); @@ -900,7 +1029,7 @@ public void NoItemsSucceed() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -910,7 +1039,7 @@ public void NullItemsSucceed() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -940,7 +1069,7 @@ public void ValidFileSucceeds() var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); } [Fact] @@ -953,7 +1082,7 @@ public void SingleImageWithOnlyPathSucceeds() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("camera.scale-100.png", 1792, 1792); AssertFileSize("camera.scale-200.png", 3584, 3584); @@ -970,7 +1099,7 @@ public void TwoImagesWithOnlyPathSucceed() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("camera.scale-100.png", 1792, 1792); AssertFileSize("camera_color.scale-100.png", 256, 256); @@ -989,7 +1118,7 @@ public void ImageWithOnlyPathHasMetadata() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); var copied = task.CopiedResources; Assert.Equal(items.Length * DpiPath.Windows.Image.Length, copied.Length); @@ -1014,7 +1143,7 @@ public void TwoImagesWithOnlyPathHasMetadata() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); var copied = task.CopiedResources; Assert.Equal(items.Length * DpiPath.Windows.Image.Length, copied.Length); @@ -1058,7 +1187,7 @@ public void SingleImageWithBaseSizeSucceeds(string alias, string outputName) var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"{outputName}.scale-100.png", 44, 44); AssertFileSize($"{outputName}.scale-200.png", 88, 88); @@ -1094,7 +1223,7 @@ public void SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors(string name, s var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"{outputName}Logo.scale-100.png", 44, 44); AssertFileSize($"{outputName}Logo.scale-125.png", 55, 55); @@ -1145,7 +1274,7 @@ public void SingleVectorAppIconWithOnlyPathSucceedsWithVectors(string name, stri var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"{outputName}Logo.scale-100.png", 44, 44); AssertFileSize($"{outputName}Logo.scale-125.png", 55, 55); @@ -1174,7 +1303,7 @@ public void AppIconWithBackgroundSucceedsWithVectors(string fg, string bg) var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize($"{bg}Logo.scale-100.png", 44, 44); AssertFileSize($"{bg}Logo.scale-125.png", 55, 55); @@ -1200,7 +1329,7 @@ public void ColorsInCssCanBeUsed() var task = GetNewTask(items); var success = task.Execute(); - Assert.True(success); + Assert.True(success, LogErrorEvents.FirstOrDefault()?.Message); AssertFileSize("not_working.scale-100.png", 24, 24); @@ -1210,8 +1339,6 @@ public void ColorsInCssCanBeUsed() public class ExecuteForAny : ExecuteForApp { - public ExecuteForAny() : base("Any") { } - [Theory] [InlineData("image.svg", "100,100", true)] [InlineData("image.png", "100,100", true)] diff --git a/src/SingleProject/Resizetizer/test/UnitTests/Resizetizer.UnitTests.csproj b/src/SingleProject/Resizetizer/test/UnitTests/Resizetizer.UnitTests.csproj index 7b60e2747b6b..024790fa38f4 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/Resizetizer.UnitTests.csproj +++ b/src/SingleProject/Resizetizer/test/UnitTests/Resizetizer.UnitTests.csproj @@ -17,7 +17,6 @@ - @@ -27,10 +26,7 @@ - - - - + diff --git a/src/SingleProject/Resizetizer/test/UnitTests/SkiaSharpAppIconToolsTests.cs b/src/SingleProject/Resizetizer/test/UnitTests/SkiaSharpAppIconToolsTests.cs index 40133215e6ff..6e638d522fc7 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/SkiaSharpAppIconToolsTests.cs +++ b/src/SingleProject/Resizetizer/test/UnitTests/SkiaSharpAppIconToolsTests.cs @@ -1,60 +1,53 @@ -using System; using System.IO; +using SkiaSharp; using Xunit; namespace Microsoft.Maui.Resizetizer.Tests { public class SkiaSharpAppIconToolsTests { - public class Resize : IDisposable + public class Resize : BaseTest { readonly string DestinationFilename; readonly TestLogger Logger; public Resize() { - DestinationFilename = Path.GetTempFileName() + ".png"; + DestinationFilename = Path.Combine(DestinationDirectory, Path.GetRandomFileName() + ".png"); Logger = new TestLogger(); } - public void Dispose() - { - //Logger.Persist(); - //File.Copy(DestinationFilename, "output.png", true); - File.Delete(DestinationFilename); - } - [Theory] // nice increments - [InlineData(0.5, 0.5, "appicon.svg", "appiconfg.svg")] - [InlineData(0.5, 1, "appicon.svg", "appiconfg.svg")] - [InlineData(0.5, 2, "appicon.svg", "appiconfg.svg")] - [InlineData(1, 0.5, "appicon.svg", "appiconfg.svg")] - [InlineData(1, 1, "appicon.svg", "appiconfg.svg")] - [InlineData(1, 1, "dotnet_background.svg", "dotnet_logo.svg")] - [InlineData(1, 2, "appicon.svg", "appiconfg.svg")] - [InlineData(2, 0.5, "appicon.svg", "appiconfg.svg")] - [InlineData(2, 1, "appicon.svg", "appiconfg.svg")] - [InlineData(2, 2, "appicon.svg", "appiconfg.svg")] - [InlineData(3, 3, "appicon.svg", "appiconfg.svg")] + [InlineData(0.5, 0.5, "appicon.svg", "appiconfg.svg", 512, 512)] + [InlineData(0.5, 1, "appicon.svg", "appiconfg.svg", 512, 512)] + [InlineData(0.5, 2, "appicon.svg", "appiconfg.svg", 512, 512)] + [InlineData(1, 0.5, "appicon.svg", "appiconfg.svg", 1024, 1024)] + [InlineData(1, 1, "appicon.svg", "appiconfg.svg", 1024, 1024)] + [InlineData(1, 1, "dotnet_background.svg", "dotnet_logo.svg", 456, 456)] + [InlineData(1, 2, "appicon.svg", "appiconfg.svg", 1024, 1024)] + [InlineData(2, 0.5, "appicon.svg", "appiconfg.svg", 2048, 2048)] + [InlineData(2, 1, "appicon.svg", "appiconfg.svg", 2048, 2048)] + [InlineData(2, 2, "appicon.svg", "appiconfg.svg", 2048, 2048)] + [InlineData(3, 3, "appicon.svg", "appiconfg.svg", 3072, 3072)] // scary increments - [InlineData(0.3, 0.3, "appicon.svg", "appiconfg.svg")] - [InlineData(0.3, 0.7, "appicon.svg", "appiconfg.svg")] - [InlineData(0.7, 0.7, "appicon.svg", "appiconfg.svg")] - [InlineData(1, 0.7, "appicon.svg", "appiconfg.svg")] - [InlineData(2, 0.7, "appicon.svg", "appiconfg.svg")] - [InlineData(2.3, 2.3, "appicon.svg", "appiconfg.svg")] - [InlineData(0.3, 1, "appicon.svg", "appiconfg.svg")] - [InlineData(0.3, 2, "appicon.svg", "appiconfg.svg")] + [InlineData(0.3, 0.3, "appicon.svg", "appiconfg.svg", 307, 307)] + [InlineData(0.3, 0.7, "appicon.svg", "appiconfg.svg", 307, 307)] + [InlineData(0.7, 0.7, "appicon.svg", "appiconfg.svg", 717, 717)] + [InlineData(1, 0.7, "appicon.svg", "appiconfg.svg", 1024, 1024)] + [InlineData(2, 0.7, "appicon.svg", "appiconfg.svg", 2048, 2048)] + [InlineData(2.3, 2.3, "appicon.svg", "appiconfg.svg", 2355, 2355)] + [InlineData(0.3, 1, "appicon.svg", "appiconfg.svg", 307, 307)] + [InlineData(0.3, 2, "appicon.svg", "appiconfg.svg", 307, 307)] // scary increments - [InlineData(0.3, 0.3, "appicon.svg", "appiconfg-red-512.svg")] - [InlineData(0.3, 0.7, "appicon.svg", "appiconfg-red-512.svg")] - [InlineData(0.7, 0.7, "appicon.svg", "appiconfg-red-512.svg")] - [InlineData(1, 0.7, "appicon.svg", "appiconfg-red-512.svg")] - [InlineData(2, 0.7, "appicon.svg", "appiconfg-red-512.svg")] - [InlineData(0.3, 1, "appicon.svg", "appiconfg-red-512.svg")] - [InlineData(0.3, 2, "appicon.svg", "appiconfg-red-512.svg")] - public void BasicTest(double dpi, double fgScale, string bg, string fg) + [InlineData(0.3, 0.3, "appicon.svg", "appiconfg-red-512.svg", 307, 307)] + [InlineData(0.3, 0.7, "appicon.svg", "appiconfg-red-512.svg", 307, 307)] + [InlineData(0.7, 0.7, "appicon.svg", "appiconfg-red-512.svg", 717, 717)] + [InlineData(1, 0.7, "appicon.svg", "appiconfg-red-512.svg", 1024, 1024)] + [InlineData(2, 0.7, "appicon.svg", "appiconfg-red-512.svg", 2048, 2048)] + [InlineData(0.3, 1, "appicon.svg", "appiconfg-red-512.svg", 307, 307)] + [InlineData(0.3, 2, "appicon.svg", "appiconfg-red-512.svg", 307, 307)] + public void BasicTest(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) { var info = new ResizeImageInfo(); info.Filename = "images/" + bg; @@ -67,12 +60,12 @@ public void BasicTest(double dpi, double fgScale, string bg, string fg) tools.Resize(dpiPath, DestinationFilename); - //File.Copy(DestinationFilename, $"output-{dpi}-{fgScale}-{bg}-{fg}.png", true); + AssertFileSize(DestinationFilename, exWidth, exHeight); } [Theory] - [InlineData(1, 1, "appicon.svg", "prismicon.svg")] - public void ComplexIconTest(double dpi, double fgScale, string bg, string fg) + [InlineData(1, 1, "appicon.svg", "prismicon.svg", 1024, 1024)] + public void ComplexIconTest(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) { var info = new ResizeImageInfo(); info.Filename = "images/" + bg; @@ -85,7 +78,108 @@ public void ComplexIconTest(double dpi, double fgScale, string bg, string fg) tools.Resize(dpiPath, DestinationFilename); - //File.Copy(DestinationFilename, $"output-{dpi}-{fgScale}-{bg}-{fg}.png", true); + AssertFileSize(DestinationFilename, exWidth, exHeight); + AssertFileMatches(DestinationFilename, new object[] { dpi, fgScale, bg, fg }); + } + + [Theory] + [InlineData(0.5, 1, "dotnet_background.svg", "tall_image.png", 228, 228)] + [InlineData(0.5, 1, "dotnet_background.svg", "wide_image.png", 228, 228)] + [InlineData(0.5, 1, "tall_image.png", "camera.svg", 60, 320)] + [InlineData(0.5, 1, "wide_image.png", "camera.svg", 320, 60)] + [InlineData(1, 0.5, "dotnet_background.svg", "tall_image.png", 456, 456)] + [InlineData(1, 0.5, "dotnet_background.svg", "wide_image.png", 456, 456)] + [InlineData(1, 0.5, "tall_image.png", "camera.svg", 119, 640)] + [InlineData(1, 0.5, "wide_image.png", "camera.svg", 640, 119)] + [InlineData(1, 1, "dotnet_background.svg", "tall_image.png", 456, 456)] + [InlineData(1, 1, "dotnet_background.svg", "wide_image.png", 456, 456)] + [InlineData(1, 1, "tall_image.png", "camera.svg", 119, 640)] + [InlineData(1, 1, "wide_image.png", "camera.svg", 640, 119)] + public void DiffPropoprtionWithoutBaseUseBackgroundSize(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) + { + var info = new ResizeImageInfo + { + Filename = "images/" + bg, + ForegroundFilename = "images/" + fg, + ForegroundScale = fgScale, + IsAppIcon = true, + Color = SKColors.Orange, + }; + + var tools = new SkiaSharpAppIconTools(info, Logger); + var dpiPath = new DpiPath("", (decimal)dpi); + + tools.Resize(dpiPath, DestinationFilename); + + AssertFileSize(DestinationFilename, exWidth, exHeight); + AssertFileMatches(DestinationFilename, new object[] { dpi, fgScale, bg, fg }); + } + + [Theory] + [InlineData(0.5, 1, "wide_image.png", "camera.svg", 150, 150)] + [InlineData(0.5, 1, "tall_image.png", "camera.svg", 150, 150)] + [InlineData(0.5, 1, "dotnet_background.svg", "wide_image.png", 150, 150)] + [InlineData(0.5, 1, "dotnet_background.svg", "tall_image.png", 150, 150)] + [InlineData(1, 0.5, "wide_image.png", "camera.svg", 300, 300)] + [InlineData(1, 0.5, "tall_image.png", "camera.svg", 300, 300)] + [InlineData(1, 0.5, "dotnet_background.svg", "wide_image.png", 300, 300)] + [InlineData(1, 0.5, "dotnet_background.svg", "tall_image.png", 300, 300)] + [InlineData(1, 1, "wide_image.png", "camera.svg", 300, 300)] + [InlineData(1, 1, "tall_image.png", "camera.svg", 300, 300)] + [InlineData(1, 1, "dotnet_background.svg", "wide_image.png", 300, 300)] + [InlineData(1, 1, "dotnet_background.svg", "tall_image.png", 300, 300)] + public void DiffPropoprtionWithBaseSize(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) + { + var info = new ResizeImageInfo + { + Filename = "images/" + bg, + ForegroundFilename = "images/" + fg, + ForegroundScale = fgScale, + IsAppIcon = true, + Color = SKColors.Orange, + BaseSize = new SKSize(300, 300), + }; + + var tools = new SkiaSharpAppIconTools(info, Logger); + var dpiPath = new DpiPath("", (decimal)dpi); + + tools.Resize(dpiPath, DestinationFilename); + + AssertFileSize(DestinationFilename, exWidth, exHeight); + AssertFileMatches(DestinationFilename, new object[] { dpi, fgScale, bg, fg }); + } + + [Theory] + [InlineData(0.5, 1, "dotnet_background.svg", "tall_image.png", 150, 150)] + [InlineData(0.5, 1, "dotnet_background.svg", "wide_image.png", 150, 150)] + [InlineData(0.5, 1, "tall_image.png", "camera.svg", 150, 150)] + [InlineData(0.5, 1, "wide_image.png", "camera.svg", 150, 150)] + [InlineData(1, 0.5, "dotnet_background.svg", "tall_image.png", 300, 300)] + [InlineData(1, 0.5, "dotnet_background.svg", "wide_image.png", 300, 300)] + [InlineData(1, 0.5, "tall_image.png", "camera.svg", 300, 300)] + [InlineData(1, 0.5, "wide_image.png", "camera.svg", 300, 300)] + [InlineData(1, 1, "dotnet_background.svg", "tall_image.png", 300, 300)] + [InlineData(1, 1, "dotnet_background.svg", "wide_image.png", 300, 300)] + [InlineData(1, 1, "tall_image.png", "camera.svg", 300, 300)] + [InlineData(1, 1, "wide_image.png", "camera.svg", 300, 300)] + public void DiffPropoprtionWithDpiSize(double dpi, double fgScale, string bg, string fg, int exWidth, int exHeight) + { + var info = new ResizeImageInfo + { + Filename = "images/" + bg, + ForegroundFilename = "images/" + fg, + ForegroundScale = fgScale, + IsAppIcon = true, + Color = SKColors.Orange, + }; + + var tools = new SkiaSharpAppIconTools(info, Logger); + var dpiPath = new DpiPath("", (decimal)dpi, size: new SKSize(300, 300)); + + tools.Resize(dpiPath, DestinationFilename); + + AssertFileSize(DestinationFilename, exWidth, exHeight); + AssertFileMatches(DestinationFilename, new object[] { dpi, fgScale, bg, fg }); } } } diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-f.png new file mode 100644 index 000000000000..5cf7f9386a94 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-i.png new file mode 100644 index 000000000000..6ad59c554f80 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-f.png new file mode 100644 index 000000000000..54e8e7aeb925 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-i.png new file mode 100644 index 000000000000..a27b9094e330 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-tall_image.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-f.png new file mode 100644 index 000000000000..848f4fdcda73 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-i.png new file mode 100644 index 000000000000..ad54c952bc3b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-f.png new file mode 100644 index 000000000000..4d6b2bf6b2e8 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-i.png new file mode 100644 index 000000000000..bff4582eb87c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-dotnet_background.svg-wide_image.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-b.png new file mode 100644 index 000000000000..4581fa99a5d0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-i.png new file mode 100644 index 000000000000..a05437294baf Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-b.png new file mode 100644 index 000000000000..60eae930ebfa Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-f.png new file mode 100644 index 000000000000..f20362d1b52c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-i.png new file mode 100644 index 000000000000..8e12a4d7d4c2 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-tall_image.png-camera.svg-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-b.png new file mode 100644 index 000000000000..76ecf071c91a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-i.png new file mode 100644 index 000000000000..9ffd0fb7ade5 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-b.png new file mode 100644 index 000000000000..dc4653abbbde Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-f.png new file mode 100644 index 000000000000..f20362d1b52c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-i.png new file mode 100644 index 000000000000..826cee62bbe0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-0.5-wide_image.png-camera.svg-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-f.png new file mode 100644 index 000000000000..4581fa99a5d0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-i.png new file mode 100644 index 000000000000..00772692a95c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-f.png new file mode 100644 index 000000000000..60eae930ebfa Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-i.png new file mode 100644 index 000000000000..361f55c4efbb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-tall_image.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-f.png new file mode 100644 index 000000000000..76ecf071c91a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-i.png new file mode 100644 index 000000000000..8d4df50ce30f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-f.png new file mode 100644 index 000000000000..dc4653abbbde Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-i.png new file mode 100644 index 000000000000..71fa75b16a7f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-dotnet_background.svg-wide_image.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-b.png new file mode 100644 index 000000000000..4581fa99a5d0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-i.png new file mode 100644 index 000000000000..c7064f6a7c9d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-b.png new file mode 100644 index 000000000000..60eae930ebfa Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-i.png new file mode 100644 index 000000000000..a8d09ea91a34 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-tall_image.png-camera.svg-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-b.png new file mode 100644 index 000000000000..76ecf071c91a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-i.png new file mode 100644 index 000000000000..a15dde83d3c4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-b.png new file mode 100644 index 000000000000..dc4653abbbde Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-i.png new file mode 100644 index 000000000000..57db7748fe1a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionAppIconWithoutBaseUseBackgroundSize/output-1-wide_image.png-camera.svg-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionWithoutBase/output-mdpi.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionWithoutBase/output-mdpi.png new file mode 100644 index 000000000000..de5fade3f028 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionWithoutBase/output-mdpi.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionWithoutBase/output-xhdpi.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionWithoutBase/output-xhdpi.png new file mode 100644 index 000000000000..639c357db04f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/DiffPropoprtionWithoutBase/output-xhdpi.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..0f21233d5cb3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..f9f73dee312d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..8878800b709b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..985ce2b3d1dc Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..4cec7a36e27a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..693f0436c475 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..0f21233d5cb3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..f9f73dee312d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..8878800b709b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..985ce2b3d1dc Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..4cec7a36e27a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..693f0436c475 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..0f21233d5cb3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..f9f73dee312d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..8878800b709b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..985ce2b3d1dc Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-f.png new file mode 100644 index 000000000000..4cec7a36e27a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-i.png new file mode 100644 index 000000000000..693f0436c475 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..460df774b84d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..94076c585206 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..b44e5b900a6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..b44e5b900a6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..460df774b84d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..94076c585206 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..b44e5b900a6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..b44e5b900a6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..460df774b84d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..94076c585206 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..b44e5b900a6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-i.png new file mode 100644 index 000000000000..b44e5b900a6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..616889966ad4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..1f52fe0d68d2 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..79dcee334860 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..7c9cdc1facfe Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..5753aafb17e7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..616889966ad4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..1f52fe0d68d2 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..79dcee334860 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..7c9cdc1facfe Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..5753aafb17e7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..616889966ad4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..1f52fe0d68d2 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..79dcee334860 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..7c9cdc1facfe Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-i.png new file mode 100644 index 000000000000..5753aafb17e7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-png-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..582e0ffb8e29 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..fd3f5972e831 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..582e0ffb8e29 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..fd3f5972e831 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..582e0ffb8e29 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..fd3f5972e831 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleAppIconWithColors/output-svg-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon--xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-NULL-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-appicon.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHappicon.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-folderSLASHthe_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-appicon-the_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera--xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-NULL-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-camera.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHcamera.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-folderSLASHthe_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-i.png new file mode 100644 index 000000000000..44690f065d56 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-i.png new file mode 100644 index 000000000000..421cde990c51 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-camera-the_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-b.png new file mode 100644 index 000000000000..c1f9cf4abe65 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-f.png new file mode 100644 index 000000000000..1f89b1a2dc23 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-i.png new file mode 100644 index 000000000000..86dfafbfd9b7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-b.png new file mode 100644 index 000000000000..2f75a9b3bb6f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-f.png new file mode 100644 index 000000000000..26dfa22c6cc6 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-i.png new file mode 100644 index 000000000000..c0e67474c428 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/MultipleVectorAppIconWithOnlyPathConvertsToRaster/output-prismicon-rasters-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..0f21233d5cb3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..a9546727fd59 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..8878800b709b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..29d9887ef5b1 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..4cec7a36e27a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..96f9be3b46c4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..0f21233d5cb3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..dad9653972d5 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..8878800b709b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..8e2629bc3373 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..4cec7a36e27a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..665cc3016e5a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..0f21233d5cb3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..9709f23b78b8 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..8878800b709b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..d8ebedb714f8 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-f.png new file mode 100644 index 000000000000..4cec7a36e27a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-i.png new file mode 100644 index 000000000000..2827b7b8c421 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-png-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..460df774b84d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..a9546727fd59 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..f83fb455e382 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..f83fb455e382 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..460df774b84d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..f750254f4252 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..8e2629bc3373 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..8e2629bc3373 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..460df774b84d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..0a9118593d25 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..13d1f918655d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-f.png new file mode 100644 index 000000000000..d17968e4a432 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-i.png new file mode 100644 index 000000000000..13d1f918655d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconGeneratesCorrectFilesWithForegroundScale/output-svg-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..616889966ad4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..a9546727fd59 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..79dcee334860 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..618573b7d9a5 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..f9b6716dd48b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..616889966ad4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..f32fb30c4c43 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..79dcee334860 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..8e2629bc3373 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..7cca62842a25 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..616889966ad4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..f2cb907ad6de Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..79dcee334860 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..131aaa2b5a10 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-png-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-f.png new file mode 100644 index 000000000000..582e0ffb8e29 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-i.png new file mode 100644 index 000000000000..a9546727fd59 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-i.png new file mode 100644 index 000000000000..cc23a1eaa42a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-b.png new file mode 100644 index 000000000000..5c99bcd2c149 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-i.png new file mode 100644 index 000000000000..cc23a1eaa42a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-00FF00-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-f.png new file mode 100644 index 000000000000..582e0ffb8e29 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-i.png new file mode 100644 index 000000000000..d9e8f6f4345c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-i.png new file mode 100644 index 000000000000..8e2629bc3373 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-b.png new file mode 100644 index 000000000000..eb1959fa46dd Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-i.png new file mode 100644 index 000000000000..8e2629bc3373 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-FFFFFF-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-f.png new file mode 100644 index 000000000000..582e0ffb8e29 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-i.png new file mode 100644 index 000000000000..8b140f9cf7f2 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-00FF00-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-FFFFFF-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleAppIconWithColors/output-svg-NULL-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleImageNoResizeSucceeds/output.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleImageNoResizeSucceeds/output.png new file mode 100644 index 000000000000..79c8dbc0b4f3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleImageNoResizeSucceeds/output.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-f.png new file mode 100644 index 000000000000..bb57e16f928f Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-i.png new file mode 100644 index 000000000000..98554c44f0b3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-f.png new file mode 100644 index 000000000000..a42dd3557982 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-i.png new file mode 100644 index 000000000000..7c48c4203d7b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color--xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-NULL-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-camera_color.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHcamera_color.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-folderSLASHthe_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-f.png new file mode 100644 index 000000000000..60fc10501d52 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-i.png new file mode 100644 index 000000000000..98f496d4adce Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-f.png new file mode 100644 index 000000000000..275753ad298c Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-i.png new file mode 100644 index 000000000000..dcb2ea3f560b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleRasterAppIconWithOnlyPathSucceedsWithoutVectors/output-camera_color-the_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon--xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-NULL-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-appicon.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHappicon.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-folderSLASHthe_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-f.png new file mode 100644 index 000000000000..9c0d3aaa86ef Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-i.png new file mode 100644 index 000000000000..2da697c44deb Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-f.png new file mode 100644 index 000000000000..2428833f84ad Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-i.png new file mode 100644 index 000000000000..efd9d4f6cf50 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-appicon-the_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera--xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-NULL-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-camera.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHcamera.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-folderSLASHthe_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-b.png new file mode 100644 index 000000000000..3ce756743be0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-f.png new file mode 100644 index 000000000000..51e79815f213 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-i.png new file mode 100644 index 000000000000..d1d4faa7a96a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-m-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-b.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-b.png new file mode 100644 index 000000000000..c6c76557d12d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-b.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-f.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-f.png new file mode 100644 index 000000000000..79ad426b834d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-f.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-i.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-i.png new file mode 100644 index 000000000000..c03119485898 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/ResizetizeImagesTests+ExecuteForAndroid/SingleVectorAppIconWithOnlyPathSucceedsWithoutVectors/output-camera-the_alias.png-xh-i.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/ComplexIconTest/output-1-1-appicon.svg-prismicon.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/ComplexIconTest/output-1-1-appicon.svg-prismicon.svg.png new file mode 100644 index 000000000000..31cafe243fa7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/ComplexIconTest/output-1-1-appicon.svg-prismicon.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..33aa5a527225 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..02948d07ccb9 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..070b22fb18fa Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..01211b9425e7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-0.5-1-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..557f4f0ae078 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..d764f4e30754 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..90e8fbddc6c0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..1e804c8c3e43 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-0.5-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..1d5a267ad40e Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..3ea268a4a790 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..c5414d21fdbf Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..16d855fac491 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithBaseSize/output-1-1-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..33aa5a527225 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..02948d07ccb9 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..070b22fb18fa Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..01211b9425e7 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-0.5-1-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..557f4f0ae078 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..d764f4e30754 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..90e8fbddc6c0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..1e804c8c3e43 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-0.5-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..1d5a267ad40e Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..3ea268a4a790 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..c5414d21fdbf Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..16d855fac491 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithDpiSize/output-1-1-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..8e9e4e70245a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..60815cb50e2a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..f9374b1019f4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..6576f0034672 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-0.5-1-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..9b2cb4516cc4 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..9555e4aa6259 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..2a88bd080ca0 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..97863917f761 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-0.5-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-dotnet_background.svg-tall_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-dotnet_background.svg-tall_image.png.png new file mode 100644 index 000000000000..cd987c29d395 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-dotnet_background.svg-tall_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-dotnet_background.svg-wide_image.png.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-dotnet_background.svg-wide_image.png.png new file mode 100644 index 000000000000..25d1768a4d2a Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-dotnet_background.svg-wide_image.png.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-tall_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-tall_image.png-camera.svg.png new file mode 100644 index 000000000000..a88ee829a464 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-tall_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-wide_image.png-camera.svg.png b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-wide_image.png-camera.svg.png new file mode 100644 index 000000000000..74e9ccaaa33d Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/imageresults/SkiaSharpAppIconToolsTests+Resize/DiffPropoprtionWithoutBaseUseBackgroundSize/output-1-1-wide_image.png-camera.svg.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/images/bicycle.svg b/src/SingleProject/Resizetizer/test/UnitTests/images/bicycle.svg new file mode 100644 index 000000000000..fdbd419958ad --- /dev/null +++ b/src/SingleProject/Resizetizer/test/UnitTests/images/bicycle.svg @@ -0,0 +1,65 @@ + + + + + ionicons-v5-h + + + + + + + + + diff --git a/src/SingleProject/Resizetizer/test/UnitTests/images/dotnet_foreground.svg b/src/SingleProject/Resizetizer/test/UnitTests/images/dotnet_foreground.svg new file mode 100644 index 000000000000..21dfb25f187b --- /dev/null +++ b/src/SingleProject/Resizetizer/test/UnitTests/images/dotnet_foreground.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/SingleProject/Resizetizer/test/UnitTests/images/tall_image.png b/src/SingleProject/Resizetizer/test/UnitTests/images/tall_image.png new file mode 100644 index 000000000000..3a2bacf916e3 Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/images/tall_image.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/images/wide_image.png b/src/SingleProject/Resizetizer/test/UnitTests/images/wide_image.png new file mode 100644 index 000000000000..51204dfb4e2b Binary files /dev/null and b/src/SingleProject/Resizetizer/test/UnitTests/images/wide_image.png differ diff --git a/src/SingleProject/Resizetizer/test/UnitTests/resources/maui_colors.xml b/src/SingleProject/Resizetizer/test/UnitTests/testdata/androidsplash/maui_colors.xml similarity index 65% rename from src/SingleProject/Resizetizer/test/UnitTests/resources/maui_colors.xml rename to src/SingleProject/Resizetizer/test/UnitTests/testdata/androidsplash/maui_colors.xml index 1a3b47c61966..64ef4c324ea3 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/resources/maui_colors.xml +++ b/src/SingleProject/Resizetizer/test/UnitTests/testdata/androidsplash/maui_colors.xml @@ -1,5 +1,5 @@  - {0} + {maui_splash_color} \ No newline at end of file diff --git a/src/SingleProject/Resizetizer/test/UnitTests/resources/maui_splash_image.xml b/src/SingleProject/Resizetizer/test/UnitTests/testdata/androidsplash/maui_splash_image.xml similarity index 81% rename from src/SingleProject/Resizetizer/test/UnitTests/resources/maui_splash_image.xml rename to src/SingleProject/Resizetizer/test/UnitTests/testdata/androidsplash/maui_splash_image.xml index dca7422715ae..d5cacbae2091 100644 --- a/src/SingleProject/Resizetizer/test/UnitTests/resources/maui_splash_image.xml +++ b/src/SingleProject/Resizetizer/test/UnitTests/testdata/androidsplash/maui_splash_image.xml @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/src/Templates/src/Microsoft.Maui.Templates.csproj b/src/Templates/src/Microsoft.Maui.Templates.csproj index 7ca5cc236f56..bebf5b5a7853 100644 --- a/src/Templates/src/Microsoft.Maui.Templates.csproj +++ b/src/Templates/src/Microsoft.Maui.Templates.csproj @@ -31,7 +31,7 @@ $(_MauiDotNetTfm) Template - Microsoft.Maui.Templates + Microsoft.Maui.Templates-$(_MauiDotNetVersion) .NET MAUI Templates Microsoft Templates for .NET MAUI. @@ -46,9 +46,9 @@ - - $([System.String]::Concat(%(RelativeDir), 'template.json')) - $(IntermediateOutputPath)$([System.String]::Concat(%(RelativeDir), 'template.json')) + + $([System.String]::Concat(%(RelativeDir), '%(Filename)%(Extension)')) + $(IntermediateOutputPath)$([System.String]::Concat(%(RelativeDir), '%(Filename)%(Extension)')) @@ -58,7 +58,7 @@ _UpdateTemplateVersions - @@ -67,17 +67,24 @@ SourceFiles="%(TemplateJsonInput.Fullpath)" DestinationFiles="%(TemplateJsonInput.IntermediateLocation)" /> - + + + + + MatchExpression="DOTNET_TFM_VALUE;DOTNET_TFM_VERSION_VALUE;DOTNET_TFM_VERSION_MAJOR_VALUE" + ReplacementText="$(_MauiDotNetTfm);$(_MauiDotNetVersion);$(_MauiDotNetVersionMajor)000" /> + @@ -94,4 +101,8 @@ + + + + diff --git a/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json b/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json new file mode 100644 index 000000000000..4430950393c9 --- /dev/null +++ b/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json @@ -0,0 +1,11 @@ +{ + "$schema": "http://json.schemastore.org/dotnetcli.host", + "symbolInfo": { + "Framework": { + "longName": "framework" + } + }, + "usageExamples": [ + "--framework DOTNET_TFM_VALUE" + ] + } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/ide.host.json b/src/Templates/src/templates/maui-blazor/.template.config/ide.host.json index 163ef456f98b..b033d675bf1d 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "icon": "ide/icon.ico", "unsupportedHosts": [ { diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json index b9ccaaef8175..54e0e7cacf48 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json @@ -3,5 +3,7 @@ "name": "Aplikace .NET MAUI Blazor", "description": "Projekt pro vytvoření .NET MAUI aplikace pro iOS, Android, Mac Catalyst, Tizen a WinUI pomocí Blazoru", "postActions/openInEditor/description": "Otevře soubor Pages/Index.razor v editoru.", - "symbols/applicationId/description": "Přepíše v projektu $(ApplicationId)." + "symbols/applicationId/description": "Přepíše v projektu $(ApplicationId).", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json index fc05feb82377..317510ac5e53 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Blazor-App", "description": "Ein Projekt zum Erstellen einer .NET MAUI-Anwendung für iOS, Android, Mac Catalyst, Tizen und WinUI mit Blazor", "postActions/openInEditor/description": "Öffnet Pages/Index.razor im Editor.", - "symbols/applicationId/description": "Überschreibt $(ApplicationId) im Projekt" + "symbols/applicationId/description": "Überschreibt $(ApplicationId) im Projekt", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json index 8e0e37a5b349..48029db47722 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json @@ -1,7 +1,9 @@ { "author": "Microsoft", "name": ".NET MAUI Blazor App", - "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, Tizen and WinUI using Blazor", + "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, WinUI, and Tizen using Blazor", "postActions/openInEditor/description": "Opens Pages/Index.razor in the editor.", - "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project" + "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json index e1e87f72663a..52867eb52b36 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json @@ -3,5 +3,7 @@ "name": "Aplicación .NET MAUI Blazor", "description": "Un proyecto para crear una aplicación .NET MAUI para iOS, Android, Mac Catalyst, Tizen y WinUI con Blazor", "postActions/openInEditor/description": "Abre Pages/Index.razor en el editor.", - "symbols/applicationId/description": "Reemplaza $(ApplicationId) en el proyecto" + "symbols/applicationId/description": "Reemplaza $(ApplicationId) en el proyecto", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json index d733c2aafa2d..94abe5e2b5a0 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json @@ -3,5 +3,7 @@ "name": "Application .NET MAUI Blazor", "description": "Projet de création d’une application .NET MAUI pour iOS, Android, Mac Catalyst, Tizen et WinUI à l’aide de Blazor", "postActions/openInEditor/description": "Ouvre Pages/Index.razor dans l’éditeur.", - "symbols/applicationId/description": "Remplace $(ApplicationId) dans le projet" + "symbols/applicationId/description": "Remplace $(ApplicationId) dans le projet", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json index 36ab22d5b906..00ab63d6ab4d 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json @@ -3,5 +3,7 @@ "name": "App .NET MAUI Blazor", "description": "Progetto per la creazione di un'applicazione .NET MAUI per iOS, Android, Mac Catalyst, Tizen e WinUI con Blazor", "postActions/openInEditor/description": "Apre Pages/Index.razor nell'editor.", - "symbols/applicationId/description": "Esegue l'override di $(ApplicationId) nel progetto" + "symbols/applicationId/description": "Esegue l'override di $(ApplicationId) nel progetto", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json index 80815f175562..75268b55cafa 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Blazor アプリ", "description": "Blazor を使用して、iOS、Android、Mac Catalyst、Tizen、および WinUI 用の .NET MAUI アプリケーションを作成するためのプロジェクト", "postActions/openInEditor/description": "エディターで Pages/Index.razor を開きます。", - "symbols/applicationId/description": "プロジェクト内の $(ApplicationId) をオーバーライドします" + "symbols/applicationId/description": "プロジェクト内の $(ApplicationId) をオーバーライドします", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json index 8e0e37a5b349..48029db47722 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json @@ -1,7 +1,9 @@ { "author": "Microsoft", "name": ".NET MAUI Blazor App", - "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, Tizen and WinUI using Blazor", + "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, WinUI, and Tizen using Blazor", "postActions/openInEditor/description": "Opens Pages/Index.razor in the editor.", - "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project" + "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json index ccae46c3b5b1..8c37b4f9d0df 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Blazor 앱", "description": "Blazor를 사용하여 iOS, Android, Mac Catalyst, Tizen 및 WinUI용 .NET MAUI 애플리케이션을 만들기 위한 프로젝트", "postActions/openInEditor/description": "편집기에서 Pages/Index.razor를 엽니다.", - "symbols/applicationId/description": "프로젝트에서 $(ApplicationId) 재정의" + "symbols/applicationId/description": "프로젝트에서 $(ApplicationId) 재정의", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json index 82cf9d4aeb1b..44b2d49c2ec2 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json @@ -3,5 +3,7 @@ "name": "Aplikacja platformy .NET MAUI Blazor", "description": "Projekt służący do tworzenia aplikacji platformy .NET MAUI dla systemów iOS, Android, Mac Catalyst, Tizen i WinUI przy użyciu platformy Blazor", "postActions/openInEditor/description": "Otwiera plik Pages/Index.razor w edytorze.", - "symbols/applicationId/description": "Zastępuje $(ApplicationId) w projekcie" + "symbols/applicationId/description": "Zastępuje $(ApplicationId) w projekcie", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json index 520e02da5489..09362cb25ed1 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json @@ -3,5 +3,7 @@ "name": "Aplicativo Blazor .NET MAUI", "description": "Um projeto para a criação de um aplicativo .NET MAUI para iOS, Android, Mac Catalyst, Tizen e WinUI usando o Blazor", "postActions/openInEditor/description": "Abre Pages/Index.razor no editor.", - "symbols/applicationId/description": "Substitui $(ApplicationId) no projeto" + "symbols/applicationId/description": "Substitui $(ApplicationId) no projeto", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json index 9e29c1c25208..ef55587dca1d 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json @@ -3,5 +3,7 @@ "name": "Приложение .NET MAUI Blazor", "description": "Проект по созданию приложения .NET MAUI для iOS, Android, Mac Catalyst, Tizen и WinUI с использованием Blazor", "postActions/openInEditor/description": "Открывает Pages/Index.razor в редакторе.", - "symbols/applicationId/description": "Переопределяет $(ApplicationId) в проекте" + "symbols/applicationId/description": "Переопределяет $(ApplicationId) в проекте", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json index d0154904268b..bc77d4ad394c 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Blazor Uygulaması", "description": "iOS, Android, Mac Catalyst, Tizen .NET MAUI ve WinUI için Blazor kullanarak yeni bir uygulama oluşturmaya yönelik proje", "postActions/openInEditor/description": "Düzenleyicide Pages/Index.razor dosyasını açar.", - "symbols/applicationId/description": "Projedeki $(ApplicationId) uygulamasın geçersiz kılar" + "symbols/applicationId/description": "Projedeki $(ApplicationId) uygulamasın geçersiz kılar", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json index d19d2abf6848..c9a677c20dc4 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Blazor 应用", "description": "用于使用 Blazor 创建适用于 iOS、Android、Mac Catalyst、Tizen 和 WinUI 的 .NET MAUI 应用程序的项目", "postActions/openInEditor/description": "在编辑器中打开 Pages/Index.razor。", - "symbols/applicationId/description": "替代项目中的 $(ApplicationId)" + "symbols/applicationId/description": "替代项目中的 $(ApplicationId)", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json index d16b452a74b7..7cbee64edf23 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Blazor 應用程式", "description": "此專案可用於建立適用於 iOS、Android、Mac Catalyst、Tizen 和使用 Blazor 的 WinUI 的 .NET MAUI 應用程式", "postActions/openInEditor/description": "在編輯器中開啟 Pages/Index.razor。", - "symbols/applicationId/description": "覆寫專案中的 $(ApplicationId)" + "symbols/applicationId/description": "覆寫專案中的 $(ApplicationId)", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/template.in.json b/src/Templates/src/templates/maui-blazor/.template.config/template.json similarity index 82% rename from src/Templates/src/templates/maui-blazor/.template.config/template.in.json rename to src/Templates/src/templates/maui-blazor/.template.config/template.json index b227a9db1d40..473c8bd87220 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/template.in.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/template.json @@ -2,8 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "Windows", "Tizen", "Blazor" ], - "identity": "Microsoft.Maui.BlazorApp", + "identity": "Microsoft.Maui.BlazorApp.CSharp.DOTNET_TFM_VERSION_VALUE", "groupIdentity": "Microsoft.Maui.BlazorApp", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI Blazor App", "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, WinUI, and Tizen using Blazor", "shortName": "maui-blazor", @@ -58,21 +59,16 @@ "datatype": "string", "replaces": "com.companyname.MauiApp.1" }, - "windowsAppSdkVersion": { + "Framework": { "type": "parameter", - "dataType": "string", - "replaces": "WINDOWSAPPSDK_VERSION", - "defaultValue": "WINDOWSAPPSDK_VERSION_VALUE" - }, - "win2dVersion": { - "type": "parameter", - "dataType": "string", - "replaces": "WIN2D_VERSION", - "defaultValue": "WIN2D_VERSION_VALUE" - }, - "DotNetTfm": { - "type": "parameter", - "dataType": "string", + "description": "The target framework for the project.", + "datatype": "choice", + "choices": [ + { + "choice": "DOTNET_TFM_VALUE", + "description": "Target DOTNET_TFM_VALUE" + } + ], "replaces": "DOTNET_TFM", "defaultValue": "DOTNET_TFM_VALUE" }, diff --git a/src/Templates/src/templates/maui-blazor/MauiApp.1.csproj b/src/Templates/src/templates/maui-blazor/MauiApp.1.csproj index 68fc2f7e3a7c..31d8418b9d3f 100644 --- a/src/Templates/src/templates/maui-blazor/MauiApp.1.csproj +++ b/src/Templates/src/templates/maui-blazor/MauiApp.1.csproj @@ -1,52 +1,52 @@  - - DOTNET_TFM-android;DOTNET_TFM-ios;DOTNET_TFM-maccatalyst - $(TargetFrameworks);DOTNET_TFM-windows10.0.19041.0 - - - Exe - MauiApp._1 - true - true - enable - false - - - MauiApp.1 - - - com.companyname.mauiapp._1 - 8B51DC95-6D07-4C39-BC6C-3BFE96E8A7EA - - - 1.0 - 1 - - 14.2 - 14.0 - 24.0 - 10.0.17763.0 - 10.0.17763.0 - 6.5 - - - - - - - - - - - - - - - - - - - + + DOTNET_TFM-android;DOTNET_TFM-ios;DOTNET_TFM-maccatalyst + $(TargetFrameworks);DOTNET_TFM-windows10.0.19041.0 + + + Exe + MauiApp._1 + true + true + enable + false + + + MauiApp.1 + + + com.companyname.mauiapp._1 + 8B51DC95-6D07-4C39-BC6C-3BFE96E8A7EA + + + 1.0 + 1 + + 14.2 + 14.0 + 24.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + diff --git a/src/Templates/src/templates/maui-blazor/MauiProgram.cs b/src/Templates/src/templates/maui-blazor/MauiProgram.cs index 6b231e13c317..d15acedd0d53 100644 --- a/src/Templates/src/templates/maui-blazor/MauiProgram.cs +++ b/src/Templates/src/templates/maui-blazor/MauiProgram.cs @@ -16,11 +16,11 @@ public static MauiApp CreateMauiApp() }); builder.Services.AddMauiBlazorWebView(); -//-:cnd:noEmit + //-:cnd:noEmit #if DEBUG builder.Services.AddBlazorWebViewDeveloperTools(); #endif -//+:cnd:noEmit + //+:cnd:noEmit builder.Services.AddSingleton(); diff --git a/src/Templates/src/templates/maui-blazor/Platforms/Windows/App.xaml.cs b/src/Templates/src/templates/maui-blazor/Platforms/Windows/App.xaml.cs index 4da1e48cb670..fd28c9d60a2c 100644 --- a/src/Templates/src/templates/maui-blazor/Platforms/Windows/App.xaml.cs +++ b/src/Templates/src/templates/maui-blazor/Platforms/Windows/App.xaml.cs @@ -10,15 +10,15 @@ namespace MauiApp._1.WinUI; /// public partial class App : MauiWinUIApplication { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + } - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); } diff --git a/src/Templates/src/templates/maui-contentpage-csharp/.template.config/ide.host.json b/src/Templates/src/templates/maui-contentpage-csharp/.template.config/ide.host.json index 6fb095bb7590..5417de7c6308 100644 --- a/src/Templates/src/templates/maui-contentpage-csharp/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-contentpage-csharp/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "appliesTo": "UseMaui", "defaultItemExtension": "cs", "itemHierarchyPaths": [ ".NET MAUI" ], diff --git a/src/Templates/src/templates/maui-contentpage-csharp/.template.config/template.json b/src/Templates/src/templates/maui-contentpage-csharp/.template.config/template.json index 913d2dfe004f..523061d62d3b 100644 --- a/src/Templates/src/templates/maui-contentpage-csharp/.template.config/template.json +++ b/src/Templates/src/templates/maui-contentpage-csharp/.template.config/template.json @@ -2,7 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "WinUI", "Tizen", "Xaml", "Code" ], - "identity": "Microsoft.Maui.CSharpContentPage", + "identity": "Microsoft.Maui.CSharpContentPage.DOTNET_TFM_VERSION_VALUE", + "groupIdentity": "Microsoft.Maui.CSharpContentPage", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI ContentPage (C#)", "shortName": "maui-page-csharp", "tags": { diff --git a/src/Templates/src/templates/maui-contentpage-csharp/NewPage1.cs b/src/Templates/src/templates/maui-contentpage-csharp/NewPage1.cs index b5cc7a4f5328..069ab79d3358 100644 --- a/src/Templates/src/templates/maui-contentpage-csharp/NewPage1.cs +++ b/src/Templates/src/templates/maui-contentpage-csharp/NewPage1.cs @@ -4,10 +4,11 @@ public class NewPage1 : ContentPage { public NewPage1() { - Content = new StackLayout + Content = new VerticalStackLayout { Children = { - new Label { Text = "Welcome to .NET MAUI!" } + new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!" + } } }; } diff --git a/src/Templates/src/templates/maui-contentpage-xaml/.template.config/ide.host.json b/src/Templates/src/templates/maui-contentpage-xaml/.template.config/ide.host.json index d4fe14f7faf9..7794de5caf2a 100644 --- a/src/Templates/src/templates/maui-contentpage-xaml/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-contentpage-xaml/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "appliesTo": "UseMaui", "defaultItemExtension": "xaml", "itemHierarchyPaths": [ ".NET MAUI" ], diff --git a/src/Templates/src/templates/maui-contentpage-xaml/.template.config/template.json b/src/Templates/src/templates/maui-contentpage-xaml/.template.config/template.json index 52b3cc5d7b71..9ff72b84dc02 100644 --- a/src/Templates/src/templates/maui-contentpage-xaml/.template.config/template.json +++ b/src/Templates/src/templates/maui-contentpage-xaml/.template.config/template.json @@ -2,7 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "WinUI", "Tizen", "Xaml", "Code" ], - "identity": "Microsoft.Maui.XamlContentPage", + "identity": "Microsoft.Maui.XamlContentPage.DOTNET_TFM_VERSION_VALUE", + "groupIdentity": "Microsoft.Maui.XamlContentPage", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI ContentPage (XAML)", "shortName": "maui-page-xaml", "tags": { diff --git a/src/Templates/src/templates/maui-contentpage-xaml/NewPage1.xaml b/src/Templates/src/templates/maui-contentpage-xaml/NewPage1.xaml index cfcab5097afc..25494840cb11 100644 --- a/src/Templates/src/templates/maui-contentpage-xaml/NewPage1.xaml +++ b/src/Templates/src/templates/maui-contentpage-xaml/NewPage1.xaml @@ -3,9 +3,10 @@ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MauiApp1.NewPage1" Title="NewPage1"> - - - + + + \ No newline at end of file diff --git a/src/Templates/src/templates/maui-contentview-csharp/.template.config/ide.host.json b/src/Templates/src/templates/maui-contentview-csharp/.template.config/ide.host.json index 9c2ebbe95f7e..66647fc9d264 100644 --- a/src/Templates/src/templates/maui-contentview-csharp/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-contentview-csharp/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "appliesTo": "UseMaui", "defaultItemExtension": "cs", "itemHierarchyPaths": [ ".NET MAUI" ], diff --git a/src/Templates/src/templates/maui-contentview-csharp/.template.config/template.json b/src/Templates/src/templates/maui-contentview-csharp/.template.config/template.json index 3c99416e9dfb..7839c907866b 100644 --- a/src/Templates/src/templates/maui-contentview-csharp/.template.config/template.json +++ b/src/Templates/src/templates/maui-contentview-csharp/.template.config/template.json @@ -2,7 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "WinUI", "Tizen", "Xaml", "Code" ], - "identity": "Microsoft.Maui.CSharpContentView", + "identity": "Microsoft.Maui.CSharpContentView.DOTNET_TFM_VERSION_VALUE", + "groupIdentity": "Microsoft.Maui.CSharpContentView", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI ContentView (C#)", "shortName": "maui-view-csharp", "tags": { diff --git a/src/Templates/src/templates/maui-contentview-csharp/NewContent1.cs b/src/Templates/src/templates/maui-contentview-csharp/NewContent1.cs index 7fe7de29f3a5..1e12c4ec1a4a 100644 --- a/src/Templates/src/templates/maui-contentview-csharp/NewContent1.cs +++ b/src/Templates/src/templates/maui-contentview-csharp/NewContent1.cs @@ -4,10 +4,11 @@ public class NewContent1 : ContentView { public NewContent1() { - Content = new StackLayout + Content = new VerticalStackLayout { Children = { - new Label { Text = "Welcome to .NET MAUI!" } + new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!" + } } }; } diff --git a/src/Templates/src/templates/maui-contentview-xaml/.template.config/ide.host.json b/src/Templates/src/templates/maui-contentview-xaml/.template.config/ide.host.json index e1af386a2392..414835ffbed6 100644 --- a/src/Templates/src/templates/maui-contentview-xaml/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-contentview-xaml/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "appliesTo": "UseMaui", "defaultItemExtension": "xaml", "itemHierarchyPaths": [ ".NET MAUI" ], diff --git a/src/Templates/src/templates/maui-contentview-xaml/.template.config/template.json b/src/Templates/src/templates/maui-contentview-xaml/.template.config/template.json index 2ed08942ce07..3f3b4823d3a9 100644 --- a/src/Templates/src/templates/maui-contentview-xaml/.template.config/template.json +++ b/src/Templates/src/templates/maui-contentview-xaml/.template.config/template.json @@ -2,7 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "WinUI", "Tizen", "Xaml", "Code" ], - "identity": "Microsoft.Maui.XamlContentView", + "identity": "Microsoft.Maui.XamlContentView.DOTNET_TFM_VERSION_VALUE", + "groupIdentity": "Microsoft.Maui.XamlContentView", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI ContentView (XAML)", "shortName": "maui-view-xaml", "tags": { diff --git a/src/Templates/src/templates/maui-contentview-xaml/NewContent1.xaml b/src/Templates/src/templates/maui-contentview-xaml/NewContent1.xaml index 4766f847b168..865ecfc05c4d 100644 --- a/src/Templates/src/templates/maui-contentview-xaml/NewContent1.xaml +++ b/src/Templates/src/templates/maui-contentview-xaml/NewContent1.xaml @@ -2,9 +2,10 @@ - - + + diff --git a/src/Templates/src/templates/maui-lib/.template.config/dotnetcli.host.json b/src/Templates/src/templates/maui-lib/.template.config/dotnetcli.host.json new file mode 100644 index 000000000000..4430950393c9 --- /dev/null +++ b/src/Templates/src/templates/maui-lib/.template.config/dotnetcli.host.json @@ -0,0 +1,11 @@ +{ + "$schema": "http://json.schemastore.org/dotnetcli.host", + "symbolInfo": { + "Framework": { + "longName": "framework" + } + }, + "usageExamples": [ + "--framework DOTNET_TFM_VALUE" + ] + } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/ide.host.json b/src/Templates/src/templates/maui-lib/.template.config/ide.host.json index e32df423f2ab..05c4fed4f8be 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-lib/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "icon": "ide/icon.ico", "unsupportedHosts": [ { diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.cs.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.cs.json index d08d72b70c17..d12110681b8c 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.cs.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.cs.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": "Knihovna tříd .NET MAUI", "description": "Projekt pro vytvoření knihovny tříd .NET MAUI", - "postActions/openInEditor/description": "Otevře soubor Class1.cs v editoru." + "postActions/openInEditor/description": "Otevře soubor Class1.cs v editoru.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.de.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.de.json index 92f88c38e0bf..c6d621d72414 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.de.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.de.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI-Klassenbibliothek", "description": "Ein Projekt zum Erstellen einer .NET MAUI Klassenbibliothek", - "postActions/openInEditor/description": "Öffnet \"Class1.cs\" im Editor." + "postActions/openInEditor/description": "Öffnet \"Class1.cs\" im Editor.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.en.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.en.json index aa913495e051..494bb654e85a 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.en.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.en.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI Class Library", "description": "A project for creating a .NET MAUI class library", - "postActions/openInEditor/description": "Opens Class1.cs in the editor." + "postActions/openInEditor/description": "Opens Class1.cs in the editor.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.es.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.es.json index d1c8e537046b..669941e6508b 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.es.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.es.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": "Biblioteca de clases .NET MAUI", "description": "Proyecto para crear una biblioteca de clases .NET MAUI", - "postActions/openInEditor/description": "Abre Class1.cs en el editor" + "postActions/openInEditor/description": "Abre Class1.cs en el editor", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.fr.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.fr.json index 33b1bc3cabdb..b39b2d814047 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.fr.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.fr.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": "Bibliothèque de classes .NET MAUI", "description": "Projet de création d’une bibliothèque de classes .NET MAUI", - "postActions/openInEditor/description": "Ouvre Class1.cs dans l’éditeur." + "postActions/openInEditor/description": "Ouvre Class1.cs dans l’éditeur.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.it.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.it.json index 71ad1f843c27..63e22098db14 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.it.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.it.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": "Libreria di classi .NET MAUI", "description": "Progetto per la creazione di una libreria di classi .NET MAUI", - "postActions/openInEditor/description": "Apre Class1.cs nell'editor." + "postActions/openInEditor/description": "Apre Class1.cs nell'editor.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ja.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ja.json index a24795b7136c..8b5c53bafe4d 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ja.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ja.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI クラス ライブラリ", "description": ".NET MAUI クラス ライブラリを作成するためのプロジェクト", - "postActions/openInEditor/description": "エディターで Class1.cs を開きます" + "postActions/openInEditor/description": "エディターで Class1.cs を開きます", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json index aa913495e051..494bb654e85a 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI Class Library", "description": "A project for creating a .NET MAUI class library", - "postActions/openInEditor/description": "Opens Class1.cs in the editor." + "postActions/openInEditor/description": "Opens Class1.cs in the editor.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ko.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ko.json index 43ec1a8ca510..bff32bd7d81a 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ko.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ko.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI 클래스 라이브러리", "description": ".NET MAUI 클래스 라이브러리를 만들기 위한 프로젝트", - "postActions/openInEditor/description": "편집기에서 Class1.cs를 엽니다." + "postActions/openInEditor/description": "편집기에서 Class1.cs를 엽니다.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pl.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pl.json index 6351db80e51b..7ec41342d615 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pl.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pl.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": "Biblioteka klas platformy .NET MAUI", "description": "Projekt służący do tworzenia biblioteki klas .NET MAUI", - "postActions/openInEditor/description": "Otwiera plik Class1.cs w edytorze." + "postActions/openInEditor/description": "Otwiera plik Class1.cs w edytorze.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pt-BR.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pt-BR.json index 2cccbdb0a01d..76fec495bf20 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pt-BR.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.pt-BR.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": "Biblioteca de Classes .NET MAUI", "description": "Um projeto para a criação de uma biblioteca de classes .NET MAUI", - "postActions/openInEditor/description": "Abre Class1.cs no editor." + "postActions/openInEditor/description": "Abre Class1.cs no editor.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ru.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ru.json index 3d23f8e96e24..45c927a48878 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ru.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.ru.json @@ -2,5 +2,7 @@ "author": "Майкрософт", "name": "Библиотека классов .NET MAUI", "description": "Проект по созданию библиотеки классов .NET MAUI", - "postActions/openInEditor/description": "Открывает файл Class1.cs в редакторе." + "postActions/openInEditor/description": "Открывает файл Class1.cs в редакторе.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.tr.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.tr.json index 9f232a256ede..44acb2d996eb 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.tr.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.tr.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI Sınıf Kitaplığı", "description": ".NET MAUI sınıf kitaplığı oluşturmaya yönelik proje", - "postActions/openInEditor/description": "Düzenleyicide Class1.cs dosyasını açar." + "postActions/openInEditor/description": "Düzenleyicide Class1.cs dosyasını açar.", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hans.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hans.json index 034a04a7c8fa..172f3e4a1098 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hans.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hans.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI类库", "description": "用于创建 .NET MAUI 类库的项目", - "postActions/openInEditor/description": "在编辑器中打开 Class1.cs。" + "postActions/openInEditor/description": "在编辑器中打开 Class1.cs。", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hant.json b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hant.json index 647cf507c390..0733d054e8ea 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hant.json +++ b/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.zh-Hant.json @@ -2,5 +2,7 @@ "author": "Microsoft", "name": ".NET MAUI 類別庫", "description": "用於建立 .NET MAUI 類別庫的專案", - "postActions/openInEditor/description": "在編輯器中開啟 Class1.cs。" + "postActions/openInEditor/description": "在編輯器中開啟 Class1.cs。", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-lib/.template.config/template.in.json b/src/Templates/src/templates/maui-lib/.template.config/template.json similarity index 77% rename from src/Templates/src/templates/maui-lib/.template.config/template.in.json rename to src/Templates/src/templates/maui-lib/.template.config/template.json index 1fda2e793199..7f0d8793c66b 100644 --- a/src/Templates/src/templates/maui-lib/.template.config/template.in.json +++ b/src/Templates/src/templates/maui-lib/.template.config/template.json @@ -2,8 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "Windows", "Tizen" ], - "identity": "Microsoft.Maui.MauiLib", + "identity": "Microsoft.Maui.MauiLib.CSharp.DOTNET_TFM_VERSION_VALUE", "groupIdentity": "Microsoft.Maui.Library", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI Class Library", "description": "A project for creating a .NET MAUI class library", "shortName": "mauilib", @@ -34,9 +35,16 @@ ], "preferNameDirectory": true, "symbols": { - "DotNetTfm": { + "Framework": { "type": "parameter", - "dataType": "string", + "description": "The target framework for the project.", + "datatype": "choice", + "choices": [ + { + "choice": "DOTNET_TFM_VALUE", + "description": "Target DOTNET_TFM_VALUE" + } + ], "replaces": "DOTNET_TFM", "defaultValue": "DOTNET_TFM_VALUE" } diff --git a/src/Templates/src/templates/maui-lib/MauiLib1.csproj b/src/Templates/src/templates/maui-lib/MauiLib1.csproj index a4739cbbd6f8..2515bb49c5f1 100644 --- a/src/Templates/src/templates/maui-lib/MauiLib1.csproj +++ b/src/Templates/src/templates/maui-lib/MauiLib1.csproj @@ -4,7 +4,7 @@ DOTNET_TFM;DOTNET_TFM-android;DOTNET_TFM-ios;DOTNET_TFM-maccatalyst $(TargetFrameworks);DOTNET_TFM-windows10.0.19041.0 - + MauiLib1 true true diff --git a/src/Templates/src/templates/maui-mobile/.template.config/dotnetcli.host.json b/src/Templates/src/templates/maui-mobile/.template.config/dotnetcli.host.json new file mode 100644 index 000000000000..4430950393c9 --- /dev/null +++ b/src/Templates/src/templates/maui-mobile/.template.config/dotnetcli.host.json @@ -0,0 +1,11 @@ +{ + "$schema": "http://json.schemastore.org/dotnetcli.host", + "symbolInfo": { + "Framework": { + "longName": "framework" + } + }, + "usageExamples": [ + "--framework DOTNET_TFM_VALUE" + ] + } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/ide.host.json b/src/Templates/src/templates/maui-mobile/.template.config/ide.host.json index e32df423f2ab..05c4fed4f8be 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/ide.host.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/ide.host.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/vs-2017.3.host", + "$schema": "http://json.schemastore.org/ide.host", "icon": "ide/icon.ico", "unsupportedHosts": [ { diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.cs.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.cs.json index cc5c7f469ba2..a7cde7d19ae3 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.cs.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.cs.json @@ -3,5 +3,7 @@ "name": "Aplikace .NET MAUI", "description": "Projekt pro vytvoření .NET MAUI aplikace pro iOS, Android, Mac Catalyst, Tizen a WinUI", "postActions/openInEditor/description": "Otevře soubor MainPage.xaml v editoru.", - "symbols/applicationId/description": "Přepíše v projektu $(ApplicationId)." + "symbols/applicationId/description": "Přepíše v projektu $(ApplicationId).", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.de.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.de.json index 3b695d593c0c..2888695e8666 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.de.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.de.json @@ -3,5 +3,7 @@ "name": ".NET MAUI-App", "description": "Ein Projekt zum Erstellen einer .NET MAUI-Anwendung für iOS, Android, Mac Catalyst, Tizen und WinUI", "postActions/openInEditor/description": "Öffnet \"MainPage.xaml\" im Editor.", - "symbols/applicationId/description": "Überschreibt $(ApplicationId) im Projekt" + "symbols/applicationId/description": "Überschreibt $(ApplicationId) im Projekt", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.en.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.en.json index c159d8d79f00..69d5ab31de37 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.en.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.en.json @@ -1,7 +1,9 @@ { "author": "Microsoft", "name": ".NET MAUI App", - "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, Tizen and WinUI", + "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, WinUI and Tizen", "postActions/openInEditor/description": "Opens MainPage.xaml in the editor.", - "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project" + "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.es.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.es.json index ef5274ace60c..e350ac84d5f1 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.es.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.es.json @@ -3,5 +3,7 @@ "name": "Aplicación .NET MAUI", "description": "Un proyecto para crear una aplicación .NET MAUI para iOS, Android, Mac Catalyst, Tizen y WinUI", "postActions/openInEditor/description": "Abre MainPage.xaml en el editor.", - "symbols/applicationId/description": "Reemplaza $(ApplicationId) en el proyecto" + "symbols/applicationId/description": "Reemplaza $(ApplicationId) en el proyecto", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.fr.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.fr.json index 966c4fe2c14b..1fbb14ad7977 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.fr.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.fr.json @@ -3,5 +3,7 @@ "name": "Application .NET MAUI", "description": "Projet de création d’une application .NET MAUI pour iOS, Android, Mac Catalyst, Tizen et WinUI", "postActions/openInEditor/description": "Ouvre MainPage.xaml dans l’éditeur.", - "symbols/applicationId/description": "Remplace $(ApplicationId) dans le projet" + "symbols/applicationId/description": "Remplace $(ApplicationId) dans le projet", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.it.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.it.json index b2abe3dd0696..e114381a8ee0 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.it.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.it.json @@ -3,5 +3,7 @@ "name": "App .NET MAUI", "description": "Progetto per la creazione di un'applicazione .NET MAUI per iOS, Android, Mac Catalyst, Tizen e WinUI", "postActions/openInEditor/description": "Apre MainPage.xaml nell'editor.", - "symbols/applicationId/description": "Esegue l'override di $(ApplicationId) nel progetto" + "symbols/applicationId/description": "Esegue l'override di $(ApplicationId) nel progetto", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ja.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ja.json index 6d7d93d2bc65..469c07f726b1 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ja.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ja.json @@ -3,5 +3,7 @@ "name": ".NET MAUI アプリ", "description": "iOS、Android、Mac Catalyst、Tizen、および WinUI 用の .NET MAUI アプリケーションを作成するためのプロジェクト", "postActions/openInEditor/description": "エディターで MainPage.xaml を開きます。", - "symbols/applicationId/description": "プロジェクト内の $(ApplicationId) をオーバーライドします" + "symbols/applicationId/description": "プロジェクト内の $(ApplicationId) をオーバーライドします", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json index a21fa4b445c2..69d5ab31de37 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json @@ -1,7 +1,9 @@ { "author": "Microsoft", "name": ".NET MAUI App", - "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, Tizen, and WinUI", + "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, WinUI and Tizen", "postActions/openInEditor/description": "Opens MainPage.xaml in the editor.", - "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project" + "symbols/applicationId/description": "Overrides the $(ApplicationId) in the project", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ko.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ko.json index d4447e4c2736..658eb52ebfae 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ko.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ko.json @@ -3,5 +3,7 @@ "name": ".NET MAUI 앱", "description": "iOS, Android, Mac Catalyst, Tizen 및 WinUI용 .NET MAUI 애플리케이션을 만들기 위한 프로젝트", "postActions/openInEditor/description": "편집기에서 MainPage.xaml을 엽니다.", - "symbols/applicationId/description": "프로젝트에서 $(ApplicationId) 재정의" + "symbols/applicationId/description": "프로젝트에서 $(ApplicationId) 재정의", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pl.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pl.json index 8119f7ed54ec..43ca2cb94829 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pl.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pl.json @@ -3,5 +3,7 @@ "name": "Aplikacja platformy .NET MAUI", "description": "Projekt służący do tworzenia aplikacji .NET MAUI dla systemów iOS, Android, Mac Catalyst, Tizen i WinUI", "postActions/openInEditor/description": "Otwiera plik MainPage.xaml w edytorze.", - "symbols/applicationId/description": "Zastępuje $(ApplicationId) w projekcie" + "symbols/applicationId/description": "Zastępuje $(ApplicationId) w projekcie", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pt-BR.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pt-BR.json index e8a4570d093b..b02fb9084acd 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pt-BR.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.pt-BR.json @@ -3,5 +3,7 @@ "name": "Aplicativo .NET MAUI", "description": "Um projeto para a criação de um aplicativo .NET MAUI para iOS, Android, Mac Catalyst, Tizen e WinUI", "postActions/openInEditor/description": "Abre MainPage.xaml no editor.", - "symbols/applicationId/description": "Substitui $(ApplicationId) no projeto" + "symbols/applicationId/description": "Substitui $(ApplicationId) no projeto", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ru.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ru.json index e52658b1a891..f0ae4776f99b 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ru.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.ru.json @@ -3,5 +3,7 @@ "name": "Приложение .NET MAUI", "description": "Проект по созданию приложения .NET MAUI для iOS, Android, Mac Catalyst, Tizen и WinUI", "postActions/openInEditor/description": "Открывает MainPage.xaml в редакторе.", - "symbols/applicationId/description": "Переопределяет $(ApplicationId) в проекте" + "symbols/applicationId/description": "Переопределяет $(ApplicationId) в проекте", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.tr.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.tr.json index afcce6eefe6f..e2aa7fe11199 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.tr.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.tr.json @@ -3,5 +3,7 @@ "name": ".NET MAUI Uygulaması", "description": "iOS, Android, Mac Catalyst, Tizen .NET MAUI ve WinUI için yeni bir uygulama oluşturmaya yönelik proje", "postActions/openInEditor/description": "Düzenleyicide MainPage.xaml dosyasını açar.", - "symbols/applicationId/description": "Projedeki $(ApplicationId) uygulamasın geçersiz kılar" + "symbols/applicationId/description": "Projedeki $(ApplicationId) uygulamasın geçersiz kılar", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hans.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hans.json index 983a74f32859..866f89b18d62 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hans.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hans.json @@ -3,5 +3,7 @@ "name": ".NET MAUI应用", "description": "用于创建适用于 iOS、Android、Mac Catalyst、Tizen 和 WinUI 的 .NET MAUI 应用程序的项目", "postActions/openInEditor/description": "在编辑器中打开 MainPage.xaml。", - "symbols/applicationId/description": "替代项目中的 $(ApplicationId)" + "symbols/applicationId/description": "替代项目中的 $(ApplicationId)", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hant.json b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hant.json index 8ae3fb5ad5cb..c79122c64c99 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hant.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.zh-Hant.json @@ -3,5 +3,7 @@ "name": ".NET MAUI 應用程式", "description": "此專案可用於建立適用於 iOS、Android、Mac Catalyst、Tizen 和 WinUI 的 .NET MAUI 應用程式", "postActions/openInEditor/description": "在編輯器中開啟 MainPage.xaml。", - "symbols/applicationId/description": "覆寫專案中的 $(ApplicationId)" + "symbols/applicationId/description": "覆寫專案中的 $(ApplicationId)", + "symbols/Framework/description": "The target framework for the project.", + "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-mobile/.template.config/template.in.json b/src/Templates/src/templates/maui-mobile/.template.config/template.json similarity index 83% rename from src/Templates/src/templates/maui-mobile/.template.config/template.in.json rename to src/Templates/src/templates/maui-mobile/.template.config/template.json index 7cc615cb5312..668a95b7f336 100644 --- a/src/Templates/src/templates/maui-mobile/.template.config/template.in.json +++ b/src/Templates/src/templates/maui-mobile/.template.config/template.json @@ -2,8 +2,9 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "MAUI", "Android", "iOS", "macOS", "Mac Catalyst", "Windows", "Tizen" ], - "identity": "Microsoft.Maui.MauiApp", + "identity": "Microsoft.Maui.MauiApp.CSharp.DOTNET_TFM_VERSION_VALUE", "groupIdentity": "Microsoft.Maui.App", + "precedence": "DOTNET_TFM_VERSION_MAJOR_VALUE", "name": ".NET MAUI App", "description": "A project for creating a .NET MAUI application for iOS, Android, Mac Catalyst, WinUI and Tizen", "shortName": "maui", @@ -62,21 +63,16 @@ "datatype": "string", "replaces": "com.companyname.MauiApp.1" }, - "windowsAppSdkVersion": { + "Framework": { "type": "parameter", - "dataType": "string", - "replaces": "WINDOWSAPPSDK_VERSION", - "defaultValue": "WINDOWSAPPSDK_VERSION_VALUE" - }, - "win2dVersion": { - "type": "parameter", - "dataType": "string", - "replaces": "WIN2D_VERSION", - "defaultValue": "WIN2D_VERSION_VALUE" - }, - "DotNetTfm": { - "type": "parameter", - "dataType": "string", + "description": "The target framework for the project.", + "datatype": "choice", + "choices": [ + { + "choice": "DOTNET_TFM_VALUE", + "description": "Target DOTNET_TFM_VALUE" + } + ], "replaces": "DOTNET_TFM", "defaultValue": "DOTNET_TFM_VALUE" }, diff --git a/src/Templates/src/templates/maui-mobile/AppShell.xaml.cs b/src/Templates/src/templates/maui-mobile/AppShell.xaml.cs index a110aac3f37c..b0d434474353 100644 --- a/src/Templates/src/templates/maui-mobile/AppShell.xaml.cs +++ b/src/Templates/src/templates/maui-mobile/AppShell.xaml.cs @@ -2,8 +2,8 @@ public partial class AppShell : Shell { - public AppShell() - { - InitializeComponent(); - } + public AppShell() + { + InitializeComponent(); + } } diff --git a/src/Templates/src/templates/maui-mobile/MainPage.xaml b/src/Templates/src/templates/maui-mobile/MainPage.xaml index e8d28b5d1ae4..af346d54e378 100644 --- a/src/Templates/src/templates/maui-mobile/MainPage.xaml +++ b/src/Templates/src/templates/maui-mobile/MainPage.xaml @@ -2,11 +2,11 @@ - + - - -